/* ================================================================
   COASTAL CRAVES — Design System
   Display: Fraunces (editorial serif, optical warmth)
   Body/UI: Inter
   Palette: sand parchment / deep tide navy / brass / oxide / oxblood
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* --- palette --- */
  --ink:        #1B1712;
  --navy:       #16233B;
  --navy-deep:  #0F1A2C;
  --sand:       #F3ECDC;
  --sand-deep:  #E9DEC4;
  --paper:      #FBF8F1;
  --brass:      #B8863B;
  --brass-lt:   #D9B876;
  --oxide:      #A8402A;   /* chicken */
  --tide:       #22465A;   /* fish */
  --oxblood:    #6E1F26;   /* mutton */
  --olive:      #5C6B3C;   /* veg */
  --line:       rgba(27,23,18,.14);
  --line-lt:    rgba(251,248,241,.22);

  --shadow-soft: 0 30px 60px -30px rgba(20,16,10,.35);
  --shadow-card: 0 18px 40px -22px rgba(20,16,10,.28);

  --serif: 'Fraunces', 'Iowan Old Style', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --edge: clamp(20px, 5vw, 72px);

  --ease: cubic-bezier(.22,.61,.19,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--sand);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

::selection{ background:var(--brass); color:var(--paper); }

:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.container{ max-width:var(--container); margin-inline:auto; padding-inline:var(--edge); }

/* --- grain / paper texture overlay --- */
.grain{
  pointer-events:none;
  position:fixed; inset:0; z-index:999;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- type helpers --- */
.eyebrow{
  font-family:var(--sans); font-weight:600; font-size:11.5px;
  letter-spacing:.22em; text-transform:uppercase; color:var(--brass);
  display:flex; align-items:center; gap:10px;
}
.eyebrow::before{ content:''; width:22px; height:1px; background:var(--brass); }
.eyebrow.on-dark{ color:var(--brass-lt); }

.display-xl{ font-family:var(--serif); font-weight:400; letter-spacing:-.01em; line-height:.98; }
.display-xl em{ font-style:italic; font-weight:400; color:var(--oxide); }
.serif{ font-family:var(--serif); }

/* ================= ANNOUNCEMENT + NAV ================= */
.announce{
  background:var(--navy-deep); color:var(--sand);
  font-size:12px; letter-spacing:.08em; text-align:center;
  padding:9px var(--edge); font-weight:500;
}
.announce span{ opacity:.55; margin:0 .6em; }

header.site-nav{
  position:sticky; top:0; z-index:100;
  background:rgba(243,236,220,.86);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--line);
  transition:background .4s var(--ease), box-shadow .4s var(--ease);
}
header.site-nav.scrolled{ box-shadow:0 8px 30px -20px rgba(20,16,10,.4); }

.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px var(--edge);
}
.wordmark{ display:flex; flex-direction:column; line-height:1; gap:5px; }
.wordmark .name{
  font-family:var(--serif); font-size:23px; letter-spacing:.03em; font-weight:500;
}
.wordmark .tag{
  font-size:9.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--oxide); font-weight:600;
}

