:root {
  --cream: #f4ede4;
  --cream-2: #ebe1d3;
  --paper: #faf6ef;
  --ink: #1f1813;
  --ink-soft: #3d3128;
  --mute: #8a7a6a;
  --hair: #d8ccba;
  --anchor: #3a2530;
  --anchor-2: #5a2a30;
  --blush: #d9b8a8;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter Tight", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; cursor: none; }
@media (pointer: coarse) {
  body { cursor: auto; }
  #cursor { display: none; }
}

/* paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.10  0 0 0 0 0.07  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* custom cursor */
#cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--anchor);
  pointer-events: none;
  z-index: 2000;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(.2,.8,.2,1), height .35s cubic-bezier(.2,.8,.2,1), background .3s, opacity .3s;
  mix-blend-mode: multiply;
}
#cursor.big { width: 64px; height: 64px; background: var(--anchor); opacity: .85; }
#cursor.text { width: 4px; height: 22px; border-radius: 2px; }

/* nav */
nav.top {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: background .4s, backdrop-filter .4s, color .4s;
}
nav.top.scrolled {
  background: rgba(244, 237, 228, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hair);
}
nav.top .links { display: flex; gap: 28px; }
nav.top .links a, nav.top .right a {
  color: inherit;
  text-decoration: none;
  position: relative;
}
nav.top .links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
nav.top .links a:hover::after { transform: scaleX(1); }
nav.top .mark {
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
  color: inherit;
}
nav.top .mark .logo-img {
  height: 200px; width: auto; display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  mix-blend-mode: multiply;
  transition: height .4s, mix-blend-mode .4s;
}
nav.top.scrolled .mark .logo-img { height: 130px; }

/* BRAND ROW (desktop only) — declarations live near end of file for cascade order */
.brand-row { display: none; }
nav.top .right { justify-self: end; display: flex; gap: 24px; align-items: center; }
nav.top .inquire {
  border: 1px solid currentColor;
  padding: 9px 16px;
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  padding: 140px 36px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.hero .text-col {
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero .meta-top {
  display: flex; gap: 18px; align-items: baseline;
  color: var(--anchor);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 500;
}
.hero .meta-top .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--anchor); vertical-align: middle;
}
.hero h1 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(64px, 9.5vw, 168px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-top: 32px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--anchor);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero .lede {
  margin-top: 36px;
  max-width: 38ch;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero .ctas {
  margin-top: 40px;
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
}
.hero .cta {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .4s, color .4s, transform .4s;
}
.hero .cta.primary { background: var(--anchor); color: var(--cream); }
.hero .cta.primary:hover { background: var(--anchor-2); transform: translateX(4px); }
.hero .cta.ghost { color: var(--ink); border: 1px solid var(--anchor); }
.hero .cta.ghost:hover { background: var(--anchor); color: var(--cream); }
.hero .badges {
  margin-top: auto;
  padding-top: 48px;
  display: flex; gap: 24px;
  border-top: 1px solid var(--hair);
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}
.hero .badges span { display: flex; align-items: center; gap: 8px; }
.hero .badges span::before {
  content: ""; display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--anchor);
}

