/* =========================================================================
   Zissy's Kitchen — app.css
   Direction C · Soft Futurist.
   Cream + coral, Fraunces + DM Sans, glass pills, ambient blobs, 28px cards.
   ========================================================================= */

:root {
  /* Color */
  --cream:       #FDF7F0;   /* page bg */
  --cream-2:     #F7EFE4;   /* alt section bg */
  --paper:       #FFFFFF;   /* card bg */
  --blush:       #F5D4C8;   /* ambient blob */
  --sky:         #DDE8F5;   /* ambient blob */
  --mint:        #D4E8DA;   /* ambient blob */
  --coral:       #FF6B57;   /* primary accent */
  --coral-deep:  #E85540;   /* pressed/hover */
  --ink:         #1F1721;   /* primary text */
  --ink-2:       #3A2F3C;   /* secondary text */
  --stone:       #7A6E76;   /* muted meta text */
  --rose:        #F5D4C8;   /* alias */
  --sage:        #6B7F5A;
  --line:        rgba(31,23,33,.08);
  --line-strong: rgba(31,23,33,.14);

  /* Back-compat aliases so legacy rules keep working */
  --ivory:       var(--cream);
  --ivory-2:     var(--cream-2);
  --gold:        var(--coral);
  --gold-deep:   var(--coral-deep);
  --line-gold:   rgba(255,107,87,.28);

  /* Type */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body:    "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 2.85rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4.25rem);
  --step-5:  clamp(3.2rem, 2.4rem + 4vw, 6rem);

  /* Spacing */
  --s-1: 0.5rem; --s-2: 1rem; --s-3: 1.5rem; --s-4: 2rem;
  --s-5: 3rem;   --s-6: 4rem; --s-7: 6rem;   --s-8: 8rem;

  /* Radii, motion */
  --r-sm: 14px; --r-md: 22px; --r-lg: 28px; --r-pill: 999px;
  --ease: cubic-bezier(.2,.6,.2,1);
  --dur:  500ms;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --shadow-card: 0 12px 40px rgba(31,23,33,.06);
  --shadow-card-hover: 0 30px 60px rgba(31,23,33,.12);
  --shadow-float: 0 30px 80px rgba(31,23,33,.12);
}

/* -------- Reset & base -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--cream);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img, picture, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--coral); }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; background: var(--ink); color: var(--cream); padding: .75rem 1rem;
  z-index: 100; border-radius: var(--r-pill);
}
.skip:focus { left: 1rem; top: 1rem; width: auto; height: auto; }

/* Focus ring */
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

/* -------- Ambient gradient blobs -------- */
.ambient {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  will-change: transform;
}
.blob--a { width: 600px; height: 600px; background: var(--blush); top: -200px; right: -150px; }
.blob--b { width: 500px; height: 500px; background: var(--sky); bottom: -200px; left: -100px; }
.blob--c { width: 420px; height: 420px; background: var(--mint); top: 40%; left: 45%; opacity: .35; }
@media (max-width: 640px) {
  .blob--a { width: 360px; height: 360px; top: -120px; right: -100px; }
  .blob--b { width: 320px; height: 320px; bottom: -140px; left: -80px; }
  .blob--c { display: none; }
}

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: var(--step-5); line-height: .98; font-variation-settings: "opsz" 144; }
h2 { font-size: var(--step-4); line-height: 1.02; font-variation-settings: "opsz" 96; }
h3 { font-size: var(--step-2); line-height: 1.15; font-variation-settings: "opsz" 60; letter-spacing: -.015em; }
h4 { font-size: var(--step-1); line-height: 1.25; font-variation-settings: "opsz" 36; letter-spacing: -.01em; }

/* Italic display accent — use <em> inside headings for coral italic */
h1 em, h2 em, h3 em, h4 em,
.hero__text em, .hero__h1 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}

p { margin: 0; }
p + p { margin-top: 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 var(--s-2);
}