.nav-links{ display:flex; gap:38px; }
.nav-links a{
  font-size:13px; letter-spacing:.06em; text-transform:uppercase; font-weight:600;
  position:relative; padding-bottom:4px; color:var(--ink);
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1.5px;
  background:var(--oxide); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-links a.active{ color:var(--oxide); }

.nav-actions{ display:flex; align-items:center; gap:22px; }
.nav-icon-btn{
  width:20px; height:20px; display:flex; align-items:center; justify-content:center;
  position:relative;
}
.cart-count{
  position:absolute; top:-9px; right:-11px; background:var(--oxide); color:var(--paper);
  font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.nav-burger{ display:none; background:none; border:none; font-size:20px; color:var(--navy); }

@media (max-width:980px){
  .nav-burger{ display:block; }
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,80vw);
    background:var(--paper); flex-direction:column; align-items:flex-start; gap:0;
    padding:100px 32px 40px; transform:translateX(100%); transition:transform .45s var(--ease);
    box-shadow:-20px 0 50px -20px rgba(0,0,0,.3); z-index:120;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; padding:16px 0; border-bottom:1px solid var(--line); font-size:14px; }
  .nav-icon-btn{ width:26px; height:26px; }
  .nav-actions{ gap:16px; }
}

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex; align-items:center; gap:10px; justify-content:center;
  padding:15px 30px; font-size:12.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  border-radius:2px; border:1px solid transparent; transition:all .35s var(--ease); white-space:nowrap;
}
.btn svg{ width:14px; height:14px; transition:transform .35s var(--ease); }
.btn-primary{ background:var(--navy); color:var(--sand); }
.btn-primary:hover{ background:var(--oxide); }
.btn-primary:hover svg{ transform:translateX(4px); }
.btn-outline{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline:hover{ background:var(--navy); color:var(--sand); }
.btn-outline.on-dark{ color:var(--sand); border-color:var(--line-lt); }
.btn-outline.on-dark:hover{ background:var(--sand); color:var(--navy); }
.btn-ghost{ padding:0; color:var(--navy); border-bottom:1px solid var(--navy); border-radius:0; }
.btn-ghost:hover{ color:var(--oxide); border-color:var(--oxide); }
.btn-block{ width:100%; }

/* ================= HERO ================= */
.hero{
  position:relative; background:var(--sand);
  display:grid; grid-template-columns:1fr 1fr; align-items:center; min-height:88vh;
  overflow:hidden;
}
.hero-copy{ padding:0 var(--edge); padding-right:40px; z-index:2; }
.hero-copy .eyebrow{ margin-bottom:26px; }
.hero-copy h1{ font-size:clamp(46px,5.6vw,84px); }
.hero-copy .sub{
  margin-top:26px; max-width:420px; font-size:16.5px; line-height:1.7; color:rgba(27,23,18,.7);
}
.hero-cta{ display:flex; gap:16px; margin-top:38px; flex-wrap:wrap; }

.hero-badges{ display:flex; gap:34px; margin-top:64px; flex-wrap:wrap; }
.hero-badge{ display:flex; align-items:center; gap:10px; }
.hero-badge svg{ width:22px; height:22px; stroke:var(--oxide); flex-shrink:0; }
.hero-badge span{ font-size:11px; letter-spacing:.04em; line-height:1.35; color:var(--navy); font-weight:600; max-width:90px; }

.hero-visual{
  position:relative; height:88vh; display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(60% 60% at 55% 40%, rgba(184,134,59,.28), transparent 70%),
    var(--navy);
}
.hero-visual::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 55%, rgba(15,26,44,.9) 100%);
}
.coast-silhouette{
  position:absolute; bottom:0; left:0; right:0; height:34%;
  fill:var(--navy-deep); opacity:.9;
}
.jar-stage{ position:relative; width:min(360px, 60%); z-index:2; }
.jar-illustration{ width:100%; filter:drop-shadow(0 40px 60px rgba(0,0,0,.5)); }
.jar-illustration .fill{ animation:rise 1.6s var(--ease) .3s both; }
.jar-illustration .draw{ stroke-dasharray:900; stroke-dashoffset:900; animation:draw 1.8s var(--ease) forwards; }
@keyframes draw{ to{ stroke-dashoffset:0; } }
@keyframes rise{ from{ transform:translateY(14px); opacity:0; } to{ transform:translateY(0); opacity:1; } }

.annotation{
  position:absolute; display:flex; align-items:center; gap:12px; opacity:0;
  animation:fadeIn .8s var(--ease) forwards;
}
.annotation.a1{ top:14%; left:-4%; animation-delay:1.1s; }
.annotation.a2{ top:46%; right:-10%; animation-delay:1.4s; flex-direction:row-reverse; }
.annotation.a3{ bottom:16%; left:0%; animation-delay:1.7s; }
.annotation .dot{ width:6px; height:6px; border-radius:50%; background:var(--brass-lt); flex-shrink:0; }
.annotation .line{ width:34px; height:1px; background:var(--line-lt); }
.annotation .label{
  font-size:11px; color:var(--sand); background:rgba(15,26,44,.55); backdrop-filter:blur(6px);
  padding:7px 12px; border:1px solid var(--line-lt); white-space:nowrap; letter-spacing:.02em;
}
.annotation .label b{ color:var(--brass-lt); font-weight:600; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(6px); } to{ opacity:1; transform:translateY(0); } }