.hero .img-col { position: relative; }
.hero .img-frame {
  position: relative;
  width: 100%; height: 100%;
  min-height: 600px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(58,37,48,.18);
}
.hero .img-frame .bg {
  position: absolute; inset: 0;
  background-image: url("images/hero-sunshine.png");                    /* PNG fallback */
  background-image: -webkit-image-set(
    url("images/hero-sunshine.webp") type("image/webp") 1x,
    url("images/hero-sunshine.png") type("image/png") 1x
  );
  background-image: image-set(
    url("images/hero-sunshine.webp") type("image/webp") 1x,
    url("images/hero-sunshine.png") type("image/png") 1x
  );
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
  will-change: transform;
}
.hero .img-caption {
  position: absolute;
  left: -28px; bottom: 48px;
  background: var(--anchor);
  color: var(--cream);
  padding: 16px 22px;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  box-shadow: 0 16px 40px rgba(58,37,48,.25);
  transform: rotate(-2deg);
}
.hero .img-caption small {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 4px;
  font-variation-settings: normal;
}
.hero .vol-tag {
  position: absolute;
  top: 28px; right: 28px;
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  z-index: 3;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
/* TICKER */
.ticker {
  background: var(--anchor);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--anchor);
  border-bottom: 1px solid var(--anchor);
}
.ticker .track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.ticker .track span { display: inline-flex; align-items: center; gap: 64px; }
.ticker .track svg { flex: 0 0 auto; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION CHROME */
section { padding: 140px 36px; position: relative; }
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mute);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 48px;
}
.section-label::before {
  content: ""; display: inline-block;
  width: 36px; height: 1px; background: currentColor;
}
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--anchor);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* FEATURED */
.featured { background: var(--cream); }
.featured .head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}
.featured h2 { font-size: clamp(56px, 8vw, 130px); }
.featured .lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36ch;
  justify-self: end;
  padding-bottom: 18px;
}
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.gallery .col-right { display: grid; gap: 24px; }
.gallery.five .col-right {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery.five .basket.small .frame { aspect-ratio: 1 / 1; }
@media (max-width: 1100px) {
  .gallery.five .col-right { grid-template-columns: 1fr; }
}
.basket {
  position: relative;
  cursor: none;
  text-decoration: none;
  color: inherit;
}
.basket .frame {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.basket .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s;
}
.basket:hover .frame img { transform: scale(1.04); filter: brightness(.78); }
.basket .meta {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--hair);
  padding-top: 14px;
}
.basket .meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}
.basket .desc {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 8px;
  max-width: 42ch;
}
.basket.feature .frame { aspect-ratio: 4/5; }
.basket.small .frame { aspect-ratio: 4/3; }
.basket .meta .price {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.basket .desc em {
  display: block;
  margin-top: 8px;
  font-style: italic;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--anchor);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* DIVIDER */
.divider {
  display: flex; align-items: center; justify-content: center;
  padding: 72px 0;
  color: var(--anchor);
}
.divider .line {
  flex: 1; height: 1px; background: var(--hair);
  max-width: 30vw;
}
.divider svg { margin: 0 24px; }

/* HOW IT WORKS */
.how {
  background: var(--paper);
  padding: 160px 36px 200px;
  position: relative;
}
.how .head { max-width: 1400px; margin: 0 auto 96px; }
.how h2 { font-size: clamp(56px, 9vw, 140px); max-width: 14ch; }
.how .timeline { max-width: 1200px; margin: 0 auto; position: relative; }
.how .timeline::before {
  content: "";
  position: absolute;
  left: 50%; top: 40px; bottom: 40px;
  width: 1px;
  background: var(--hair);
}
.step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
.step:last-child { margin-bottom: 0; }
.step .img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-2);
}
.step .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.step:hover .img-wrap img { transform: scale(1.05); }
.step .text { padding: 0 8%; }
.step.left .img-wrap { grid-column: 1; }
.step.left .text { grid-column: 3; }
.step.right .img-wrap { grid-column: 3; order: 2; }
.step.right .text { grid-column: 1; text-align: right; }
.step .num {
  grid-column: 2;
  justify-self: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--anchor);
  color: var(--anchor);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  z-index: 2;
}
.step .label {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 18px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.step h3 em {
  font-style: italic; font-weight: 400; color: var(--anchor);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.step p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
}
.step.right p { margin-left: auto; }

/* OCCASIONS */
.occasions {
  background: var(--cream);
  padding: 140px 36px;
}
.occasions h2 {
  font-size: clamp(48px, 7vw, 110px);
  margin-bottom: 64px;
  max-width: 18ch;
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair);
}
.occasion {
  border-bottom: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
  padding: 36px 32px;
  display: flex; align-items: baseline; justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  transition: background .5s, color .5s, padding .5s;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  font-variation-settings: "opsz" 144;
}
.occasion:nth-child(3n) { border-right: 0; }
.occasion .arrow {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--mute);
  transition: transform .5s, color .5s;
}
.occasion:hover {
  background: var(--anchor);
  color: var(--cream);
  padding-left: 48px;
}
.occasion:hover .arrow { color: var(--cream); transform: translateX(8px); }
.occasion .num {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute); font-family: var(--sans); font-weight: 400;
  margin-right: 24px;
}
.occasion:hover .num { color: var(--blush); }

/* ABOUT */
.about {
  background: var(--anchor);
  color: var(--cream);
  padding: 200px 36px;
  position: relative;
}
.about .grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about .section-label { color: rgba(244,237,228,.6); }
.about .section-label::before { background: rgba(244,237,228,.6); }
.about h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  margin-bottom: 48px;
}
.about h2 em { color: var(--blush); }
.about p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(244,237,228,.85);
  max-width: 44ch;
  margin-bottom: 20px;
}
.about .img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about .img-pair .img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.about .img-pair .img-wrap:nth-child(2) { margin-top: 60px; }
.about .img-pair img { width: 100%; height: 100%; object-fit: cover; }