.lede {
  font-size: var(--step-1);
  color: var(--stone);
  max-width: 48ch;
  line-height: 1.5;
  font-weight: 400;
}

.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }

.tnum { font-feature-settings: "tnum" 1; font-variant-numeric: tabular-nums; }

/* Generic wrapper */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); position: relative; z-index: 1; }

/* Section head */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto var(--s-5);
  padding-inline: var(--gutter);
  position: relative; z-index: 1;
}
.section-head .lede { margin-top: var(--s-2); }

/* Section padding */
.section { padding-block: clamp(4rem, 8vw, 8rem); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(3rem, 6vw, 6rem); }
.section--bg { background: transparent; }

/* Main sits above ambient */
main { position: relative; z-index: 1; }

/* -------- Pulse dot (for "Booking simchas..." tags) -------- */
.dot {
  width: 8px; height: 8px; background: var(--coral); border-radius: 999px;
  display: inline-block; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.2); }
}

/* -------- Buttons — dark ink pills with coral hover -------- */
.btn {
  display: inline-flex; align-items: center; gap: .55ch;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font: 500 .92rem/1 var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
  background: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .2s var(--ease);
}
.btn:hover { background: var(--coral); color: var(--paper); transform: translateY(-1px); }

.btn--gold { background: var(--ink); color: var(--cream); border-color: transparent; }
.btn--gold:hover { background: var(--coral); color: var(--paper); }

.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: var(--paper);
  color: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}

/* -------- Header — floating glass pill nav -------- */
.site-header {
  position: sticky; top: 1rem; z-index: 50;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}
.site-header .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  background: rgba(253,247,240,.72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(31,23,33,.06);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-card);
}
.brand { text-decoration: none; color: var(--ink); display: inline-flex; gap: .4ch; align-items: baseline; }
.brand:hover { color: var(--ink); }
.brand__mark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  font-variation-settings: "opsz" 48;
  letter-spacing: -.01em;
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--coral);
  text-transform: none;
}
.nav { display: flex; gap: 1.75rem; align-items: center; }
.nav a {
  color: var(--stone); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  letter-spacing: 0;
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav .btn { padding: .65rem 1.2rem; font-size: .88rem; color: var(--cream); }
.nav .btn:hover { color: var(--paper); }

.nav-toggle {
  display: none; background: transparent; border: 0;
  padding: .5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; }
  .site-header { top: .5rem; }
  .site-header .wrap { padding: .6rem 1rem .6rem 1.1rem; }
}

/* Header hairline — now hidden, glass pill stands alone */
.site-header .hairline { display: none; }

/* -------- Mobile dialog nav -------- */
.mnav { border: 0; padding: 0; background: var(--cream); color: var(--ink); width: 100%; max-width: 100%; height: 100dvh; max-height: 100dvh; }
.mnav::backdrop { background: rgba(31,23,33,.55); backdrop-filter: blur(4px); }
.mnav-inner { padding: var(--s-5) var(--gutter); display: flex; flex-direction: column; gap: var(--s-4); height: 100%; }
.mnav__close { align-self: flex-end; background: var(--paper); border: 1px solid var(--line); color: var(--ink); font: 500 .85rem/1 var(--font-body); letter-spacing: 0; text-transform: none; cursor: pointer; padding: .55rem 1.1rem; border-radius: var(--r-pill); }
.mnav nav { display: flex; flex-direction: column; gap: var(--s-3); }
.mnav nav a { font-family: var(--font-display); font-weight: 500; font-size: var(--step-3); text-decoration: none; color: var(--ink); letter-spacing: -.02em; }
.mnav nav a:hover { color: var(--coral); }
.mnav__meta { margin-top: auto; font-size: .85rem; color: var(--stone); letter-spacing: 0; }