@media (max-width:980px){
  .hero{ grid-template-columns:1fr; min-height:auto; }
  .hero-copy{ padding:64px var(--edge) 44px; }
  .hero-visual{ height:70vh; order:-1; }
  .annotation{ display:none; }
}

/* ================= SECTION SCAFFOLDING ================= */
section{ padding:120px 0; position:relative; }
section.tight{ padding:80px 0; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:64px; flex-wrap:wrap; }
.section-head h2{ font-size:clamp(32px,3.4vw,50px); max-width:600px; }
.section-head p{ max-width:380px; color:rgba(27,23,18,.62); font-size:15px; line-height:1.7; }

.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ================= FLAVOUR CARDS ================= */
.flavour-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); border:1px solid var(--line); }
.flavour-card{
  --fc: var(--oxide);
  background:var(--sand); padding:46px 40px 40px; position:relative; overflow:hidden;
  min-height:440px; display:flex; flex-direction:column;
  transition:background .5s var(--ease);
}
.flavour-card::before{
  content:''; position:absolute; inset:0; background:var(--fc); opacity:0;
  transition:opacity .5s var(--ease);
}
.flavour-card:hover::before{ opacity:1; }
.flavour-card.chicken{ --fc:var(--oxide); }
.flavour-card.fish{ --fc:var(--tide); }
.flavour-card.mutton{ --fc:var(--oxblood); }
.flavour-card > *{ position:relative; z-index:1; }

.fc-top{ display:flex; align-items:flex-start; justify-content:space-between; }
.fc-tag{ font-size:10.5px; letter-spacing:.18em; text-transform:uppercase; font-weight:700; color:var(--fc); transition:color .5s var(--ease); }
.flavour-card:hover .fc-tag{ color:var(--sand); }
.fc-icon{ width:30px; height:30px; stroke:var(--fc); transition:stroke .5s var(--ease); }
.flavour-card:hover .fc-icon{ stroke:var(--sand); }

.fc-jar{ margin:26px 0; width:96px; opacity:.92; }
.fc-jar path,.fc-jar circle,.fc-jar rect{ stroke:var(--ink); transition:stroke .5s var(--ease); }
.flavour-card:hover .fc-jar path,.flavour-card:hover .fc-jar circle,.flavour-card:hover .fc-jar rect{ stroke:var(--sand); }

.fc-name{ font-family:var(--serif); font-size:27px; margin-bottom:10px; transition:color .5s var(--ease); }
.flavour-card:hover .fc-name{ color:var(--sand); }
.fc-desc{ font-size:13.5px; color:rgba(27,23,18,.6); line-height:1.6; max-width:220px; transition:color .5s var(--ease); }
.flavour-card:hover .fc-desc{ color:rgba(251,248,241,.75); }

.fc-bottom{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; padding-top:30px; }
.fc-price{ font-family:var(--serif); font-size:19px; transition:color .5s var(--ease); }
.flavour-card:hover .fc-price{ color:var(--sand); }
.fc-price small{ font-size:11px; opacity:.55; font-family:var(--sans); }
.fc-arrow{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--ink); display:flex; align-items:center; justify-content:center;
  transition:all .5s var(--ease);
}
.fc-arrow svg{ width:14px; height:14px; transition:transform .5s var(--ease); }
.flavour-card:hover .fc-arrow{ border-color:var(--sand); background:var(--sand); }
.flavour-card:hover .fc-arrow svg{ stroke:var(--fc); transform:rotate(45deg); }

@media (max-width:900px){ .flavour-grid{ grid-template-columns:1fr; } }