/* MOOD BOARD */
.mood {
  background: var(--cream);
  padding: 160px 36px;
}
.mood .head {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 40px;
  margin-bottom: 64px;
  max-width: 1500px;
  margin-left: auto; margin-right: auto;
}
.mood h2 { font-size: clamp(48px, 7vw, 110px); }
.mood .lede {
  font-family: var(--serif); font-weight: 300; font-size: 18px;
  line-height: 1.5; color: var(--ink-soft);
  max-width: 38ch; padding-bottom: 18px;
}
.mood .lede a {
  color: var(--anchor);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1500px;
  margin: 0 auto;
}
.gallery-grid .g-tile {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
  display: block;
  border-radius: 2px;
  cursor: none;
}
.gallery-grid .g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s;
}
.gallery-grid .g-tile:hover img { transform: scale(1.04); filter: brightness(.92); }
/* Wide tile: spans 2 columns, landscape aspect, used for editorial flat-lay shots */
.gallery-grid .g-tile.wide {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-grid .g-tile.wide { grid-column: span 2; aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid .g-tile.wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* PICKUP & DELIVERY */
.pickup-delivery {
  background: var(--cream);
  padding: 120px 36px 80px;
}
.pickup-delivery .pd-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pickup-delivery .section-label { justify-content: center; }
.pickup-delivery .section-label::before { display: none; }
.pickup-delivery h2 {
  font-size: clamp(48px, 6vw, 88px);
  margin-bottom: 32px;
}
.pickup-delivery .pd-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto;
}

/* INQUIRE SECTION + TRADITIONAL FORM */
.inquire-section {
  background: var(--paper);
  padding: 140px 36px 180px;
  position: relative;
}
.inquire-section .head {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}
.inquire-section .head .section-label { justify-content: center; }
.inquire-section .head .section-label::before { display: none; }
.inquire-section h2 {
  font-size: clamp(48px, 7vw, 110px);
  max-width: 16ch;
  margin: 0 auto;
}
.custom-note {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 20px 28px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.custom-note.small-note {
  font-size: 14px;
  padding: 14px 24px;
  margin-bottom: 56px;
  color: var(--mute);
  border-top: 0;
}
.inquire-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fffdf8;
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 56px 56px 48px;
  box-shadow: 0 24px 60px rgba(58, 37, 48, .08);
  display: grid;
  gap: 28px;
}
.inquire-form .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inquire-form label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.inquire-form input,
.inquire-form select,
.inquire-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  -webkit-appearance: none;
  appearance: none;
}
.inquire-form input::placeholder,
.inquire-form textarea::placeholder {
  color: var(--mute);
}
.inquire-form input:focus,
.inquire-form select:focus,
.inquire-form textarea:focus {
  border-color: var(--anchor);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(58, 37, 48, .12);
}
.inquire-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%233a2530' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.inquire-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
}
.inquire-form .form-footer {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.inquire-form .form-footer small {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
}
.inquire-form button {
  background: var(--anchor);
  color: var(--cream);
  border: 0;
  padding: 18px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.inquire-form button:hover {
  background: var(--anchor-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(58, 37, 48, .25);
}

/* FOOTER */
footer {
  background: var(--anchor);
  color: var(--cream);
  padding: 100px 36px 40px;
}
footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1500px;
  margin: 0 auto 80px;
  align-items: start;
}
footer .footer-logo {
  width: 520px; max-width: 100%; height: auto; display: block;
  background: transparent;
  filter: brightness(0) invert(1) opacity(.94);
}
footer .footer-tag {
  margin-top: 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  color: rgba(244,237,228,.75);
  max-width: 34ch;
  line-height: 1.5;
}
footer h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(244,237,228,.6);
  margin-bottom: 20px;
}
footer ul { list-style: none; }
footer li {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
}
footer a { color: rgba(244,237,228,.85); text-decoration: none; transition: color .3s; }
footer a:hover { color: var(--blush); }
footer .legal {
  border-top: 1px solid rgba(244,237,228,.2);
  padding-top: 24px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,237,228,.5);
  display: flex; justify-content: space-between;
  max-width: 1500px; margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav.top { padding: 16px 20px; grid-template-columns: auto 1fr auto; }
  nav.top .links { display: none; }
  nav.top .mark .logo-img { height: 100px; }
  nav.top .right .inquire { display: none; }
  nav.top .nav-toggle { display: flex; }
  .pickup-delivery { padding: 80px 20px 60px; }
  .inquire-form { padding: 32px 24px 28px; }
  .custom-note { padding: 16px 20px; }
  section, .how, .occasions, .about, .mood, .inquire-section { padding-left: 20px; padding-right: 20px; }
  /* Mobile hero — full-bleed editorial: image first, text below */
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 0 56px;        /* zero side padding so image can full-bleed */
    gap: 28px;
    min-height: 0;
  }
  .hero .img-col { order: -1; }   /* image renders FIRST */
  .hero .text-col { padding: 0 22px; }
  .hero .img-frame {
    min-height: 420px;
    border-radius: 0;             /* edge-to-edge */
    box-shadow: none;
  }
  .hero .img-frame .bg {
    background-position: center 42%;
  }
  .hero .vol-tag,
  .hero .img-caption {
    left: 16px;
    bottom: 18px;
    right: auto;
  }
  .hero .img-caption {
    padding: 13px 18px;
    font-size: 15px;
    transform: rotate(-2deg);
  }
  /* Tighter hero text rhythm so the headline lands close to the image */
  .hero h1 { margin-top: 16px; }
  .hero .lede { margin-top: 22px; font-size: 17px; }
  .hero .ctas { margin-top: 26px; }
  .hero .hero-micro { margin-top: 18px; }
  .featured .head, .mood .head, .about .grid { grid-template-columns: 1fr; }
  .featured .lede { justify-self: start; }
  .gallery { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr; }
  .occasion { border-right: 0; }
  .step, .step.right { grid-template-columns: 1fr; gap: 24px; }
  .step .num { display: none; }
  .step.left .text, .step.right .text { grid-column: 1; padding: 0; text-align: left; }
  .step.right .img-wrap { order: 0; grid-column: 1; }
  .how .timeline::before { display: none; }
  .masonry { column-count: 2; }
  footer .grid { grid-template-columns: 1fr; }
  footer .footer-logo { width: 320px; }
}

