/* ===== Monty & Milo — prototype ===== */
@font-face{
  font-family:'Open Sauce Sans';font-style:normal;font-weight:400;font-display:swap;
  src:url("https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans/files/open-sauce-sans-latin-400-normal.woff2") format("woff2");
}
@font-face{
  font-family:'Open Sauce Sans';font-style:normal;font-weight:600;font-display:swap;
  src:url("https://cdn.jsdelivr.net/npm/@fontsource/open-sauce-sans/files/open-sauce-sans-latin-600-normal.woff2") format("woff2");
}
:root{
  --cream:#FCFCFA;       /* site background — barely-warm near-white */
  --cream-2:#FFFFFF;
  --ink:#3E423E;              /* warm charcoal (palette) */
  --line:rgba(62,66,62,.20);  /* hairline / neutral outline */
  --muted:rgba(62,66,62,.6);  /* muted text */
  --peach:#EE9F73;            /* cute peach — category line */
  --peach-bg:#F4BFB0;         /* soft blush — "all the things" block (palette) */
  --butter:#FBEEC2;           /* pastel yellow — instagram block */
  --merch-bg:#D9DDD5;         /* soft sage-grey — products / merch block (palette) */
  --terracotta:#B25406;       /* rust — primary accent (palette) */
  --sage:#807B50;             /* olive (palette) */
  --mustard:#CA8400;          /* ochre (palette) */
  --blue:#56A5C2;             /* blue (palette) */
  --plum:#A76321;             /* caramel (palette) */
  --r:999px;
  --max:1280px;
}

*{box-sizing:border-box;margin:0;padding:0}

/* whale cursor removed for now — kept assets/whale_swim.webp in case it returns */
.cursor-whale{display:none}
html{
  /* FAST scroll — no smooth scroll-jacking. Native speed. */
  scroll-behavior:auto;
}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Alata',system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;width:100%;height:100%;object-fit:cover}
a{color:inherit;text-decoration:none}
em{font-style:italic}

/* tiny, fast entrance — no long scroll reveals */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .45s ease,transform .45s ease}
.reveal.in{opacity:1;transform:none}

/* ===================== NAV ===================== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;
  padding:8px clamp(18px,4vw,48px);
  height:84px;
  pointer-events:none;
  transition:background .3s ease, box-shadow .3s ease;
}
.nav--solid{background:rgba(252,252,250,.95);backdrop-filter:blur(8px);box-shadow:0 1px 0 rgba(30,27,23,.08)}

/* wordmark — hidden at first; appears in the bar the moment the BIG brand
   scrolls past. White over the photo, ink once you reach the content. */
.nav__logo{
  font-family:'Source Serif 4',serif;font-weight:500;line-height:1;letter-spacing:-.01em;
  font-size:clamp(22px,3vw,34px);color:#fff;
  text-shadow:0 1px 14px rgba(0,0,0,.35);
  opacity:0;transform:translateY(-8px);pointer-events:none;
  transition:opacity .3s ease,transform .3s ease,color .3s ease,text-shadow .3s ease;
}
.nav--brand .nav__logo{opacity:1;transform:none;pointer-events:auto}
/* official logo lockup — soft charcoal on the bar (blends with the cream) */
.brandmark{
  display:block;height:clamp(52px,5.8vw,66px);aspect-ratio:694/237;
  background:url("assets/logo-ink.png") no-repeat center/contain;
}
.brandmark--foot{height:clamp(70px,9vw,108px);aspect-ratio:1207/630;background-image:url("assets/footer-brand-white.png")}

/* bag — hidden on first load, appears once the user scrolls */
.nav__bag{
  font-family:'Source Serif 4',serif;font-weight:500;font-size:clamp(14px,1.6vw,19px);text-transform:lowercase;
  color:var(--ink);
  opacity:0;transform:translateY(-8px);pointer-events:none;
  transition:opacity .3s ease,transform .3s ease,color .3s ease;
}
.nav--scrolled .nav__bag{opacity:1;transform:none;pointer-events:auto}
.nav__bag:hover{color:var(--terracotta)}

/* right-side nav group: Shop All + Bag */
.nav__right{display:flex;align-items:center;gap:clamp(16px,2.4vw,32px)}
.nav__shopall{
  font-family:'Source Serif 4',serif;font-weight:500;font-size:clamp(14px,1.6vw,19px);text-transform:lowercase;
  color:var(--ink);
  opacity:0;transform:translateY(-8px);pointer-events:none;
  transition:opacity .3s ease,transform .3s ease,color .3s ease;
}
.nav--scrolled .nav__shopall{opacity:1;transform:none;pointer-events:auto}
.nav__shopall:hover{color:var(--terracotta)}

/* ===================== HERO (blank bg: menu on top, video below) ===================== */
.hero{
  position:relative;background:var(--cream);
  height:100vh;height:100svh;
  display:flex;flex-direction:column;overflow:hidden;
}