/* ================= PROCESS / NUMBERED STEPS ================= */
.process{ background:var(--navy); color:var(--sand); }
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-lt); border-top:1px solid var(--line-lt); border-bottom:1px solid var(--line-lt); margin-top:64px; }
.process-step{ background:var(--navy); padding:44px 32px; }
.process-num{ font-family:var(--serif); font-style:italic; font-size:15px; color:var(--brass-lt); }
.process-step h4{ font-family:var(--serif); font-size:21px; margin:22px 0 12px; font-weight:500; }
.process-step p{ font-size:13.5px; color:rgba(243,236,220,.6); line-height:1.65; }
@media (max-width:900px){ .process-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .process-grid{ grid-template-columns:1fr; } }

/* ================= EDITORIAL / STORY BLOCK ================= */
.editorial{ display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:center; }
.editorial-figure{ aspect-ratio:4/5; background:var(--sand-deep); position:relative; overflow:hidden; border:1px solid var(--line); }
.editorial-figure svg{ width:100%; height:100%; }
.editorial-figure img{ width:100%; height:100%; object-fit:cover; display:block; }
.story-photo-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:34px; }
.story-photo-row img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:2px; }
@media (max-width:700px){ .story-photo-row{ grid-template-columns:1fr; } }
.editorial p.lede{ font-family:var(--serif); font-size:26px; line-height:1.5; font-weight:400; color:var(--navy); }
.editorial p.lede em{ color:var(--oxide); font-style:italic; }
.editorial .body-copy{ margin-top:26px; color:rgba(27,23,18,.68); font-size:15px; line-height:1.8; max-width:480px; }
@media (max-width:900px){ .editorial{ grid-template-columns:1fr; gap:40px; } }

/* ================= TRUST STRIP ================= */
.trust-strip{ background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:0; }
.trust-grid{ display:grid; grid-template-columns:repeat(6,1fr); }
.trust-item{ padding:34px 22px; border-right:1px solid var(--line); text-align:center; }
.trust-item:last-child{ border-right:none; }
.trust-item svg{ width:24px; height:24px; margin:0 auto 12px; stroke:var(--oxide); }
.trust-item h5{ font-size:12px; font-weight:700; letter-spacing:.02em; }
.trust-item p{ font-size:11px; color:rgba(27,23,18,.55); margin-top:5px; line-height:1.4; }
@media (max-width:900px){ .trust-grid{ grid-template-columns:repeat(3,1fr); } .trust-item:nth-child(3){ border-right:none; } }
@media (max-width:560px){ .trust-grid{ grid-template-columns:repeat(2,1fr); } .trust-item:nth-child(2n){ border-right:none; } }

/* ================= GIFT / TRIO BANNER ================= */
.banner-split{ display:grid; grid-template-columns:1.1fr .9fr; gap:2px; background:var(--line); }
.banner-panel{ padding:64px 56px; min-height:380px; display:flex; flex-direction:column; justify-content:flex-end; position:relative; overflow:hidden; }
.banner-panel.dark{ background:var(--navy); color:var(--sand); }
.banner-panel.light{ background:var(--sand-deep); color:var(--navy); }
.banner-panel .eyebrow{ position:relative; z-index:2; }
.banner-panel h3{ font-family:var(--serif); font-size:clamp(28px,3vw,40px); margin:16px 0 14px; position:relative; z-index:2; max-width:360px; }
.banner-panel p{ font-size:14px; opacity:.7; max-width:320px; margin-bottom:26px; position:relative; z-index:2; }
.banner-panel .price-row{ display:flex; align-items:baseline; gap:12px; margin-bottom:26px; position:relative; z-index:2; }
.banner-panel .price-row .now{ font-family:var(--serif); font-size:26px; }
.banner-panel .price-row .was{ text-decoration:line-through; opacity:.45; font-size:14px; }
.banner-panel .price-row .save{ font-size:11px; background:var(--brass); color:var(--navy-deep); padding:4px 9px; font-weight:700; letter-spacing:.04em; }
.banner-deco{ position:absolute; right:-40px; top:-40px; width:60%; opacity:.14; }
@media (max-width:900px){ .banner-split{ grid-template-columns:1fr; } .banner-panel{ padding:48px var(--edge); } }