@media (max-width: 600px) {
  .gallery.six { grid-template-columns: 1fr; }
}

/* HAMBURGER + MOBILE DRAWER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--anchor);
  border-radius: 999px;
  padding: 0 11px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background .3s, transform .3s;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--anchor);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--cream);
  z-index: 99;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(58,37,48,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px;
  width: 100%;
}
.mobile-menu .mm-link {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  transition: color .25s, transform .25s;
}
.mobile-menu .mm-link:hover { color: var(--anchor); transform: translateX(4px); }
.mobile-menu .mm-link.mm-cta {
  margin-top: 12px;
  padding: 14px 24px;
  background: var(--anchor);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  font-variation-settings: normal;
}
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(31,24,19,.45);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
body.menu-open .mobile-menu-backdrop { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

/* FEATURED — 6-card grid */
.gallery.six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  align-items: start;
}
@media (max-width: 1100px) {
  .gallery.six { grid-template-columns: repeat(2, 1fr); }
}
.gallery.six .basket.card .frame { aspect-ratio: 4/5; }
.gallery.six .basket.card { display: flex; flex-direction: column; }
@media (max-width: 600px) {
  .gallery.six { grid-template-columns: 1fr; }
}

/* Visible per-card CTA (always shown; complements hover overlay on desktop) */
.basket .card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--anchor);
  border-bottom: 1px solid var(--anchor);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .3s, transform .3s, border-color .3s;
}
.basket:hover .card-cta { color: var(--anchor-2); transform: translateX(4px); }

/* Example note (small line under each basket) */
.basket .example-note {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-style: italic;
  letter-spacing: .04em;
  color: var(--mute);
  font-weight: 400;
}

/* Featured callouts (notes around the grid) */
.featured-note {
  max-width: 880px;
  margin: -32px auto 56px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 0 24px;
}
.featured-callout {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
  padding: 24px 28px;
  border-top: 1px solid var(--hair);
}

/* Form privacy note */
.inquire-form .privacy-note {
  margin-top: 4px;
  text-align: center;
  font-style: italic;
  color: var(--mute);
  letter-spacing: .04em;
  text-transform: none;
  font-size: 12px;
  font-family: var(--serif);
}