/* -------- Footer -------- */
.site-foot { margin-top: var(--s-7); position: relative; z-index: 1; }
.site-foot .wrap {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: var(--s-5);
  padding-block: var(--s-6);
}
.site-foot .eyebrow { margin-bottom: var(--s-2); color: var(--coral); }
.site-foot .meta { color: var(--stone); font-size: .92rem; max-width: 34ch; }
.site-foot .brand__mark { font-size: 1.35rem; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem; }
.site-foot ul a, .site-foot ul li { color: var(--stone); text-decoration: none; font-size: .92rem; }
.site-foot ul a:hover { color: var(--coral); }
.site-foot .fine {
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: var(--s-3);
  padding-block: var(--s-3);
  font-size: .8rem; color: var(--stone);
}
@media (max-width: 860px) {
  .site-foot .wrap { grid-template-columns: 1fr 1fr; }
  .site-foot .fine { flex-direction: column; }
}
@media (max-width: 520px) {
  .site-foot .wrap { grid-template-columns: 1fr; }
}

/* -------- Sticky mobile CTA -------- */
.mbar {
  position: fixed; inset: auto .75rem .75rem .75rem;
  display: none; z-index: 60;
  background: rgba(253,247,240,.9);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
          backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-card);
}
.mbar a {
  flex: 1; text-align: center; padding: .85rem .5rem;
  color: var(--ink); text-decoration: none;
  font: 500 .85rem/1 var(--font-body);
  letter-spacing: 0; text-transform: none;
}
.mbar a + a { border-left: 1px solid var(--line); }
@media (max-width: 860px) {
  .mbar { display: flex; }
  body { padding-bottom: 80px; }
}

/* -------- KCL seal — soft ink & coral -------- */
.kcl {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--stone); font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
}
.kcl .seal {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--coral);
  border-radius: 50%;
  color: var(--coral); background: transparent;
  font-family: var(--font-display); font-weight: 500; font-size: .78rem;
  letter-spacing: .04em;
}
.kcl--large .seal { width: 60px; height: 60px; font-size: .95rem; border-width: 2px; }

/* Thin KCL band — glass card look */
.kcl-band {
  padding-inline: var(--gutter);
  padding-block: var(--s-3);
}
.kcl-band .wrap {
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  display: flex; align-items: center; gap: var(--s-3);
  padding: .85rem var(--s-3);
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.kcl-band p {
  color: var(--stone); font-size: .88rem;
  letter-spacing: 0;
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 640px) {
  .kcl-band .wrap { gap: var(--s-2); border-radius: var(--r-lg); padding: .75rem var(--s-2); }
}

/* -------- Home — Hero (floating card with pills) -------- */
.hero { padding-block: clamp(4rem, 9vw, 7rem) clamp(3rem, 6vw, 5rem); }
.hero__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__text .lede { margin-block: var(--s-3) var(--s-4); max-width: 42ch; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.hero__kcl { margin-top: var(--s-5); }

/* Pulse-dot tag */
.hero__tag {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 1.75rem;
}

/* Hero figure — floating rounded card */
.hero__figure { position: relative; margin: 0; }
.hero__figure img {
  width: 100%; height: auto;
  aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  filter: none;
}

/* Floating glass pills around hero image */
.hero__pill {
  position: absolute; z-index: 3;
  background: rgba(253,247,240,.85);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .55rem 1rem;
  font-size: .82rem; font-weight: 500;
  box-shadow: var(--shadow-card);
}
.hero__pill strong { color: var(--coral); font-weight: 600; }
.hero__pill--a { top: 6%; left: -6%; }
.hero__pill--b { bottom: 10%; right: -8%; display: inline-flex; align-items: center; gap: .6rem; }
.hero__pill--b .sw { width: 14px; height: 14px; background: var(--coral); border-radius: 999px; display: inline-block; }
.hero__pill--c { top: 46%; right: -4%; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; }
  .hero__figure img { aspect-ratio: 4/3; }
  .hero__pill--b, .hero__pill--c { display: none; }
  .hero__pill--a { top: 4%; left: 4%; right: auto; }
}

/* -------- Home — Stats strip -------- */
.stats {
  max-width: var(--maxw); margin: var(--s-5) auto 0;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  position: relative; z-index: 1;
}
.stat {
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.stat b em { font-style: italic; color: var(--coral); font-weight: 500; }
.stat span {
  font-size: .82rem; color: var(--stone); font-weight: 500;
  margin-top: .4rem; display: block;
}
@media (max-width: 860px) {
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .stat { padding: 1rem 1.1rem; }
  .stat b { font-size: 1.5rem; }
}

/* -------- Home — Signature occasions grid -------- */
.occ-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
}
.occ {
  grid-column: span 2; text-decoration: none; color: var(--ink);
  display: block;
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.occ:nth-child(1), .occ:nth-child(4) { grid-column: span 3; } /* asymmetry */
.occ:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); color: var(--ink); }
.occ__img-wrap {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}
.occ img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  filter: none;
}
.occ:hover img { transform: scale(1.04); }