/* ================= INSTAGRAM STRIP ================= */
.insta-strip{ background:var(--sand); }
.insta-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; flex-wrap:wrap; gap:16px; }
.insta-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:2px; }
.insta-tile{ aspect-ratio:1; position:relative; overflow:hidden; background:var(--sand-deep); }
.insta-tile svg{ width:100%; height:100%; }
.insta-tile::after{ content:''; position:absolute; inset:0; background:var(--navy); opacity:0; transition:opacity .4s var(--ease); }
.insta-tile:hover::after{ opacity:.18; }
@media (max-width:900px){ .insta-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .insta-grid{ grid-template-columns:repeat(2,1fr); } }

/* ================= FOOTER ================= */
footer{ background:var(--navy-deep); color:var(--sand); }
.footer-top{ padding:80px 0 60px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; border-bottom:1px solid var(--line-lt); }
.footer-brand .wordmark .name{ color:var(--sand); }
.footer-brand p{ margin-top:20px; font-size:13.5px; color:rgba(243,236,220,.55); max-width:280px; line-height:1.7; }
.footer-news{ display:flex; margin-top:24px; border-bottom:1px solid var(--line-lt); max-width:300px; }
.footer-news input{
  flex:1; background:transparent; border:none; color:var(--sand); padding:10px 0; font-size:13px; outline:none;
}
.footer-news input::placeholder{ color:rgba(243,236,220,.4); }
.footer-news button{ background:none; border:none; color:var(--brass-lt); font-size:12px; letter-spacing:.08em; font-weight:700; text-transform:uppercase; }
.footer-col h6{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--brass-lt); margin-bottom:22px; }
.footer-col ul li{ margin-bottom:13px; }
.footer-col ul li a{ font-size:13.5px; color:rgba(243,236,220,.72); transition:color .3s; }
.footer-col ul li a:hover{ color:var(--sand); }
.footer-bottom{ padding:26px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.footer-bottom p{ font-size:12px; color:rgba(243,236,220,.45); }
.footer-social{ display:flex; gap:16px; }
.footer-social a{ width:32px; height:32px; border:1px solid var(--line-lt); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:14px; height:14px; stroke:var(--sand); }
@media (max-width:900px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns:1fr; } }

/* ================= MISC PAGE HERO (non-home) ================= */
.page-hero{
  background:var(--navy); color:var(--sand); padding:150px 0 90px; position:relative; overflow:hidden;
}
.page-hero .eyebrow{ margin-bottom:22px; }
.page-hero h1{ font-size:clamp(38px,5vw,64px); max-width:760px; }
.page-hero .sub{ margin-top:22px; max-width:480px; font-size:15.5px; color:rgba(243,236,220,.65); line-height:1.75; }
.page-hero-deco{ position:absolute; right:-6%; top:-10%; width:36%; opacity:.5; }

/* ================= BREADCRUMB ================= */
.crumb{ font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:rgba(243,236,220,.5); display:flex; gap:8px; align-items:center; }
.crumb a:hover{ color:var(--sand); }
.crumb .sep{ opacity:.5; }

/* ================= SHOP GRID / FILTER ================= */
.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:50px; flex-wrap:wrap; gap:20px; }
.filter-pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  padding:10px 20px; border:1px solid var(--line); font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  background:var(--paper); transition:all .3s var(--ease);
}
.pill.active, .pill:hover{ background:var(--navy); color:var(--sand); border-color:var(--navy); }
.result-count{ font-size:13px; color:rgba(27,23,18,.5); }