/* ============================================================
   DESKTOP HEADER COMPOSITION
   Slim nav  →  brand row (kicker + centered logo)  →  hero
   Lives at end of file to win cascade over base .hero styles.
   ============================================================ */
@media (min-width: 901px) {
  /* Nav becomes a slim horizontal bar; logo moves to brand-row */
  nav.top { padding: 16px 36px; }
  nav.top .mark { display: none; }

  .brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 92px 36px 0;          /* clears the fixed nav */
    margin: 0 auto 32px;
    gap: 14px;
  }
  .brand-row .brand-kicker {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--anchor);
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .brand-row .brand-kicker::before,
  .brand-row .brand-kicker::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--anchor);
    opacity: .55;
  }
  .brand-row .brand-logo {
    display: block;
    line-height: 0;
    margin-top: 6px;
  }
  .brand-row .brand-logo img {
    width: 170px;
    height: auto;
    display: block;
    background: transparent;
    mix-blend-mode: multiply;
  }

  /* Hide the in-hero kicker on desktop (it lives in brand-row now) */
  .hero .meta-top { display: none; }

  /* Hero no longer needs to clear the nav (brand-row already did) */
  .hero {
    padding-top: 24px;
    padding-bottom: 80px;
    min-height: 0;
  }
  .hero .img-frame { min-height: 620px; }
}

/* ============================================================
   HERO MICRO-LINE (under CTAs)
   ============================================================ */
.hero .hero-micro {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ============================================================
   PICKUP & DELIVERY — definition list
   ============================================================ */
.pickup-delivery .pd-list {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: left;
  display: grid;
  gap: 24px;
}
.pickup-delivery .pd-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hair);
}
.pickup-delivery .pd-item:last-child { border-bottom: 0; padding-bottom: 0; }
.pickup-delivery .pd-item dt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--anchor);
  padding-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.pickup-delivery .pd-item .pd-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: #2f8a4a;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
}
.pickup-delivery .pd-item dd {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 700px) {
  .pickup-delivery .pd-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   FAQ section
   ============================================================ */
.faq {
  background: var(--cream);
  padding: 140px 36px 120px;
}
.faq .faq-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq .faq-head .section-label { justify-content: center; }
.faq .faq-head .section-label::before { display: none; }
.faq .faq-head h2 {
  font-size: clamp(40px, 5.5vw, 76px);
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.faq-item {
  border-bottom: 1px solid var(--hair);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 8px 24px 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.35;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  letter-spacing: -0.005em;
  position: relative;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--anchor);
  line-height: 1;
  margin-top: 2px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item:hover summary { color: var(--anchor); }
.faq-item p {
  padding: 0 8px 28px 0;
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 70ch;
}
@media (max-width: 700px) {
  .faq { padding: 80px 20px 80px; }
  .faq-item summary { font-size: 17px; padding: 20px 4px 20px 0; gap: 16px; }
  .faq-item p { font-size: 15px; padding-bottom: 22px; }
}

/* ============================================================
   TRUST CHIPS
   ============================================================ */
.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 0;
}
.trust-chips li {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--anchor);
  background: var(--cream);
  border: 1px solid var(--hair);
  padding: 9px 16px;
  border-radius: 999px;
}
.trust-chips li.chip-highlight {
  background: #2f8a4a;
  border-color: #2f8a4a;
  color: #fff;
}
.honest-proof {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--mute);
}

/* ============================================================
   QUICK INQUIRY FORM
   ============================================================ */