/* Image overlay tag for occ cards */
.occ__img-wrap .tag,
.occ .tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(253,247,240,.85);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .35rem .8rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink);
}

.occ h3 {
  padding: 1.1rem 1.4rem 0;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  margin: 0;
}
.occ p {
  color: var(--stone); font-size: .88rem; margin: .2rem 0 0;
  padding: 0 1.4rem 1.25rem;
}

/* Tablet: 2-col */
@media (max-width: 860px) and (min-width: 641px) {
  .occ-grid { grid-template-columns: 1fr 1fr; }
  .occ, .occ:nth-child(1), .occ:nth-child(4) { grid-column: span 1; }
  .occ__img-wrap { aspect-ratio: 4/3; }
}

/* Phone: horizontal snap-scroll carousel */
@media (max-width: 640px) {
  .occ-grid {
    display: flex;
    grid-template-columns: none;
    gap: var(--s-3);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-block: var(--s-2);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .occ-grid::-webkit-scrollbar { display: none; }
  .occ, .occ:nth-child(1), .occ:nth-child(4) {
    grid-column: auto;
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
  .occ__img-wrap { aspect-ratio: 4/3; }
  .occ h3 { font-size: 1.15rem; }
}

/* -------- Home — Founder moment -------- */
.founder {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.founder__figure { margin: 0; }
.founder__figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
}
.founder__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-3);
  line-height: 1.15;
  color: var(--ink);
  font-style: italic;
  max-width: 22ch;
  letter-spacing: -.02em;
}
.founder__quote cite {
  display: block;
  font-family: var(--font-body); font-style: normal;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-top: var(--s-3);
}
.founder__body { max-width: 56ch; }
.founder__body .prose { color: var(--ink-2); }
.founder__bio { color: var(--ink-2); margin-top: var(--s-4); max-width: 56ch; }
.founder__cta { margin-top: var(--s-4); }
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; }
}

/* -------- Instagram mosaic -------- */
.ig-mosaic {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: var(--s-2);
}
.ig-mosaic a { display: block; border-radius: var(--r-sm); overflow: hidden; }
.ig-mosaic img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-sm);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.ig-mosaic a:hover img { opacity: .92; transform: scale(1.03); }
.ig-link { display: inline-block; margin-top: var(--s-4); font-size: .9rem; letter-spacing: 0; color: var(--coral); font-weight: 500; }
.ig-link:hover { color: var(--coral-deep); }
@media (max-width: 860px) and (min-width: 641px) { .ig-mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .ig-mosaic { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); } }

/* -------- Process -------- */
.process-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.process {
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
}
.process__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--coral);
  font-style: italic;
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -.02em;
}
.process h3 { margin-bottom: var(--s-2); font-size: 1.35rem; }
.process p { color: var(--stone); max-width: 36ch; font-size: .95rem; }
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; gap: var(--s-3); } }