.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:36px 30px; }
.product-card{ position:relative; }
.pc-media{
  --fc:var(--oxide); aspect-ratio:4/5; background:var(--sand-deep); position:relative; overflow:hidden; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center; border:1px solid var(--line);
}
.pc-media::before{ content:''; position:absolute; inset:0; background:linear-gradient(160deg, var(--fc) 0%, transparent 60%); opacity:.16; }
.pc-media .pc-jar{ width:46%; transition:transform .6s var(--ease); }
.product-card:hover .pc-jar{ transform:translateY(-8px) scale(1.03); }
.pc-media .pc-photo{ position:relative; z-index:1; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.product-card:hover .pc-photo{ transform:scale(1.05); }
.pc-badge{ position:absolute; top:16px; left:16px; background:var(--paper); font-size:10px; letter-spacing:.1em; text-transform:uppercase; font-weight:700; padding:6px 11px; color:var(--fc); }
.pc-quick{
  position:absolute; bottom:0; left:0; right:0; background:var(--navy); color:var(--sand); text-align:center;
  padding:13px; font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  transform:translateY(100%); transition:transform .4s var(--ease);
}
.product-card:hover .pc-quick{ transform:translateY(0); }
.pc-info{ display:flex; justify-content:space-between; align-items:flex-start; gap:14px; }
.pc-info h4{ font-family:var(--serif); font-size:19px; margin-bottom:6px; }
.pc-info .pc-tag{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--fc); font-weight:700; }
.pc-price{ font-family:var(--serif); font-size:17px; white-space:nowrap; }
@media (max-width:900px){ .shop-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .shop-grid{ grid-template-columns:1fr; } }

/* ================= PRODUCT DETAIL ================= */
.pd-layout{ display:grid; grid-template-columns:1fr 1fr; gap:90px; }
.pd-media{
  --fc: var(--oxide); background:var(--navy); aspect-ratio:1/1.05; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.pd-media::before{ content:''; position:absolute; inset:0; background:radial-gradient(60% 60% at 50% 40%, rgba(184,134,59,.25), transparent 70%); }
.pd-media .jar-illustration{ width:44%; position:relative; z-index:1; }
.pd-media .pd-photo{ position:relative; z-index:1; width:100%; height:100%; object-fit:cover; }
.pd-thumbs{ display:flex; gap:10px; margin-top:14px; }
.pd-thumb{ width:64px; height:64px; background:var(--sand-deep); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; padding:0; overflow:hidden; cursor:pointer; }
.pd-thumb img{ width:100%; height:100%; object-fit:cover; }
.pd-thumb.active{ border-color:var(--ink); }

.pd-copy .pc-tag{ font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--oxide); font-weight:700; }
.pd-copy h1{ font-family:var(--serif); font-size:clamp(34px,3.6vw,48px); margin:14px 0 16px; }
.pd-rating{ display:flex; align-items:center; gap:10px; margin-bottom:22px; }
.pd-rating .stars{ display:flex; gap:2px; }
.pd-rating svg{ width:14px; height:14px; fill:var(--brass); stroke:none; }
.pd-rating span{ font-size:12.5px; color:rgba(27,23,18,.55); }
.pd-price{ display:flex; align-items:baseline; gap:12px; margin-bottom:28px; }
.pd-price .now{ font-family:var(--serif); font-size:30px; }
.pd-price .was{ text-decoration:line-through; color:rgba(27,23,18,.4); font-size:15px; }
.pd-desc{ font-size:15px; line-height:1.8; color:rgba(27,23,18,.68); max-width:460px; margin-bottom:30px; }

.qty-row{ display:flex; align-items:center; gap:20px; margin-bottom:22px; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--ink); }
.qty-stepper button{ width:40px; height:44px; background:none; border:none; font-size:16px; }
.qty-stepper span{ width:36px; text-align:center; font-weight:600; }
.pd-actions{ display:flex; gap:14px; margin-bottom:34px; }
.pd-actions .btn{ flex:1; }

.pd-accordion{ border-top:1px solid var(--line); }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-head{ display:flex; align-items:center; justify-content:space-between; padding:20px 0; font-weight:600; font-size:13.5px; letter-spacing:.03em; text-transform:uppercase; cursor:pointer; }
.acc-head svg{ width:14px; height:14px; transition:transform .3s var(--ease); }
.acc-item.open .acc-head svg{ transform:rotate(45deg); }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.acc-item.open .acc-body{ max-height:220px; }
.acc-body p{ padding-bottom:20px; font-size:14px; color:rgba(27,23,18,.65); line-height:1.75; max-width:440px; }

.pd-trust{ display:flex; gap:26px; margin-top:30px; flex-wrap:wrap; }
.pd-trust div{ display:flex; align-items:center; gap:9px; font-size:11.5px; font-weight:600; color:var(--navy); }
.pd-trust svg{ width:17px; height:17px; stroke:var(--oxide); }