.quick-form {
  max-width: 720px;
  margin: 0 auto 32px;
  background: #fffdf8;
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 36px 36px 32px;
  box-shadow: 0 16px 40px rgba(58, 37, 48, .06);
}
.quick-form .quick-form-intro {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink-soft);
  text-align: center;
}
.quick-form .quick-form-intro strong {
  color: var(--ink);
  font-weight: 400;
}
.quick-form .quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  .quick-form { padding: 24px 20px; }
  .quick-form .quick-row { grid-template-columns: 1fr; gap: 16px; }
}
.quick-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quick-form label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
.quick-form input,
.quick-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.quick-form input:focus,
.quick-form textarea:focus {
  border-color: var(--anchor);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(58, 37, 48, .12);
}
.quick-form textarea { resize: vertical; min-height: 80px; font-family: var(--sans); }
.quick-form .quick-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.quick-form button {
  background: var(--anchor);
  color: var(--cream);
  border: 0;
  padding: 14px 24px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.quick-form button:hover {
  background: var(--anchor-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(58, 37, 48, .25);
}
.quick-form .quick-or {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
}

.form-divider {
  max-width: 720px;
  margin: 32px auto 24px;
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--mute);
  position: relative;
}
.form-divider::before,
.form-divider::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--hair);
  vertical-align: middle;
  margin: 0 16px;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--anchor);
  color: var(--cream);
  text-align: center;
  padding: 16px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(58, 37, 48, .35);
}
.sticky-cta:hover { background: var(--anchor-2); }
@media (max-width: 900px) {
  .sticky-cta { display: block; }
  /* Add bottom padding to body so sticky CTA never overlaps footer content */
  footer { padding-bottom: 96px; }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
body.legal-page { background: var(--cream); }
.legal-main {
  padding: 180px 36px 120px;
  background: var(--cream);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 16px;
}
.legal-inner .legal-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 48px;
}
.legal-inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 40px 0 14px;
  color: var(--ink);
}
.legal-inner p,
.legal-inner li {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.legal-inner ul {
  margin: 8px 0 8px 22px;
  padding: 0;
}
.legal-inner li { margin-bottom: 6px; }
.legal-inner a {
  color: var(--anchor);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-inner .legal-back {
  margin-top: 48px;
  border-top: 1px solid var(--hair);
  padding-top: 24px;
}
body.legal-page footer .legal a { color: rgba(244,237,228,.85); }
@media (max-width: 700px) {
  .legal-main { padding: 140px 20px 80px; }
  .legal-inner h2 { font-size: 22px; }
}

/* ============================================================
   <picture> wrapper — make it transparent to layout
   ============================================================ */
picture { display: contents; }

/* ============================================================
   WHATSAPP FLOATING CHAT BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 88px; /* sits above the sticky mobile Inquire CTA */
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  outline: 3px solid rgba(37, 211, 102, .35);
  outline-offset: 2px;
}
.wa-fab-icon { width: 28px; height: 28px; flex-shrink: 0; }

@media (max-width: 900px) {
  /* On mobile, the sticky CTA bottom: 16; we sit above it (49+16+gap). */
  .wa-fab { bottom: 88px; }
}
@media (max-width: 640px) {
  .wa-fab { padding: 0; width: 56px; justify-content: center; bottom: 88px; right: 16px; }
  .wa-fab-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { transition: none; }
  .wa-fab:hover { transform: none; }
}

/* ============================================================
   "WHAT EVERY BASKET COMES WITH" — promises
   ============================================================ */
.promises {
  background: var(--paper);
  padding: 120px 36px 120px;
}
.promises-head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.promises-head .section-label { justify-content: center; }
.promises-head .section-label::before { display: none; }
.promises-head h2 { font-size: clamp(40px, 5.5vw, 76px); }
.promises-sub {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--mute);
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.promise-card {
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 36px 28px;
  transition: transform .35s, box-shadow .35s;
}
.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(58, 37, 48, .10);
}
.promise-card .promise-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  color: var(--anchor);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  margin-bottom: 14px;
  line-height: 1;
}
.promise-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.promise-card p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1000px) {
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .promises { padding: 80px 20px 80px; }
  .promise-card { padding: 28px 22px; }
}

/* ============================================================
   OCCASION TILE DESCRIPTIONS (one-liners)
   ============================================================ */
.occasion {
  flex-direction: column;
  align-items: stretch;
}
.occasion .occ-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}
.occasion .occ-desc {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--mute);
  letter-spacing: 0;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  max-width: 44ch;
}
.occasion:hover .occ-desc { color: var(--blush); }

/* ============================================================
   GALLERY CAPTIONS (Style · Vibe)
   ============================================================ */
.gallery-grid .g-tile {
  display: flex;
  flex-direction: column;
}
.gallery-grid .g-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-grid .g-tile .g-caption {
  display: block;
  padding: 10px 4px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mute);
  text-decoration: none;
}
/* The aspect-ratio rule on .g-tile needs adjusting so caption doesn't break it */
.gallery-grid .g-tile {
  aspect-ratio: auto;
  background: transparent;
}
.gallery-grid .g-tile picture {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
  border-radius: 2px;
}
.gallery-grid .g-tile.wide picture {
  aspect-ratio: 4 / 3;
}
.gallery-grid .g-tile picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