/* -------- Testimonials -------- */
.quotes {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.quote {
  padding: var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--step-1);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}
.quote cite {
  display: block; margin-top: var(--s-3);
  font-family: var(--font-body); font-style: normal;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* -------- CTA band -------- */
.cta-band {
  position: relative; z-index: 1;
  padding-inline: var(--gutter);
}
.cta-band .wrap {
  padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
  max-width: var(--maxw);
  margin: 0 auto;
}
.cta-band h2 { margin-bottom: var(--s-2); color: var(--cream); }
.cta-band h2 em { color: var(--coral); }
.cta-band p { color: rgba(253,247,240,.75); margin-bottom: var(--s-4); max-width: 52ch; margin-inline: auto; }
.cta-band .btn { background: var(--coral); color: var(--paper); }
.cta-band .btn:hover { background: var(--paper); color: var(--ink); }

/* -------- Occasion pages -------- */
.occ-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  padding-top: var(--s-5);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.occ-hero .eyebrow { margin-bottom: var(--s-2); }
.occ-hero h1 { font-size: var(--step-4); }
.occ-hero .lede { margin-block: var(--s-3) var(--s-4); }
.occ-hero .cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.occ-hero figure { margin: 0; }
.occ-hero img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-float);
}
@media (max-width: 860px) {
  .occ-hero { grid-template-columns: 1fr; }
  .occ-hero figure { order: -1; }
  .occ-hero img { aspect-ratio: 4/3; }
}

.occ-body {
  display: grid; grid-template-columns: 1.4fr .6fr;
  gap: var(--s-5);
  max-width: var(--maxw); margin: 0 auto;
  padding: var(--s-7) var(--gutter);
}
.prose { color: var(--ink-2); }
.prose p + p { margin-top: 1em; }
.card {
  border: 1px solid var(--line);
  padding: var(--s-4);
  border-radius: var(--r-lg);
  align-self: start;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}
.card dl { display: grid; grid-template-columns: auto 1fr; gap: .55rem 1.25rem; margin-top: var(--s-2); }
.card dt { color: var(--coral); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding-top: .2rem; font-weight: 600; }
.card dd { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; }
@media (max-width: 860px) { .occ-body { grid-template-columns: 1fr; } }

.occ-grid-small {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  padding-bottom: var(--s-6);
}
.occ-grid-small img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-md);
}
@media (max-width: 860px) { .occ-grid-small { grid-template-columns: 1fr 1fr; } }

/* Occasions index cards */
.occ-index {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.occ-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.occ-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); color: var(--ink); }
.occ-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
  transition: transform .6s var(--ease);
}
.occ-card:hover img { transform: scale(1.03); }
.occ-card h3 { padding: 1.1rem 1.4rem 0; font-size: 1.3rem; font-weight: 500; letter-spacing: -.01em; }
.occ-card p { color: var(--stone); font-size: .88rem; padding: .2rem 1.4rem 1.25rem; margin: 0; }