@media (max-width:900px){ .pd-layout{ grid-template-columns:1fr; gap:44px; } }

/* ================= REVIEWS ================= */
.review-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); border:1px solid var(--line); }
.review-card{ background:var(--paper); padding:38px; }
.review-card .stars{ display:flex; gap:2px; margin-bottom:18px; }
.review-card .stars svg{ width:13px; height:13px; fill:var(--brass); }
.review-card p{ font-size:14.5px; line-height:1.75; color:var(--ink); margin-bottom:22px; }
.review-who{ display:flex; justify-content:space-between; font-size:12px; }
.review-who b{ font-weight:700; }
.review-who span{ color:rgba(27,23,18,.5); }
@media (max-width:900px){ .review-grid{ grid-template-columns:1fr; } }

/* ================= RELATED ================= */
.related-scroll{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media (max-width:900px){ .related-scroll{ grid-template-columns:1fr 1fr; } }

/* ================= CONTACT ================= */
.contact-layout{ display:grid; grid-template-columns:1fr 1fr; gap:90px; }
.contact-info h2{ font-family:var(--serif); font-size:32px; margin-bottom:20px; }
.contact-info p{ color:rgba(27,23,18,.65); line-height:1.8; font-size:15px; max-width:420px; margin-bottom:40px; }
.contact-block{ display:flex; gap:16px; padding:22px 0; border-top:1px solid var(--line); }
.contact-block:last-of-type{ border-bottom:1px solid var(--line); }
.contact-block svg{ width:20px; height:20px; stroke:var(--oxide); flex-shrink:0; margin-top:2px; }
.contact-block h5{ font-size:13px; font-weight:700; margin-bottom:5px; letter-spacing:.02em; }
.contact-block p{ font-size:13.5px; color:rgba(27,23,18,.6); margin:0; }

.form-field{ margin-bottom:22px; }
.form-field label{ display:block; font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:9px; color:var(--navy); }
.form-field input, .form-field textarea, .form-field select{
  width:100%; border:none; border-bottom:1px solid var(--line); background:transparent; padding:12px 2px;
  font-family:var(--sans); font-size:15px; color:var(--ink); outline:none; transition:border-color .3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ border-color:var(--oxide); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.form-field textarea{ resize:vertical; min-height:110px; }
@media (max-width:900px){ .contact-layout{ grid-template-columns:1fr; gap:50px; } .form-row{ grid-template-columns:1fr; } }

.map-strip{ height:320px; background:var(--sand-deep); border:1px solid var(--line); position:relative; overflow:hidden; margin-top:70px; }
.map-strip svg{ width:100%; height:100%; }
.map-strip img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ================= FAQ ================= */
.faq-list{ max-width:760px; margin-inline:auto; }

/* ================= OUR STORY EXTRAS ================= */
.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:2px; background:var(--line); border:1px solid var(--line); margin-top:70px; }
.stat-item{ background:var(--paper); padding:40px 30px; text-align:center; }
.stat-item .num{ font-family:var(--serif); font-size:44px; color:var(--oxide); }
.stat-item .lbl{ font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; margin-top:8px; color:rgba(27,23,18,.6); font-weight:600; }
@media (max-width:900px){ .stat-row{ grid-template-columns:1fr 1fr; } }

.timeline{ max-width:760px; }
.tl-item{ display:grid; grid-template-columns:110px 1fr; gap:30px; padding:36px 0; border-top:1px solid var(--line); }
.tl-item:last-child{ border-bottom:1px solid var(--line); }
.tl-year{ font-family:var(--serif); font-style:italic; font-size:22px; color:var(--oxide); }
.tl-item h4{ font-family:var(--serif); font-size:20px; margin-bottom:8px; font-weight:500; }
.tl-item p{ font-size:14px; color:rgba(27,23,18,.65); line-height:1.7; max-width:480px; }

.values-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:40px; margin-top:60px; }
.value-item svg{ width:30px; height:30px; stroke:var(--oxide); margin-bottom:20px; }
.value-item h4{ font-family:var(--serif); font-size:19px; margin-bottom:10px; font-weight:500; }
.value-item p{ font-size:13.5px; color:rgba(27,23,18,.6); line-height:1.7; }
@media (max-width:900px){ .values-grid{ grid-template-columns:1fr 1fr; } }