/* big lowercase menu, top-left, 2 columns — ~75% of the old size */
.hero__menu{
  display:grid;grid-template-columns:repeat(2,max-content);
  column-gap:clamp(46px,6vw,97px);
  row-gap:clamp(0px,.3vw,4px);
  align-items:start;
  padding:clamp(24px,3.5vh,48px) clamp(12px,2.4vw,30px) clamp(24px,3vw,48px);
}
.hmenu{
  font-family:'Source Serif 4',serif;font-weight:400;text-transform:lowercase;
  font-size:clamp(24px,4.8vw,68px);line-height:1.0;letter-spacing:-.03em;
  color:#e9a88f;width:max-content;
  transition:color .18s ease,opacity .3s ease;
}
.hmenu:hover{color:#161616}
/* brand is black; menu items are blush and go black on hover */
.hmenu--brand{color:#161616}
.hmenu--brand:hover{color:#161616}
/* big brand fades out as it's handed off to the nav bar */
.hmenu--brand.is-gone{opacity:0;pointer-events:none}

/* shop video under the menu, with clean straight edges */
.hero__photo{position:relative;flex:1 1 0;min-height:0}
.hero__media{
  position:relative;width:100%;height:100%;overflow:hidden;
  background:#b9b1a5 url("assets/hero/monty-grain-poster.jpg?v=3") center/cover no-repeat;
}
.hero__video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;
  display:block;
}
/* soft bottom scrim so the white tagline stays legible */
.hero__photo::after{
  content:"";position:absolute;left:0;right:0;bottom:0;height:52%;z-index:2;pointer-events:none;
  background:linear-gradient(to top, rgba(20,16,12,.42), rgba(20,16,12,0));
}
/* thick tagline on the photo, with a rotating word */
.hero__tagline{
  position:absolute;z-index:5;margin:0;
  left:clamp(20px,5vw,64px);bottom:clamp(96px,15vh,180px);
  color:#fff;font-family:'Source Serif 4',serif;font-weight:600;text-transform:lowercase;
  font-size:clamp(34px,4.8vw,68px);line-height:1.08;letter-spacing:-.03em;
  text-shadow:0 3px 26px rgba(0,0,0,.5);
}
.rotator{display:inline-block;transition:opacity .34s ease,transform .34s ease}
.rotator.is-swapping{opacity:0;transform:translateY(14px)}
.rotator u{text-decoration:underline;text-underline-offset:.1em;text-decoration-thickness:.05em}
.rot-ears{display:inline-block;width:3.4em;height:.92em;vertical-align:-.12em;
  background:url("assets/cat-ears-white.png") no-repeat center/contain}
/* shop info, top-right of the menu section, lowercase, same font as the menu */
.hero__info{
  position:absolute;z-index:6;
  top:clamp(26px,3.8vh,52px);left:min(65%,calc(100% - 400px));right:auto;
  text-align:left;color:var(--ink);text-transform:lowercase;
  font-family:'Open Sauce Sans','Alata',sans-serif;
  font-size:clamp(16px,1.5vw,18px);line-height:1.6;max-width:380px;
}
.hero__info p{margin-bottom:12px}
.hero__info p:last-child{margin-bottom:0}
.hero__info b{font-weight:600}

@media (prefers-reduced-motion:reduce){
  .hero__video{display:block}
}

/* ===================== BIG CATEGORY CLICKS ===================== */
.bigcats{
  display:block;text-align:center;
  padding:clamp(18px,3vw,40px) 20px;
}
.bigcats__row{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;
  gap:clamp(14px,3vw,46px);
  transition:opacity .22s ease;
}
.bigcats__row.is-rolling{opacity:0}
.bigcat{
  font-family:'Source Serif 4',serif;font-weight:400;color:var(--ink);text-transform:lowercase;
  font-size:clamp(30px,6.2vw,82px);line-height:.95;letter-spacing:-.02em;
  transition:color .18s ease;
}
.bigcat:hover{color:var(--terracotta)}
.bigcat__dot{color:#e9a88f;font-size:clamp(12px,1.7vw,22px);line-height:1;display:flex;align-items:center}

/* ===================== PRODUCTS (single-row carousel) ===================== */
.products{padding:30px clamp(18px,3vw,40px) 64px;scroll-margin-top:84px}
.grid-wrap{position:relative}

/* 4 cards visible; the rest scroll horizontally to the right */
.grid{
  --gap:clamp(16px,2vw,34px);
  display:grid;grid-auto-flow:column;
  grid-auto-columns:calc((100% - 3 * var(--gap)) / 4);
  gap:var(--gap);
  overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x proximity;scroll-behavior:smooth;
  padding-bottom:10px;
  transition:opacity .22s ease;
  scrollbar-width:thin;scrollbar-color:var(--line) transparent;
}
.grid::-webkit-scrollbar{height:6px}
.grid::-webkit-scrollbar-thumb{background:var(--line);border-radius:99px}
.grid.is-switching{opacity:0}

.card{display:flex;flex-direction:column;gap:11px;scroll-snap-align:start}
.card__img{
  position:relative;display:block;width:100%;aspect-ratio:1/1;overflow:hidden;
  border-radius:8px;background:#edeae3;
}
.card__img img{transition:transform .5s ease}
.card:hover .card__img img{transform:scale(1.03)}
/* sale / promo badge, top-left in the image */
.card__badge{
  position:absolute;top:12px;left:12px;z-index:2;background:#fff;color:var(--terracotta);
  font-size:12px;font-weight:600;padding:5px 11px;border-radius:6px;box-shadow:0 1px 6px rgba(0,0,0,.06);
}
.card__name{font-family:'Source Serif 4',serif;font-weight:500;font-size:clamp(17px,1.4vw,21px);
  line-height:1.2;color:var(--ink);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card__price{font-size:15px;color:var(--ink)}
.card__price s{color:var(--muted);margin-right:6px}

/* small outline descriptor tags (Vegan / Non-GMO style) */
.card__tags{display:flex;flex-wrap:wrap;gap:7px;margin-top:2px}
.ptag{
  border:1px solid var(--terracotta);color:var(--terracotta);background:transparent;
  border-radius:var(--r);padding:5px 12px;font-size:12px;font-weight:500;line-height:1;
}

/* scroll-right arrow */
.grid-arrow{
  position:absolute;right:-6px;top:34%;z-index:5;
  width:48px;height:48px;border-radius:50%;border:none;cursor:pointer;
  background:#fff;color:var(--terracotta);font-size:22px;line-height:1;
  box-shadow:0 4px 16px rgba(30,27,23,.14);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .2s ease,transform .15s ease;
}
.grid-arrow:hover{transform:scale(1.08)}
.grid-arrow[hidden]{display:none}

/* ===================== MEET MONTY & MILO (blush block) ===================== */
.cats{
  --meet-edge:max(clamp(18px,5vw,72px),calc((100vw - var(--max))/2));
  --meet-type-size:clamp(25px,4.7vw,64px);
  padding:clamp(50px,7vw,104px) clamp(18px,5vw,72px);
  background:var(--peach-bg);scroll-margin-top:84px;
}
.meet__eyebrow{
  max-width:var(--max);margin:0 auto clamp(12px,1.5vw,22px);text-align:left;
  font-family:'Source Serif 4',serif;font-weight:600;text-transform:uppercase;
  letter-spacing:-.01em;font-size:var(--meet-type-size);color:var(--ink);
}
.meet{position:relative;max-width:var(--max);margin:0 auto;min-height:clamp(400px,44vw,620px)}
.meet__words{
  display:flex;flex-direction:column;align-items:flex-start;
}
.meet-word{
  appearance:none;-webkit-appearance:none;background:none;border:0;padding:0;margin:0;
  display:block;width:100%;text-align:left;position:relative;
  font-family:'Source Serif 4',serif;font-weight:600;text-transform:uppercase;
  font-size:var(--meet-type-size);line-height:1.08;letter-spacing:-.01em;color:var(--ink);
  transition:color .15s ease;
}
.meet-word.is-active{font-family:'Source Serif 4',serif;font-style:normal;text-transform:lowercase;letter-spacing:-.01em}
.meet-word.is-active::before,.meet-word.is-active::after{
  content:"";position:absolute;left:calc(-1 * var(--meet-edge));transform:none;
  width:100vw;height:2px;background:var(--ink);z-index:0;pointer-events:none;
}
.meet-word.is-active::before{top:-1px}
.meet-word.is-active::after{bottom:-1px}

.meet__frame{
  position:absolute;right:clamp(20px,4vw,72px);top:45%;
  transform:translateY(-50%) scale(1.2); /* ~20% bigger without growing the section (layout box unchanged) */
  z-index:2;
  width:clamp(270px,31vw,430px);aspect-ratio:1024/1535;pointer-events:none;
  filter:drop-shadow(0 14px 30px rgba(30,27,23,.22));
}
/* the photo, clipped to the gold frame's inner opening */
/* hand-drawn pastel gingham backdrop — one color per mood (set by script.js) */
.meet__opening{position:absolute;left:15.5%;top:16%;width:69%;height:67.5%;
  overflow:hidden;border-radius:3px;z-index:1;
  background:#BFDCEA url('assets/grid-fishy.svg') center / cover;
}
.meet__opening[data-mood="cuddly"]{background:#F9E7BC url('assets/grid-cuddly.svg') center / cover}
.meet__opening[data-mood="lazy"]  {background:#D8E2CF url('assets/grid-lazy.svg') center / cover}
.meet__opening[data-mood="comfy"] {background:#E0D6EC url('assets/grid-comfy.svg') center / cover}
.meet__opening[data-mood="floppy"]{background:#CBE6DE url('assets/grid-floppy.svg') center / cover}
.meet__opening[data-mood="sleepy"]{background:#F9DBC9 url('assets/grid-sleepy.svg') center / cover}
/* cat photos are transparent cutouts, cropped tight — let them fill the
   opening, settled toward the frame's bottom edge */
.meet__photo{display:block;width:100%;height:100%;object-fit:contain;object-position:center bottom;padding:4% 3% 3%}
/* the wide shots float mid-frame instead of sitting on the bottom edge */
.meet__opening[data-mood="fishy"] .meet__photo,
.meet__opening[data-mood="sleepy"] .meet__photo{object-position:center center}
.meet__frameimg{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;z-index:2}

.cats__title{font-family:'Source Serif 4',serif;font-weight:400;font-size:clamp(40px,8vw,110px);line-height:.95;letter-spacing:-.02em;margin-bottom:clamp(34px,5vw,60px);color:var(--ink)}
.cats__title{font-family:'Source Serif 4',serif;font-weight:400;font-size:clamp(40px,8vw,110px);line-height:.95;letter-spacing:-.02em;margin-bottom:clamp(34px,5vw,60px);color:var(--ink)}
.cats__title em{color:var(--cream)}
.ovals{display:flex;flex-wrap:wrap;gap:14px 16px;justify-content:center;max-width:980px;margin:0 auto}
.oval{
  border:1.5px solid rgba(30,27,23,.4);color:var(--ink);
  border-radius:var(--r);padding:14px 30px;
  font-family:'Source Serif 4',serif;font-size:clamp(18px,2vw,28px);font-weight:500;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.oval:hover{background:var(--ink);color:#fff;border-color:var(--ink);transform:translateY(-3px)}

/* ===================== INSTAGRAM (pastel yellow block) ===================== */
.insta{background:var(--butter);padding:clamp(44px,6vw,80px) clamp(18px,4vw,48px)}
.insta__head{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:22px;flex-wrap:wrap;gap:6px}
.insta__head h2{font-family:'Source Serif 4',serif;font-weight:600;font-size:clamp(26px,3.5vw,44px)}
.insta__follow{color:var(--terracotta);font-weight:600}
/* horizontal carousel: 4 photos per view, swipe/scroll right for the next 4 (up to 8) */
.insta__wrap{position:relative}
.insta__arrow{
  position:absolute;right:-6px;top:50%;transform:translateY(-50%);z-index:5;
  width:48px;height:48px;border-radius:50%;border:none;cursor:pointer;
  background:#fff;color:var(--terracotta);font-size:22px;line-height:1;
  box-shadow:0 4px 16px rgba(30,27,23,.14);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .2s ease,transform .15s ease;
}
.insta__arrow:hover{transform:translateY(-50%) scale(1.08)}
.insta__arrow[hidden]{display:none}
.insta__row{display:flex;gap:clamp(8px,1.2vw,16px);overflow-x:auto;scroll-snap-type:x proximity;
  scrollbar-width:none;-webkit-overflow-scrolling:touch;padding-bottom:2px}
.insta__row::-webkit-scrollbar{display:none}
.insta__row a{flex:0 0 calc((100% - 3 * clamp(8px,1.2vw,16px)) / 4);aspect-ratio:4/5;
  scroll-snap-align:start;overflow:hidden;border-radius:14px;background:#e7ddcd}
.insta__row img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.insta__row a:hover img{transform:scale(1.06)}

/* ===================== FOOTER ===================== */
.foot{background:var(--ink);color:var(--cream);padding:clamp(26px,3.5vw,42px) clamp(18px,4vw,48px) 22px;
  --foot-gap:clamp(60px,12vw,178px); /* one value = equal spacing: logo↔Visit and Visit↔Hours */
  display:grid;grid-template-columns:auto 1fr;column-gap:var(--foot-gap);row-gap:10px}
.foot__logo-img{height:clamp(46px,6vw,74px);width:auto;object-fit:contain;filter:invert(1)}
.foot__cols{display:flex;gap:clamp(24px,5vw,70px);flex-wrap:wrap}
.foot__cols h4{font-family:'Source Serif 4',serif;font-weight:500;font-size:20px;margin-bottom:12px}
.foot__cols a{display:block;opacity:.7;margin-bottom:8px;font-size:15px;transition:opacity .15s}
.foot__cols a:hover{opacity:1;color:var(--mustard)}
.foot__credit{grid-column:1/-1;border-top:1px solid rgba(246,238,226,.18);padding-top:18px;margin-top:6px;font-size:13px;opacity:.6}
/* address/instagram in the footer — shown on mobile (hidden on desktop) */
.foot__info{display:none;grid-column:1/-1;
  font-family:'Open Sauce Sans','Alata',sans-serif;text-transform:lowercase;
  color:var(--cream);font-size:15px;line-height:1.6;opacity:.85}
.foot__info p{margin-bottom:14px}
.foot__info b{font-weight:600}

/* footer "Come say hi" contact block (on the dark footer) */
.foot__contact{display:flex;flex-direction:column}
.foot__contact-title{font-family:'Source Serif 4',serif;font-weight:600;font-size:clamp(21px,2.6vw,28px);
  color:var(--cream);margin-bottom:16px}
.foot__contact-grid{display:flex;gap:var(--foot-gap);flex-wrap:wrap;
  font-family:'Source Serif 4',serif;font-size:15px;line-height:1.5;color:var(--cream)}
.foot__contact-col{display:flex;flex-direction:column;gap:15px}
.foot__label{display:block;font-family:'Alata',sans-serif;font-size:12px;letter-spacing:.14em;
  text-transform:uppercase;opacity:.55;margin-bottom:4px}
.foot__contact-grid a{color:var(--cream);opacity:.85;transition:opacity .15s,color .15s}
.foot__contact-grid a:hover{opacity:1;color:var(--mustard)}

/* ===================== CURVY SECTION SEPARATORS ===================== */
/* each coloured block scallops up into the one above it */
.cats,.insta,.foot,.about{position:relative}
.cats::before,.insta::before,.foot::before,.about::before{
  content:"";position:absolute;left:0;right:0;top:1px;height:30px;
  transform:translateY(-100%);background-repeat:repeat-x;background-size:120px 30px;pointer-events:none;
}
.cats::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30' viewBox='0 0 120 30'%3E%3Cpath d='M0 30 V16 Q30 -3 60 16 T120 16 V30 Z' fill='%23F4BFB0'/%3E%3C/svg%3E")}
.insta::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30' viewBox='0 0 120 30'%3E%3Cpath d='M0 30 V16 Q30 -3 60 16 T120 16 V30 Z' fill='%23FBEEC2'/%3E%3C/svg%3E")}
.foot::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30' viewBox='0 0 120 30'%3E%3Cpath d='M0 30 V16 Q30 -3 60 16 T120 16 V30 Z' fill='%233E423E'/%3E%3C/svg%3E")}
.about::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='30' viewBox='0 0 120 30'%3E%3Cpath d='M0 30 V16 Q30 -3 60 16 T120 16 V30 Z' fill='%23E6FAF5'/%3E%3C/svg%3E")}

/* ===== About — home-page section ===== */
.about{background:#E6FAF5;padding:clamp(68px,9vw,120px) clamp(18px,5vw,72px)}
.about__inner{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr);
  align-items:center;gap:clamp(42px,7vw,96px);
}
.about__copy{max-width:520px}
.about__title{font-family:'Source Serif 4',serif;font-weight:600;font-size:clamp(24px,4.8vw,68px);
  line-height:1.04;letter-spacing:-.02em;color:var(--ink);margin:0 0 28px;text-transform:lowercase}
.about__body{font-family:'Source Serif 4',serif;font-size:clamp(16px,1.4vw,18px);line-height:1.65;color:var(--ink)}
.about__body p{margin-bottom:16px}
.about__photo{overflow:hidden;border-radius:18px;aspect-ratio:4/3;background:#d8e9e4}
.about__photo img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}
.about__contact{margin-top:38px;padding-top:32px;border-top:1px solid var(--line)}
.about__subhead{font-family:'Fraunces',serif;font-weight:700;font-size:clamp(22px,3vw,30px);
  color:var(--ink);margin-bottom:14px}

/* ===================== WAVE SEPARATORS ===================== */
.wave{height:60px;background-repeat:repeat-x;background-size:120px 60px}
.wave--hero{position:absolute;left:0;right:0;bottom:-1px;z-index:3;height:48px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 30 Q30 0 60 30 T120 30 V60 H0 Z' fill='%23F7F3EB'/%3E%3C/svg%3E");}
.wave--mid{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 40 Q30 10 60 40 T120 40' fill='none' stroke='%23DC5A3C' stroke-width='3'/%3E%3C/svg%3E");
  margin:10px 0}
.wave--flip{transform:scaleX(-1)}

/* ===================== ARC SIGNUP POPUP ===================== */
.signup{position:fixed;left:50%;bottom:0;transform:translateX(-50%) translateY(110%);
  z-index:80;opacity:0;
  transition:transform .55s cubic-bezier(.22,1,.36,1),opacity .3s ease}
.signup.show{opacity:1;transform:translateX(-50%) translateY(0)}
.signup__arc{
  position:relative;background:#345157;color:#fff;
  width:min(440px,92vw);text-align:center;padding:42px 32px 36px;
  border-radius:240px 240px 0 0; /* dome top, flat bottom touching the screen */
  box-shadow:0 -8px 50px rgba(30,27,23,.22);
}
.signup__arc h3{font-family:'Source Serif 4',serif;font-weight:600;font-size:30px;line-height:1;margin-bottom:12px}
.signup__arc p{font-size:14px;opacity:.85;margin-bottom:18px}
.signup__form{display:flex;flex-direction:column;gap:10px}
.signup__form input{border:none;border-radius:var(--r);padding:13px 18px;font-size:15px;font-family:inherit}
.signup__form button{border:none;background:var(--terracotta);color:#fff;border-radius:var(--r);padding:13px;font-weight:600;font-size:15px;cursor:pointer;font-family:inherit;transition:background .15s}
.signup__form button:hover{background:#8f4205}
.signup__form button:disabled{cursor:wait;opacity:.72}
.signup__consent{display:block;font-size:10px;line-height:1.35;opacity:.72;padding:0 12px}
.signup__status{min-height:18px;margin:0!important;font-size:12px!important;font-weight:600;opacity:1!important}
.signup__status.is-success{color:#d9f4df}
.signup__status.is-error{color:#ffd7d0}
/* clear, always-legible circular close button */
.signup__close{
  position:absolute;top:12px;right:12px;z-index:3;cursor:pointer;
  width:44px;height:44px;border-radius:50%;
  background:var(--ink);border:2px solid #fff;
  color:#fff;font-size:24px;font-weight:600;line-height:1;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 3px 14px rgba(30,27,23,.3);
  -webkit-tap-highlight-color:transparent;
  transition:background .15s ease,transform .15s ease,box-shadow .15s ease;
}
.signup__close:hover{background:var(--terracotta);transform:scale(1.06);box-shadow:0 4px 18px rgba(30,27,23,.4)}
.signup__close:focus-visible{outline:3px solid #fff;outline-offset:3px}

/* ===================== SHOP ALL PAGE ===================== */
.shop{max-width:var(--max);margin:0 auto;padding:clamp(104px,12vh,140px) clamp(18px,4vw,48px) 80px}
.shop__head{display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;gap:10px;
  border-bottom:1px solid var(--line);padding-bottom:clamp(18px,2.4vw,28px);margin-bottom:clamp(20px,2.6vw,32px)}
.shop__title{font-family:'Source Serif 4',serif;font-weight:600;letter-spacing:-.02em;
  font-size:clamp(40px,7vw,88px);line-height:1;color:var(--ink)}
.shop__count{font-family:'Open Sauce Sans','Alata',sans-serif;text-transform:uppercase;letter-spacing:.16em;
  font-size:13px;color:var(--muted)}
.shop__filters{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:clamp(28px,3.4vw,48px)}
.chip{
  appearance:none;-webkit-appearance:none;cursor:pointer;
  font-family:'Open Sauce Sans','Alata',sans-serif;font-size:14px;font-weight:600;
  color:var(--ink);background:transparent;border:1.5px solid var(--line);
  border-radius:var(--r);padding:9px 18px;transition:background .16s ease,color .16s ease,border-color .16s ease;
}
.chip:hover{border-color:var(--ink)}
.chip.is-active{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.shop__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(20px,2.6vw,40px);align-items:start}

/* pagination */
.shop__pager{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:8px;
  margin-top:clamp(40px,5vw,64px)}
.shop__pager:empty{display:none}
.pager__btn{min-width:42px;height:42px;padding:0 13px;border:1px solid var(--line);background:transparent;
  color:var(--ink);border-radius:var(--r);cursor:pointer;font-family:'Alata',sans-serif;font-size:14px;line-height:1;
  transition:background .15s,color .15s,border-color .15s}
.pager__btn:hover:not(:disabled){border-color:var(--ink)}
.pager__btn.is-active{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.pager__btn:disabled{opacity:.3;cursor:default}
.pager__gap{color:var(--muted);padding:0 2px}

/* ===================== RESPONSIVE ===================== */
/* As the section narrows, give the title its own row and keep the interactive
   words and portrait together beneath it. */
@media(max-width:2200px){
  .meet__eyebrow{
    margin-bottom:clamp(120px,8vw,140px);
  }
  .meet{
    min-height:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
    align-items:start;gap:clamp(40px,7vw,96px);
  }
  .meet__words{min-width:0}
  .meet__frame{
    position:relative;right:auto;top:auto;margin:0;
    transform:translate(clamp(-150px,-7.5vw,-75px),clamp(30px,4vw,60px)) scale(1.42);
    transform-origin:bottom center;width:auto;max-width:none;
    height:calc(var(--meet-type-size) * 6.48);justify-self:center;
  }
}

/* below this width the big menu would collide with the top-right address,
   so move the address down into the footer */
@media(max-width:1120px){
  .hero__info{display:none}
  .foot__info{display:block}
}

@media(max-width:960px){
  .foot{grid-template-columns:1fr}
  .shop__grid{grid-template-columns:repeat(3,1fr)}
}

/* tablet & phones: 2 x 2 — two rows, two columns visible, swipe/page for the next 4 */
@media(max-width:820px){
  .cats{
    --meet-type-size:clamp(28px,7.5vw,36px);
    padding-bottom:clamp(90px,18vw,120px);
  }
  .meet__eyebrow{margin-bottom:clamp(64px,15vw,88px)}
  .grid{
    grid-template-rows:repeat(2,auto);
    grid-auto-columns:calc((100% - var(--gap)) / 2);
    align-items:start; /* cards size to content — no stretched white space */
    row-gap:22px;
    --gap:14px;
  }
  .products{padding:24px clamp(16px,4vw,28px) 48px}
  .shop__grid{grid-template-columns:repeat(2,1fr)}
  /* Meet section on mobile: words on the left, framed photo on the right */
  .meet{min-height:0;display:flex;align-items:flex-start;gap:clamp(14px,3.5vw,24px)}
  .meet__words{flex:1 1 auto;min-width:0}
  .meet__frame{position:relative;transform:translate(-12px,18px) scale(1.4);transform-origin:bottom center;right:auto;top:auto;margin:0;
    flex:0 0 auto;width:auto;max-width:none;height:calc(var(--meet-type-size) * 6.48)}
  .about__inner{grid-template-columns:1fr;gap:0}
  .about__copy{max-width:620px}
  .about__photo{display:none}
  .foot__contact-grid{flex-direction:column;gap:18px}
}

@media(max-width:560px){
  /* Instagram: 2 x 2 grid per view, swipe/arrow right for the next 4
     (keeps the 4:5 portrait ratio from desktop) */
  .insta__row{display:grid;grid-auto-flow:column;grid-template-rows:repeat(2,auto);
    grid-auto-columns:calc((100% - 12px) / 2);gap:12px}
  /* nav fits comfortably; logo bigger without a taller bar */
  .nav{height:72px;padding:8px 18px}
  .brandmark{height:54px}
  .nav__shopall,.nav__bag{font-size:14px}
  .nav__right{gap:14px}
  /* hero menu: single column so nothing clips */
  .hero__menu{grid-template-columns:1fr;padding:16px;row-gap:2px}
  .hmenu,.about__title{font-size:clamp(22px,7vw,38px)}
  /* category line: smaller + tighter so it stays on one line */
  .bigcats{padding:24px 14px}
  .bigcats__row{gap:clamp(8px,2.6vw,14px)}
  .bigcat{font-size:clamp(19px,5vw,30px)}
  .bigcat__dot{font-size:clamp(8px,2.2vw,13px)}
  /* product text sizing */
  .card__name{font-size:16px}
}

/* ===== Add to bag (cards) + shopping bag drawer ===== */
.card__actions{position:relative;margin-top:2px}
.card__add{
  border:1px solid var(--ink);color:var(--ink);background:transparent;cursor:pointer;
  border-radius:var(--r);padding:7px 16px;font-size:13px;font-weight:500;line-height:1;
  font-family:'Alata',sans-serif;transition:background .15s ease,color .15s ease;
}
.card__add:hover:not(:disabled){background:var(--ink);color:var(--cream)}
.card__add:disabled{border-color:var(--line);color:var(--muted);cursor:default}
.card__add--link{display:inline-block;text-decoration:none}

#bagRoot{position:fixed;inset:0;z-index:200}
.bag__scrim{position:absolute;inset:0;background:rgba(62,66,62,.32);opacity:0;transition:opacity .3s ease}
.bag__panel{
  position:absolute;top:0;right:0;height:100%;width:min(420px,92vw);
  background:var(--cream);display:flex;flex-direction:column;
  box-shadow:-12px 0 40px rgba(62,66,62,.18);
  transform:translateX(100%);transition:transform .3s ease;
}
#bagRoot.is-open .bag__scrim{opacity:1}
#bagRoot.is-open .bag__panel{transform:none}
.bag__head{
  display:flex;align-items:center;justify-content:space-between;
  padding:22px 24px;border-bottom:1px solid var(--line);
}
.bag__head h3{font-family:'Fraunces',serif;font-weight:700;font-size:24px;color:var(--ink)}
.bag__close{border:0;background:transparent;cursor:pointer;font-size:26px;line-height:1;color:var(--ink)}
.bag__close:hover{color:var(--terracotta)}
.bag__lines{flex:1;overflow-y:auto;padding:10px 24px}
.bag__empty{color:var(--muted);padding:28px 0;font-size:15px}
.bag__line{display:flex;gap:14px;align-items:flex-start;padding:16px 0;border-bottom:1px solid var(--line)}
.bag__line img{width:64px;height:64px;object-fit:cover;border-radius:8px;background:#edeae3;flex:none}
.bag__line-info{flex:1;min-width:0}
.bag__line-name{font-family:'Source Serif 4',serif;font-weight:500;font-size:15px;color:var(--ink);line-height:1.3}
.bag__line-variant{font-size:13px;color:var(--muted);margin-top:2px}
.bag__line-price{font-size:14px;color:var(--ink);flex:none}
.bag__qty{display:flex;align-items:center;gap:10px;margin-top:10px}
.bag__qty button{
  border:1px solid var(--line);background:transparent;color:var(--ink);cursor:pointer;
  width:24px;height:24px;border-radius:50%;font-size:14px;line-height:1;
}
.bag__qty button:hover{border-color:var(--ink)}
.bag__qty span{font-size:14px;color:var(--ink);min-width:16px;text-align:center}
.bag__remove{
  width:auto !important;height:auto !important;border:0 !important;border-radius:0 !important;
  font-size:12px !important;color:var(--muted) !important;text-decoration:underline;margin-left:6px;
}
.bag__remove:hover{color:var(--terracotta) !important}
.bag__foot{padding:18px 24px 24px;border-top:1px solid var(--line)}
.bag__subtotal{
  display:flex;justify-content:space-between;font-size:15px;color:var(--ink);
  font-family:'Source Serif 4',serif;font-weight:600;margin-bottom:14px;
}
.bag__checkout{
  width:100%;border:0;border-radius:var(--r);padding:14px 0;font-size:15px;
  font-family:'Alata',sans-serif;background:var(--ink);color:var(--cream);cursor:pointer;
}
.bag__checkout:disabled{background:var(--line);color:var(--muted);cursor:default}
.bag__note{font-size:12px;color:var(--muted);margin-top:10px;text-align:center}

/* ===== Product detail page ===== */
.pdp{max-width:var(--max);margin:0 auto;padding:118px 28px 70px}
.pdp__loading{color:var(--muted);font-size:15px;padding:40px 0}
.pdp__loading a{color:var(--terracotta)}
.pdp__back{
  display:inline-block;font-size:14px;color:var(--muted);text-decoration:none;margin-bottom:22px;
}
.pdp__back:hover{color:var(--terracotta)}
.pdp__cols{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:clamp(28px,4vw,64px);align-items:start}
.pdp__main{
  aspect-ratio:1/1;border-radius:12px;overflow:hidden;background:#edeae3;
}
.pdp__main img{width:100%;height:100%;object-fit:cover}
.pdp__thumbs{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.pdp__thumb{
  width:64px;height:64px;border-radius:8px;overflow:hidden;border:1px solid var(--line);
  background:#edeae3;cursor:pointer;padding:0;
}
.pdp__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.pdp__thumb.is-active{border-color:var(--ink)}
.pdp__title{
  font-family:'Fraunces',serif;font-weight:700;font-size:clamp(26px,3vw,38px);
  line-height:1.1;color:var(--ink);margin-bottom:12px;
}
.pdp__price{font-size:19px;color:var(--ink);margin-bottom:22px}
.pdp__price s{color:var(--muted);margin-right:8px}
.pdp__variants{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:24px}
.vpill{
  border:1px solid var(--line);background:transparent;color:var(--ink);cursor:pointer;
  border-radius:var(--r);padding:9px 18px;font-size:14px;font-family:'Alata',sans-serif;line-height:1;
}
.vpill:hover{border-color:var(--ink)}
.vpill.is-active{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.vpill[data-soldout]{color:var(--muted);text-decoration:line-through}
/* a selected sold-out variant stays readable (cream on ink), not dark-on-dark */
.vpill.is-active[data-soldout]{color:var(--cream)}
.pdp__add{
  width:100%;max-width:340px;border:0;border-radius:var(--r);padding:15px 0;font-size:15px;
  font-family:'Alata',sans-serif;background:var(--ink);color:var(--cream);cursor:pointer;
  transition:background .15s ease;
}
.pdp__add:hover:not(:disabled){background:var(--terracotta)}
.pdp__add:disabled{background:var(--line);color:var(--muted);cursor:default}
.pdp__desc{
  margin-top:28px;font-family:'Source Serif 4',serif;font-size:15.5px;line-height:1.65;
  color:var(--ink);max-width:54ch;
}
.pdp__desc p{margin-bottom:12px}
@media (max-width:760px){
  .pdp{padding-top:96px}
  .pdp__cols{grid-template-columns:1fr}
}

/* "no photo yet" placeholder (cards + product page) */
.card__nophoto{
  display:flex;align-items:center;justify-content:center;width:100%;height:100%;
  font-family:'Source Serif 4',serif;font-style:italic;font-size:14px;line-height:1.5;
  color:var(--muted);text-align:center;letter-spacing:.02em;
}

/* ===== Simple content pages (About, Contact) ===== */
.page{max-width:720px;margin:0 auto;padding:140px 28px 84px}
.page__eyebrow{font-family:'Alata',sans-serif;letter-spacing:.18em;text-transform:uppercase;
  font-size:13px;color:var(--muted);margin-bottom:14px}
.page__title{font-family:'Fraunces',serif;font-weight:700;font-size:clamp(34px,6vw,58px);
  line-height:1.04;color:var(--ink);margin-bottom:28px}
.page__body{font-family:'Source Serif 4',serif;font-size:17px;line-height:1.7;color:var(--ink)}
.page__body p{margin-bottom:18px}
.page__body a{color:var(--terracotta)}
.page__contact{margin-top:8px;font-family:'Source Serif 4',serif;font-size:17px;line-height:1.5;color:var(--ink)}
.page__contact b{display:block;margin-top:22px;margin-bottom:4px;font-family:'Alata',sans-serif;
  font-weight:400;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.page__contact a{color:var(--terracotta)}
@media (max-width:760px){ .page{padding-top:104px} }