@media (max-width: 860px) and (min-width: 641px) {
  .occ-index { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .occ-index {
    display: flex;
    grid-template-columns: none;
    gap: var(--s-3);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-block: var(--s-2);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .occ-index::-webkit-scrollbar { display: none; }
  .occ-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  .occ-card img { aspect-ratio: 4/3; }
}

/* -------- Gallery -------- */
.chips {
  max-width: var(--maxw); margin: 0 auto var(--s-4);
  padding-inline: var(--gutter);
  display: flex; gap: .6rem; flex-wrap: wrap;
}
.chips button {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .55rem 1rem;
  font: 500 .85rem/1 var(--font-body);
  letter-spacing: 0; text-transform: none;
  color: var(--stone); cursor: pointer;
  border-radius: var(--r-pill);
  transition: all .25s var(--ease);
}
.chips button:hover { color: var(--ink); border-color: var(--line-strong); }
.chips button.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.mason {
  max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gutter);
  column-count: 3; column-gap: var(--s-3);
}
.mason figure { break-inside: avoid; margin: 0 0 var(--s-3); cursor: zoom-in; }
.mason img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mason figure:hover img { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.mason figcaption {
  font-size: .8rem; color: var(--stone); margin-top: .5rem;
  letter-spacing: 0;
}
@media (max-width: 1024px) { .mason { column-count: 2; } }
@media (max-width: 640px)  { .mason { column-count: 1; } }

.lb {
  border: 0; padding: 0; background: transparent; max-width: 92vw;
  border-radius: var(--r-lg); overflow: hidden;
}
.lb::backdrop { background: rgba(31,23,33,.75); backdrop-filter: blur(8px); }
.lb img { display: block; max-width: 92vw; max-height: 88vh; border-radius: var(--r-lg); }
.lb button {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(253,247,240,.9);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: .5rem 1rem; cursor: pointer;
  font: 500 .82rem/1 var(--font-body); letter-spacing: 0; text-transform: none;
  border-radius: var(--r-pill);
  color: var(--ink);
}

/* -------- FAQ accordion — glass rails -------- */
.acc {
  max-width: 820px; margin: 0 auto;
  padding-inline: var(--gutter);
}
.acc details {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  margin-bottom: var(--s-2);
  box-shadow: var(--shadow-card);
  transition: border-color .3s var(--ease);
}
.acc details[open] { border-color: rgba(255,107,87,.35); }
.acc details:last-child { margin-bottom: 0; }
.acc summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-1);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  color: var(--ink);
  letter-spacing: -.01em;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  color: var(--paper);
  background: var(--coral);
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500; font-size: 1rem; line-height: 1;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.acc details[open] summary::after { content: "–"; }
.acc p {
  margin-top: var(--s-2);
  max-width: 70ch;
  color: var(--ink-2);
}

/* -------- Quote form — glass card -------- */
.quote-form {
  max-width: 680px; margin: 0 auto;
  padding: var(--s-5) var(--gutter);
  display: grid; gap: var(--s-3);
}
.quote-form > label,
.quote-form > .grid-2 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .9rem 1.1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.quote-form > label:focus-within,
.quote-form > .grid-2:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,87,.1);
}
.quote-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); padding: 0; background: transparent; border: 0; }
.quote-form .grid-2 > label {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: .9rem 1.1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.quote-form .grid-2 > label:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,87,.1);
}
.quote-form label {
  display: grid; gap: .3rem;
  font-size: .72rem;
  color: var(--coral);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font: 400 1rem/1.4 var(--font-body);
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
  text-transform: none; letter-spacing: normal;
  border-radius: 0;
  outline: 0;
  font-weight: 400;
}
.quote-form select { appearance: none; cursor: pointer; }
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus { outline: 0; }
.quote-form .hp { position: absolute; left: -9999px; }
.quote-form .legal { font-size: .82rem; color: var(--stone); letter-spacing: normal; text-transform: none; font-weight: 400; background: transparent; border: 0; padding: 0; }
.quote-form .file input { padding: 0; font-size: .9rem; }
.quote-form button[type="submit"] { justify-self: start; margin-top: var(--s-2); }
@media (max-width: 640px) { .quote-form .grid-2 { grid-template-columns: 1fr; } }

/* -------- 404 / Simple pages -------- */
.simple {
  max-width: 720px; margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  text-align: center;
  position: relative; z-index: 1;
}
.simple .eyebrow { justify-content: center; display: inline-block; }
.simple h1 { font-size: var(--step-4); margin-bottom: var(--s-3); }
.simple p { color: var(--stone); margin-bottom: var(--s-4); max-width: 50ch; margin-inline: auto; }
.simple__cta { display: inline-flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* -------- Reveal on scroll -------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0ms !important; transition: none !important; }
  .dot { animation: none; }
}