/* utility */
.text-center{ text-align:center; }
.mx-auto{ margin-inline:auto; }

/* ================================================================
   PICKLE CARD — shared product card (shop / product related grids)
   ================================================================ */
.pcard-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.pcard{
  background:#fff; border:1px solid var(--line); border-radius:4px; overflow:hidden;
  display:flex; flex-direction:column; position:relative;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pcard:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card); }
.pcard-media{ position:relative; aspect-ratio:4/3.5; overflow:hidden; background:var(--sand-deep); display:block; }
.pcard-media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.pcard:hover .pcard-media img{ transform:scale(1.06); }
.pcard-badge{ position:absolute; top:14px; left:14px; background:var(--navy); color:var(--sand); font-size:9.5px; letter-spacing:.16em; text-transform:uppercase; font-weight:700; padding:6px 11px; z-index:2; border-radius:2px; }
.pcard-wish{ position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:50%; background:#fff; border:0; display:grid; place-items:center; cursor:pointer; box-shadow:0 6px 14px rgba(20,16,10,.18); z-index:2; padding:0; }
.pcard-wish svg{ width:16px; height:16px; stroke:var(--navy); fill:none; stroke-width:1.6; transition:.2s; }
.pcard-wish:hover svg{ stroke:var(--oxide); fill:var(--oxide); }
.pcard-wish.active svg{ stroke:var(--oxide); fill:var(--oxide); }
.pcard-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:12px; text-align:center; flex:1; }
.pcard-name{ font-family:var(--serif); font-size:21px; font-weight:600; color:var(--oxide); margin:0; }
.pcard-desc{ margin:0; font-size:12.5px; line-height:1.65; color:rgba(27,23,18,.6); min-height:48px; }
.pcard-rating{ display:flex; align-items:center; justify-content:center; gap:7px; font-size:13px; }
.pcard-rating .stars{ color:var(--brass); letter-spacing:1px; }
.pcard-rating .count{ color:rgba(27,23,18,.48); font-size:11.5px; }
.pcard-price{ font-size:13.5px; color:rgba(27,23,18,.6); }
.pcard-price b{ font-family:var(--serif); font-size:21px; color:var(--navy); font-weight:600; margin-left:5px; }
.pcard-sizes{ display:flex; gap:8px; justify-content:center; }
.pcard-sizes button{ flex:1; max-width:66px; padding:8px 0; font-size:11.5px; font-weight:600; border:1px solid var(--line); background:#fff; color:var(--navy); cursor:pointer; transition:.2s; border-radius:2px; }
.pcard-sizes button.active{ background:var(--oxide); color:#fff; border-color:var(--oxide); }
.pcard-sizes button:hover{ border-color:var(--oxide); }
.pcard-actions{ display:flex; flex-direction:column; gap:10px; margin-top:auto; padding-top:6px; }
.pcard-actions .pcard-btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:12px; font-size:11.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  border:1.4px solid transparent; cursor:pointer; transition:.2s; border-radius:2px; line-height:1;
}
.pcard-actions svg{ width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:1.8; flex:none; }
.pcard-cart.pcard-btn{ background:var(--navy); color:#fff; border-color:var(--navy); }
.pcard-cart.pcard-btn:hover{ background:var(--navy-deep); }
.pcard-buy.pcard-btn{ background:#fff; border-color:var(--brass); color:var(--navy); }
.pcard-buy.pcard-btn:hover{ background:var(--brass); color:#fff; border-color:var(--brass); }
.pcard-wa.pcard-btn{ background:#fff; border-color:#2E8B57; color:#1F6B3D; }
.pcard-wa.pcard-btn:hover{ background:#2E8B57; color:#fff; }
@media (max-width:900px){ .pcard-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .pcard-grid{ grid-template-columns:1fr; } }
