/* ==========================================================================
   The Chaat Project — relaunch design system
   Spec: Build Specification v1.0, August 2026. Tokens sampled from the logo
   files and palette sheet. Gold is reserved for the logo. Ground is paper.
   ========================================================================== */

:root {
  /* Sage green — structure */
  --sage-900: #315421;
  --sage-700: #4D6448;
  --sage-400: #919982;
  --sage-200: #ACAA91;
  /* Terracotta clay — action */
  --clay-900: #9C341D; /* logo colourway only */
  --clay-700: #954B2E;
  --clay-500: #BB6848;
  --clay-300: #C8A891;
  /* Neutrals */
  --paper: #E8E4DC;
  --warm-gray: #D7D2CC;
  --ink: #1F1F1D;
  --white: #FEFEFE;

  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --measure: 680px;
  --radius: 4px;
  --focus-ring: 2px solid var(--clay-500);

  --section-pad: 120px;
  --header-h: 78px;
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay-500); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: var(--focus-ring); outline-offset: 2px; }

/* ---------- Type scale ---------- */
h1, .h1 { font-family: var(--font-serif); font-weight: 600; font-size: 56px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 20px; }
h2, .h2 { font-family: var(--font-serif); font-weight: 600; font-size: 38px; line-height: 1.2; margin: 0 0 16px; }
h3, .h3 { font-family: var(--font-sans); font-weight: 500; font-size: 22px; line-height: 1.3; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 12px; }
small, .small { font-size: 14px; line-height: 1.5; }
.dish { font-family: var(--font-serif); font-weight: 500; font-size: 19px; line-height: 1.4; }
.desc { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 15px; line-height: 1.5; color: var(--sage-700); }
@media (max-width: 768px) {
  h1, .h1 { font-size: 36px; }
  h2, .h2 { font-size: 28px; }
  h3, .h3 { font-size: 20px; }
  body { font-size: 16px; }
}
p { margin: 0 0 1em; max-width: var(--measure); }
.center p { margin-inline: auto; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section-pad); }
.section--band { background: var(--warm-gray); }
.section--dark { background: var(--sage-700); color: var(--paper); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark p { color: var(--paper); }
.section--dark a { color: var(--clay-300); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }
.center { text-align: center; }

/* ---------- Buttons — two labels sitewide ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 500; font-size: 16px;
  padding: 14px 32px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--clay-700); color: var(--paper); }
.btn--primary:hover { background: var(--clay-500); color: var(--white); }
.btn--secondary { background: transparent; color: var(--sage-900); border: 1px solid var(--sage-900); }
.btn--secondary:hover { background: var(--sage-900); color: var(--paper); }
.section--dark .btn--secondary { color: var(--paper); border-color: var(--paper); }
.section--dark .btn--secondary:hover { background: var(--paper); color: var(--sage-900); }
.btn--block { width: 100%; justify-content: center; }
.link-more { color: var(--clay-500); font-weight: 500; }
.link-more:hover { text-decoration: underline; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------- Announcement bar ---------- */
.annbar {
  background: var(--sage-900); color: var(--paper);
  min-height: 40px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; letter-spacing: 0.02em; padding: 6px 16px; text-align: center;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--sage-200);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 150ms ease;
}
.site-header.is-stuck { box-shadow: 0 2px 12px rgba(31,31,29,.08); }
.nav { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); }
.nav__brand img { width: 56px; height: 56px; }
.nav__menu { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; flex: 1; }
.nav__menu a { color: var(--ink); font-size: 15.5px; font-weight: 500; letter-spacing: 0.02em; }
.nav__menu a:hover { color: var(--clay-500); text-decoration: none; }
.nav__menu .nav--planners a { color: var(--sage-400); font-size: 14px; }
.nav__item--has-children { position: relative; }
.nav__drop {
  position: absolute; top: 100%; left: -12px; min-width: 220px;
  background: var(--paper); border: 1px solid var(--sage-200); border-radius: var(--radius);
  padding: 10px 0; display: none; box-shadow: 0 10px 30px rgba(31,31,29,.12);
}
.nav__item--has-children:hover .nav__drop,
.nav__item--has-children:focus-within .nav__drop { display: block; }
.nav__drop a { display: block; padding: 9px 18px; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__wa {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--sage-900); color: var(--sage-900);
}
.nav__wa:hover { background: var(--sage-900); color: var(--paper); }
.nav__toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; }
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav { justify-content: space-between; }
  .nav__menu { flex: none; }
}
/* mobile drawer: same items as desktop */
.nav-drawer {
  position: fixed; inset: 0; z-index: 200; background: var(--paper);
  padding: 24px; overflow-y: auto; display: none;
}
.nav-drawer.is-open { display: block; }
.nav-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.nav-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer nav > a, .nav-drawer nav > span { padding: 12px 0; border-bottom: 1px solid var(--warm-gray); color: var(--ink); font-size: 19px; font-weight: 500; }
.nav-drawer nav > span { color: var(--sage-400); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; border: 0; padding-bottom: 4px; }
.nav-drawer .nav-drawer__sub { padding-left: 16px; font-size: 17px; }
.nav-drawer .btn-row { margin-top: 24px; }

/* ---------- The mihrab arch section header ---------- */
.arch-head { position: relative; }
.arch-head__block {
  position: relative;
  background-color: var(--clay-700);
  min-height: 190px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 190' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1200 V190 H845 C845,142 812,114 772,100 C715,80 655,52 618,14 C608,3 592,3 582,14 C545,52 485,80 428,100 C388,114 355,142 355,190 H0 Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 190' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1200 V190 H845 C845,142 812,114 772,100 C715,80 655,52 618,14 C608,3 592,3 582,14 C545,52 485,80 428,100 C388,114 355,142 355,190 H0 Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.arch-head__block::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--jaali-url);
  background-size: 420px auto; background-repeat: repeat;
  opacity: 0.28; mix-blend-mode: luminosity;
}
.arch-head--sage .arch-head__block { background-color: var(--sage-700); }
.arch-head__glyph { width: 44px; margin: -64px auto 12px; position: relative; z-index: 2; }
.arch-head__eyebrow { text-align: center; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-400); margin: 0 0 6px; }
.arch-head h1, .arch-head h2 { text-align: center; margin-inline: auto; max-width: 820px; padding-inline: 24px; }
.arch-head__lead { text-align: center; margin: 8px auto 0; max-width: var(--measure); padding-inline: 24px; color: var(--sage-700); }

/* marigold divider — replaces horizontal rules */
.marigold-divider { display: flex; justify-content: center; padding: 8px 0; }
.marigold-divider img { width: 34px; opacity: 0.85; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--warm-gray);
  border-radius: var(--radius); padding: 28px; height: 100%;
}
.card--band { background: var(--paper); }
.card h3 { margin-top: 0; }
.card .from-price { color: var(--clay-700); font-weight: 500; }
.card--setup { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--setup .card__art { background: var(--paper); border-bottom: 1px solid var(--warm-gray); aspect-ratio: 16/9; overflow: hidden; display: flex; align-items: flex-end; }
.card--setup .card__art img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.card--setup .card__body { padding: 24px; }
.occasion-card { display: flex; flex-direction: column; gap: 8px; color: inherit; }
.occasion-card:hover { text-decoration: none; border-color: var(--clay-500); }
.occasion-card .meta { color: var(--sage-700); font-size: 14px; }

/* ---------- Proof band ---------- */
.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 768px) { .proof { grid-template-columns: repeat(2, 1fr); } }
.proof__num { font-family: var(--font-serif); font-weight: 600; font-size: 44px; color: var(--sage-900); line-height: 1; }
.proof__label { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-700); margin-top: 8px; }
.section--dark .proof__num { color: var(--paper); }
.section--dark .proof__label { color: var(--sage-200); }

/* ---------- Price band ---------- */
.price-band {
  background: var(--white); border: 1px solid var(--sage-200); border-left: 4px solid var(--clay-700);
  border-radius: var(--radius); padding: 20px 24px; margin-block: 24px; max-width: var(--measure);
}
.price-band strong { font-family: var(--font-serif); font-size: 21px; font-weight: 600; }
.price-band .pending-client { color: var(--clay-500); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--sage-700); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(49,84,33,.55), rgba(31,31,29,.65)); }
.hero__inner { position: relative; z-index: 2; padding-block: 140px 120px; max-width: 760px; }
.hero h1 { color: var(--white); }
.hero__sub { color: var(--paper); font-size: 19px; }
.hero__pa { color: var(--paper); font-size: 17px; opacity: .9; margin-top: 4px; }
@media (max-width: 768px) { .hero__inner { padding-block: 88px 72px; } }

/* ---------- Enquiry form ---------- */
.enquiry { max-width: 760px; }
.enquiry .field { margin-bottom: 18px; }
.enquiry label { display: block; font-weight: 500; font-size: 15px; margin-bottom: 6px; }
.enquiry input[type="text"], .enquiry input[type="tel"], .enquiry input[type="date"],
.enquiry select, .enquiry textarea {
  width: 100%; padding: 12px 14px; font: inherit; color: var(--ink);
  background: var(--white); border: 1px solid var(--sage-200); border-radius: var(--radius);
}
.enquiry input:focus, .enquiry select:focus, .enquiry textarea:focus { outline: var(--focus-ring); outline-offset: 0; }
.enquiry .field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .enquiry .field--row { grid-template-columns: 1fr; } }
.enquiry fieldset { border: 1px solid var(--sage-200); border-radius: var(--radius); padding: 12px 14px; }
.enquiry fieldset legend { font-weight: 500; font-size: 15px; padding-inline: 6px; }
.enquiry .checks { display: flex; gap: 18px; flex-wrap: wrap; }
.enquiry .checks label { display: inline-flex; gap: 8px; align-items: center; font-weight: 400; margin: 0; }
.enquiry-aside { border-left: 4px solid var(--sage-700); padding: 4px 0 4px 20px; }
.enquiry-aside p { margin-bottom: 10px; }
.form-note { color: var(--sage-700); font-size: 14px; }
.form-confirm { background: var(--white); border: 1px solid var(--sage-200); border-radius: var(--radius); padding: 32px; max-width: 640px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sage-700); color: var(--paper); padding-block: 72px 0; margin-top: var(--section-pad); }
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { width: 88px; background: var(--paper); border-radius: 50%; padding: 8px; }
.footer__col h3 { font-size: 15px; color: var(--sage-200); }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__legal { font-size: 14px; color: var(--sage-200); line-height: 1.7; }
.footer__legal .pending-client { color: var(--clay-300); }
.footer__bottom { border-top: 1px solid rgba(232,228,220,.25); padding-block: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--sage-200); }
.footer__bottom a { color: var(--sage-200); }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--sage-900); color: var(--paper);
  display: none; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(31,31,29,.25);
}
.float-wa.is-visible { display: inline-flex; }
.float-wa:hover { background: var(--sage-700); }
@media (max-width: 640px) { .float-wa { bottom: calc(20px + env(safe-area-inset-bottom)); } }

/* ---------- City illustration anchors ---------- */
.city-anchor { position: relative; }
.city-anchor__img {
  position: absolute; right: 0; bottom: 0; width: min(520px, 60%);
  opacity: 0.5; pointer-events: none; mix-blend-mode: multiply;
}
.city-anchor > .container { position: relative; z-index: 2; }

/* ---------- Gallery ---------- */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.gallery-filter button {
  font: inherit; font-size: 14.5px; padding: 8px 20px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--sage-400); color: var(--sage-900);
}
.gallery-filter button[aria-pressed="true"] { background: var(--sage-900); color: var(--paper); border-color: var(--sage-900); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item figure { margin: 0; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.gallery-item figcaption { font-size: 14px; color: var(--sage-700); padding-top: 8px; }

/* ---------- Menu page ---------- */
.menu-section { max-width: 820px; margin-inline: auto; }
.menu-item { padding-block: 10px; border-bottom: 1px solid var(--warm-gray); }
.menu-item:last-child { border-bottom: 0; }
.menu-cols { columns: 2; column-gap: 48px; }
@media (max-width: 768px) { .menu-cols { columns: 1; } }
.menu-item { break-inside: avoid; }

/* ---------- FAQ ---------- */
.faq { max-width: var(--measure); margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--warm-gray); padding-block: 14px; }
.faq summary { font-family: var(--font-serif); font-size: 19px; font-weight: 500; cursor: pointer; }
.faq details p { margin-top: 10px; }

/* ---------- Reviews ---------- */
.review-card cite { display: block; font-style: normal; font-weight: 500; margin-top: 12px; }
.review-card .review-meta { color: var(--sage-700); font-size: 14px; }
blockquote { margin: 0; font-family: var(--font-serif); font-size: 19px; }

/* ---------- Tables (capability sheet) ---------- */
.spec-table { width: 100%; border-collapse: collapse; max-width: var(--measure); }
.spec-table th, .spec-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--warm-gray); font-size: 15.5px; }
.spec-table th { font-weight: 500; color: var(--sage-700); width: 42%; }

/* ---------- Motion — restrained ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--ease-out, cubic-bezier(.16,1,.3,1)), transform 900ms var(--ease-out, cubic-bezier(.16,1,.3,1)); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}

/* ---------- Utilities ---------- */
.measure { max-width: var(--measure); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.pending-client { border-bottom: 1px dashed var(--clay-500); cursor: help; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--white); padding: 10px 16px; z-index: 300; }
.skip-link:focus { left: 8px; top: 8px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ==========================================================================
   Modern component layer — components carried over from the existing site,
   restyled in the relaunch tokens. Legibility first.
   ========================================================================== */

/* Sharper base rhythm */
h1, .h1 { font-size: clamp(38px, 5vw, 60px); }
h2, .h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  display: inline-block; font-size: 13.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay-700); margin-bottom: 10px;
}
.section-head .lead { color: var(--sage-700); font-size: 18px; margin-inline: auto; }

/* ---------- Hero with crossfading photo slider (from the live site) ---------- */
.hero { min-height: min(88vh, 860px); display: flex; align-items: center; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1200ms ease; }
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  background: linear-gradient(100deg, rgba(31,31,29,.82) 0%, rgba(49,84,33,.55) 45%, rgba(31,31,29,.25) 100%);
}
.hero__inner { padding-block: 120px; }
.hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero__sub { font-size: clamp(17px, 1.6vw, 20px); text-shadow: 0 1px 12px rgba(0,0,0,.45); max-width: 620px; }
.hero__pa { font-size: 17px; text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
  background: rgba(232,228,220,.14); border: 1px solid rgba(232,228,220,.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--paper); border-radius: 999px; padding: 8px 18px; font-size: 14px; letter-spacing: 0.04em;
}
.hero__dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(232,228,220,.45); cursor: pointer; }
.hero__dot.is-active { background: var(--paper); }

/* ---------- Venue logo marquee (from the live site) ---------- */
.logo-marquee { overflow: hidden; padding-block: 28px; border-block: 1px solid var(--warm-gray); background: var(--white); }
.logo-marquee__track { display: flex; gap: 72px; width: max-content; animation: marquee 28s linear infinite; align-items: center; }
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee img { height: 44px; width: auto; opacity: .75; filter: grayscale(1); transition: opacity 150ms ease, filter 150ms ease; }
.logo-marquee img:hover { opacity: 1; filter: none; }
.logo-marquee__label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-400); text-align: center; margin: 0 0 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* ---------- Photo occasion cards (imagery from the live site) ---------- */
.card { transition: transform 200ms ease, box-shadow 200ms ease, border-color 150ms ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(31,31,29,.12); }
.occasion-card { padding: 0; overflow: hidden; }
.occasion-card .occasion-card__img { aspect-ratio: 4/3; overflow: hidden; }
.occasion-card .occasion-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.occasion-card:hover .occasion-card__img img { transform: scale(1.04); }
.occasion-card .occasion-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
.occasion-card h3 { font-size: 19px; margin: 0; }
.occasion-card p { font-size: 15.5px; margin: 0; color: var(--ink); }
.occasion-card .from-price { margin-top: 4px; }

/* ---------- Founder block with experience chip (from the live site) ---------- */
.founder-media { position: relative; max-width: 460px; }
.founder-media img { border-radius: 6px; box-shadow: 0 18px 44px rgba(31,31,29,.16); }
.founder-chip {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--sage-900); color: var(--paper);
  border-radius: 6px; padding: 12px 18px; box-shadow: 0 10px 24px rgba(31,31,29,.25);
  font-size: 14px; letter-spacing: .04em;
}
.founder-chip strong { display: block; font-family: var(--font-serif); font-size: 26px; font-weight: 600; line-height: 1.1; }

/* ---------- Video review cards (from the live site's testimonials) ---------- */
.vcard { position: relative; border-radius: 6px; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; border: 0; padding: 0; background: var(--ink); display: block; width: 100%; }
.vcard img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity 200ms ease, transform 400ms ease; }
.vcard:hover img { opacity: 1; transform: scale(1.03); }
.vcard__play {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(232,228,220,.92); color: var(--clay-700); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35); pointer-events: none;
}
.vcard__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; text-align: left;
  background: linear-gradient(180deg, transparent, rgba(31,31,29,.85)); color: var(--paper); font-size: 14px;
}

/* ---------- Lightbox (video + image, from the live site) ---------- */
.lb { position: fixed; inset: 0; z-index: 300; background: rgba(31,31,29,.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lb.is-open { display: flex; }
.lb video, .lb img { max-width: min(920px, 100%); max-height: 86vh; border-radius: 6px; }
.lb__close { position: absolute; top: 18px; right: 22px; background: none; border: 0; color: var(--paper); font-size: 40px; line-height: 1; cursor: pointer; padding: 8px; }

/* ---------- Floating WhatsApp with label (from the live site) ---------- */
.float-wa { width: auto; height: auto; border-radius: 999px; padding: 13px 20px; gap: 10px; font-weight: 500; font-size: 15px; color: var(--paper); }
.float-wa span { display: inline; }
@media (max-width: 640px) { .float-wa span { display: none; } .float-wa { padding: 15px; } }

/* ---------- Gallery polish ---------- */
.gallery-item img { transition: transform 400ms ease; border-radius: 6px; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item figure { cursor: zoom-in; }

/* ---------- Price band, legibility pass ---------- */
.price-band { box-shadow: 0 4px 16px rgba(31,31,29,.06); }
.faq summary { padding-block: 4px; }
.faq details p { color: var(--ink); }
.spec-table th { color: var(--sage-900); font-weight: 600; }
.desc { color: #5C6E57; } /* darker than sage-400 — body-adjacent text must pass contrast */
.footer__legal { color: #C9CDBB; }
.arch-head__lead { color: #4A5A45; font-size: 18px; }

/* ==========================================================================
   Editorial layer v2 — art direction: texture, ornament, editorial type.
   ========================================================================== */

/* -- Dark sections and footer get the jaali texture, like the menu -- */
.section--dark, .site-footer { position: relative; overflow: hidden; }
.section--dark::before, .site-footer::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--jaali-url); background-size: 480px auto;
  opacity: .10; mix-blend-mode: luminosity; pointer-events: none;
}
.section--dark > .container, .site-footer > .container { position: relative; z-index: 1; }

/* -- Marigold border row — the printed menu's bottom border -- */
.marigold-row {
  height: 26px;
  background-image: var(--marigold-url);
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: center;
  opacity: .35;
  margin-block: 8px;
}
.section--dark .marigold-row, .site-footer .marigold-row { filter: invert(1) brightness(1.6); opacity: .28; }

/* -- Editorial headings: serif italic accent + numbered eyebrows -- */
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--clay-700); }
.section--dark h2 em { color: var(--clay-300); }
.hero h1 em { color: #E9C9A8; }
.eyebrow-num {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-700);
}
.eyebrow-num::before { content: attr(data-num); font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 20px; letter-spacing: 0; color: var(--sage-400); }
.eyebrow-num::after { content: ""; width: 48px; height: 1px; background: var(--sage-200); }

/* -- Arch-framed portrait: the mihrab as an image frame -- */
.arch-frame { position: relative; display: inline-block; }
.arch-frame img {
  border-radius: 45% 45% 8px 8px / 32% 32% 8px 8px;
  display: block;
}
.arch-frame::after {
  content: ""; position: absolute; inset: -14px;
  border: 1.5px solid var(--clay-300);
  border-radius: 45% 45% 12px 12px / 32% 32% 12px 12px;
  pointer-events: none;
}
.arch-frame::before {
  content: ""; position: absolute; left: 50%; top: -34px; transform: translateX(-50%);
  width: 30px; height: 34px;
  background-image: var(--marigold-url); background-size: contain; background-repeat: no-repeat; background-position: center;
}

/* -- Hero: taller, editorial composition, scalloped base -- */
.hero { min-height: min(94vh, 940px); }
.hero h1 { font-size: clamp(42px, 5.6vw, 72px); line-height: 1.06; max-width: 900px; }
.hero__inner { max-width: 860px; }
.hero__badge { background: rgba(31,31,29,.35); border-color: rgba(233,201,168,.5); letter-spacing: .08em; text-transform: uppercase; font-size: 12.5px; font-weight: 600; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 26px; z-index: 2;
  background-image: radial-gradient(circle at 50% 0, transparent 12px, var(--paper) 13px);
  background-size: 28px 26px; background-position: center bottom;
}
.hero__meta { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 34px; color: var(--paper); font-size: 14px; letter-spacing: .04em; opacity: .92; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta b { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 17px; color: #E9C9A8; }

/* -- Cohesive warm grade on photography -- */
.occasion-card__img img, .gallery-item img, .vcard img, .founder-media img, .hero__slide img {
  filter: sepia(.08) saturate(1.08) contrast(1.02);
}

/* -- Proof band: hairline separations, serif italic labels -- */
.proof { gap: 0; }
.proof > div { padding: 8px 24px; border-left: 1px solid rgba(232,228,220,.22); }
.proof > div:first-child { border-left: 0; }
.proof__num { font-size: clamp(40px, 4.4vw, 58px); letter-spacing: -0.02em; }
.proof__label { font-family: var(--font-serif); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 16px; color: var(--sage-200); margin-top: 10px; line-height: 1.45; }
@media (max-width: 768px) {
  .proof > div { border-left: 0; border-top: 1px solid rgba(232,228,220,.18); padding-block: 18px; }
  .proof > div:first-child, .proof > div:nth-child(2) { border-top: 0; }
}

/* -- Setup cards: jaali caption band, ornament -- */
.card--setup { border: 1px solid var(--sage-200); }
.card--setup .card__art { position: relative; background: #EFEBE2; aspect-ratio: 16/10; }
.card--setup .card__art::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 14px;
  background-image: var(--marigold-url); background-size: auto 100%; background-repeat: repeat-x; background-position: center; opacity: .3;
}
.card--setup h3 { color: var(--clay-700); font-size: 17px; letter-spacing: .12em; }
.card--setup h3::after { content: ""; display: block; width: 36px; height: 2px; background: var(--clay-300); margin-top: 10px; }

/* -- Occasion cards: caption bar with rule -- */
.occasion-card { border: 1px solid var(--sage-200); background: var(--white); }
.occasion-card h3 { color: var(--sage-900); letter-spacing: .1em; font-size: 16.5px; }
.occasion-card h3::after { content: ""; display: block; width: 36px; height: 2px; background: var(--clay-500); margin-top: 8px; }
.occasion-card .occasion-card__img { position: relative; }
.occasion-card .occasion-card__img::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(232,228,220,.55); border-radius: 2px; pointer-events: none;
}

/* -- Review quote cards: oversized quotation ornament -- */
.review-card { position: relative; padding-top: 44px; }
.review-card::before {
  content: "\201C"; position: absolute; top: 6px; left: 20px;
  font-family: var(--font-serif); font-size: 74px; line-height: 1; color: var(--clay-300);
}
.review-card blockquote { font-size: 20px; line-height: 1.5; }

/* -- Section band alternation with inner hairline frame -- */
.section--band { position: relative; }
.section--band::before {
  content: ""; position: absolute; inset: 20px; border: 1px solid rgba(145,153,130,.25); pointer-events: none;
}
.section--band > * { position: relative; }

/* -- Staggered reveals: the wrapper itself never stays hidden once revealed;
      only its children stagger in. -- */
[data-reveal].grid, [data-reveal].setup-strip, [data-reveal].masonry-strip, [data-reveal].proof {
  opacity: 1; transform: none;
}
[data-reveal].grid > *, [data-reveal].setup-strip > *,
[data-reveal].masonry-strip > *, [data-reveal].proof > * {
  opacity: 0; transform: translateY(24px); transition: opacity 900ms var(--ease-out, cubic-bezier(.16,1,.3,1)), transform 900ms var(--ease-out, cubic-bezier(.16,1,.3,1));
}
[data-reveal].grid.is-in > *, [data-reveal].setup-strip.is-in > *,
[data-reveal].masonry-strip.is-in > *, [data-reveal].proof.is-in > * {
  opacity: 1; transform: none;
}
[data-reveal].is-in > *:nth-child(2) { transition-delay: 130ms; }
[data-reveal].is-in > *:nth-child(3) { transition-delay: 260ms; }
[data-reveal].is-in > *:nth-child(4) { transition-delay: 390ms; }
[data-reveal].is-in > *:nth-child(5) { transition-delay: 520ms; }
[data-reveal].is-in > *:nth-child(6) { transition-delay: 650ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* -- Buttons: editorial spacing + motion -- */
.btn { letter-spacing: .06em; text-transform: uppercase; font-size: 14px; font-weight: 600; padding: 15px 34px; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(149,75,46,.35); }
.btn { transition: background 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease; }

/* -- Header refinement: wordmark next to the flower -- */
.nav__brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand:hover { text-decoration: none; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1.05; }
.nav__wordmark b { font-family: var(--font-sans); font-weight: 600; letter-spacing: .32em; font-size: 11px; color: var(--sage-900); }
.nav__wordmark i { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 19px; color: var(--clay-700); letter-spacing: .01em; }
.annbar { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

/* -- Footer: marigold row above the bottom bar -- */
.footer__bottom { position: relative; }

/* -- Arch header: gradient depth + more presence -- */
.arch-head__block { min-height: 220px; background-image: linear-gradient(160deg, var(--clay-700), #7C3A20); }
.arch-head--sage .arch-head__block { background-image: linear-gradient(160deg, var(--sage-700), #3A4C36); }
@media (max-width: 768px) { .arch-head__block { min-height: 150px; } }
.arch-head h1, .arch-head h2 { font-size: clamp(30px, 4vw, 48px); }

/* -- Themed setups: scroll-snap strip on the home page -- */
.setup-strip { display: grid; grid-auto-flow: column; grid-auto-columns: min(360px, 78vw); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: thin; }
.setup-strip > * { scroll-snap-align: start; }
.setup-strip::-webkit-scrollbar { height: 8px; }
.setup-strip::-webkit-scrollbar-thumb { background: var(--sage-200); border-radius: 99px; }

/* -- Hill weddings: cinematic full-bleed section -- */
.cinema { position: relative; overflow: hidden; color: var(--paper); }
.cinema__bg { position: absolute; inset: 0; }
.cinema__bg img { width: 100%; height: 100%; object-fit: cover; }
.cinema__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,31,29,.88) 0%, rgba(31,31,29,.55) 55%, rgba(31,31,29,.25) 100%); }
.cinema > .container { position: relative; z-index: 2; padding-block: clamp(88px, 12vw, 150px); }
.cinema h2 { color: var(--paper); font-size: clamp(32px, 4.2vw, 52px); }
.cinema p { color: var(--paper); }
.cinema .venue-list { display: flex; gap: 12px 28px; flex-wrap: wrap; margin: 26px 0 8px; padding: 0; list-style: none; }
.cinema .venue-list li { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: #E9C9A8; display: inline-flex; align-items: center; gap: 10px; }
.cinema .venue-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--clay-500); }
.cinema__caption { position: absolute; right: 24px; bottom: 18px; z-index: 2; font-size: 13px; color: rgba(232,228,220,.85); letter-spacing: .04em; }

/* -- Masonry gallery strip -- */
.masonry-strip { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 18px; }
.masonry-strip .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.masonry-strip .gallery-item:nth-child(4) { grid-row: span 2; }
.masonry-strip .gallery-item figure, .masonry-strip .gallery-item img { height: 100%; }
.masonry-strip .gallery-item figure { position: relative; margin: 0; }
.masonry-strip .gallery-item img { object-fit: cover; aspect-ratio: auto; }
.masonry-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(31,31,29,.78)); color: var(--paper); font-size: 13.5px;
}
@media (max-width: 900px) { .masonry-strip { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }

/* -- Enquiry section: form + reassurance panel -- */
.enquiry-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .enquiry-split { grid-template-columns: 1fr; } }
.reassure { border-left: 3px solid var(--clay-500); padding-left: 24px; }
.reassure h3 { font-size: 16px; }
.reassure li { margin-bottom: 10px; }

/* -- Mobile header: hide wordmark on tight widths, compact CTA -- */
@media (max-width: 560px) {
  .nav__wordmark { display: none; }
  .nav__actions .btn { padding: 11px 20px; font-size: 13px; white-space: nowrap; }
  .hero__badge { font-size: 11.5px; }
}

/* -- Overflow guards + tight-width nav -- */
body { overflow-x: hidden; }
@media (max-width: 480px) {
  .nav { gap: 10px; }
  .nav__actions { gap: 8px; }
  .nav__wa { width: 40px; height: 40px; }
  .container { padding-inline: 18px; }
}
/* SVG logos have no intrinsic ratio — give them a box */
.logo-marquee img { height: 40px; width: auto; min-width: 90px; max-width: 150px; object-fit: contain; }

/* ==========================================================================
   Card depth layer — cards become editorial objects, not white boxes.
   ========================================================================== */

/* -- Shared depth: layered shadow + inner hairline ring -- */
.card {
  box-shadow: 0 1px 2px rgba(31,31,29,.06), 0 8px 20px -8px rgba(31,31,29,.14);
  border-color: rgba(172,170,145,.55);
}
.card:hover {
  box-shadow: 0 2px 6px rgba(31,31,29,.08), 0 22px 46px -14px rgba(31,31,29,.28);
  transform: translateY(-6px);
}

/* ==========  OCCASION CARDS — full-bleed image, text on scrim  ========== */
.occasion-card {
  position: relative; display: block; padding: 0; overflow: hidden;
  aspect-ratio: 3/4; min-height: 380px; border: 0; border-radius: 6px;
  background: var(--sage-900);
  isolation: isolate;
}
.occasion-card .occasion-card__img { position: absolute; inset: 0; aspect-ratio: auto; }
.occasion-card .occasion-card__img::after { content: none; }
.occasion-card .occasion-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.3,1); }
.occasion-card:hover .occasion-card__img img { transform: scale(1.07); }

/* scrim: dark at the base, transparent at the top */
.occasion-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(178deg, rgba(31,31,29,0) 26%, rgba(31,31,29,.55) 56%, rgba(24,32,20,.93) 100%);
  transition: opacity 300ms ease;
}
/* thin ornamental keyline inside the card edge */
.occasion-card::after {
  content: ""; position: absolute; inset: 12px; z-index: 3; pointer-events: none;
  border: 1px solid rgba(232,228,220,.28); border-radius: 3px;
  transition: border-color 250ms ease, inset 250ms ease;
}
.occasion-card:hover::after { border-color: rgba(232,228,220,.6); }

.occasion-card .occasion-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 7px;
  padding: 26px 26px 28px;
  color: var(--paper);
  transform: translateY(var(--card-shift, 34px));
  transition: transform 380ms cubic-bezier(.2,.7,.3,1);
}
.occasion-card:hover .occasion-card__body { --card-shift: 0px; }
.occasion-card h3 { color: var(--paper); font-size: 19px; letter-spacing: .1em; margin: 0; }
.occasion-card h3::after { background: var(--clay-500); width: 42px; height: 2px; margin-top: 10px; }
.occasion-card p {
  color: rgba(232,228,220,.9); font-size: 15px; margin: 0; max-width: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 320ms ease 60ms, transform 320ms ease 60ms;
}
.occasion-card:hover p { opacity: 1; transform: none; }
.occasion-card .meta {
  color: #E9C9A8; font-family: var(--font-serif); font-style: italic; font-size: 16px; letter-spacing: 0;
}
/* price becomes a floating chip at the top of the card */
.occasion-card .from-price {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  background: rgba(149,75,46,.94); color: var(--paper);
  border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; box-shadow: 0 6px 16px rgba(31,31,29,.35);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.occasion-card .from-price .pending-client { border-bottom-color: rgba(232,228,220,.7); color: inherit; }
/* arrow affordance */
.occasion-card .occasion-card__body::after {
  content: "→"; position: absolute; right: 26px; bottom: 28px;
  font-size: 20px; color: #E9C9A8; opacity: 0; transform: translateX(-8px);
  transition: opacity 300ms ease 120ms, transform 300ms ease 120ms;
}
.occasion-card:hover .occasion-card__body::after { opacity: 1; transform: none; }
@media (hover: none) {
  .occasion-card .occasion-card__body { --card-shift: 0px; }
  .occasion-card p { opacity: 1; transform: none; }
}

/* ==========  SETUP CARDS — arch-topped art on jaali ground  ========== */
.card--setup {
  border-radius: 6px; overflow: hidden; background: var(--white);
  border: 1px solid rgba(172,170,145,.6);
}
.card--setup .card__art {
  position: relative; aspect-ratio: 4/3; background-color: #EFE9DC;
  background-image: var(--jaali-url); background-size: 300px auto;
  display: block; overflow: hidden;
}
/* the illustration sits inside a mihrab arch cut out of the jaali ground */
.card--setup .card__art img {
  position: absolute; inset: 14px 14px 0;
  width: calc(100% - 28px); height: calc(100% - 14px);
  object-fit: cover; object-position: center bottom;
  background: #F3EFE6;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 220' preserveAspectRatio='none'%3E%3Cpath d='M150 4c26 34 62 52 96 58 18 3 32 18 32 38v120H22V100c0-20 14-35 32-38 34-6 70-24 96-58z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 220' preserveAspectRatio='none'%3E%3Cpath d='M150 4c26 34 62 52 96 58 18 3 32 18 32 38v120H22V100c0-20 14-35 32-38 34-6 70-24 96-58z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  transition: transform 700ms cubic-bezier(.2,.7,.3,1);
}
.card--setup:hover .card__art img { transform: scale(1.04); }
.card--setup .card__art::after {
  height: 12px; opacity: .38;
}
.card--setup .card__body { padding: 24px 26px 28px; position: relative; }
.card--setup h3 { margin-bottom: 10px; }
.card--setup p { font-size: 15px; }
.card--setup .desc { margin-top: 10px; }

/* ==========  REVIEW CARDS — paper stock with rules  ========== */
.review-card {
  background: var(--white);
  border: 1px solid rgba(172,170,145,.55);
  border-top: 3px solid var(--clay-500);
  border-radius: 4px;
  padding: 40px 28px 26px;
}
.review-card::before { top: 10px; left: 24px; font-size: 82px; color: rgba(200,168,145,.55); }
.review-card blockquote { font-size: 19.5px; line-height: 1.55; position: relative; z-index: 1; }
.review-card cite { padding-top: 14px; border-top: 1px solid var(--warm-gray); margin-top: 16px; }

/* ==========  VIDEO CARDS — deeper frame  ========== */
.vcard { border-radius: 6px; box-shadow: 0 2px 6px rgba(31,31,29,.1), 0 18px 36px -14px rgba(31,31,29,.4); }
.vcard::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(232,228,220,.3); border-radius: 3px; pointer-events: none;
}
.vcard__play { transition: transform 250ms ease, background 200ms ease; }
.vcard:hover .vcard__play { transform: scale(1.1); background: var(--paper); }

/* ==========  SPEC / PLAIN CARDS — lift off the paper  ========== */
.card:not(.occasion-card):not(.card--setup):not(.review-card) {
  border-radius: 6px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(160deg, rgba(200,168,145,.55), rgba(172,170,145,.25)) border-box;
  border: 1px solid transparent;
}
.card h3 + p { margin-top: 0; }

/* setup strip cards need a fixed height so the arch tops align */
.setup-strip .card--setup { display: flex; flex-direction: column; }
.setup-strip .card--setup .card__body { flex: 1; }

/* ==========================================================================
   Work mosaic — adapted from the live site's .work-tile feed, restyled
   in the relaunch tokens (sage/clay/paper, arch keyline, serif captions).
   ========================================================================== */
.work-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 168px; gap: 16px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; } }

.work-tile {
  position: relative; border: 0; padding: 0; margin: 0; cursor: pointer;
  border-radius: 6px; overflow: hidden; background: #EFE9DD;
  box-shadow: 0 1px 3px rgba(31,31,29,.1), 0 14px 30px -14px rgba(31,31,29,.35);
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.work-tile:hover { transform: translateY(-4px); box-shadow: 0 3px 8px rgba(31,31,29,.12), 0 26px 48px -18px rgba(31,31,29,.45); }
.work-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.3,1); }
.work-tile:hover img { transform: scale(1.06); }
.work-tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(24,32,20,.85) 0%, rgba(24,32,20,.15) 45%, rgba(24,32,20,0) 70%);
  opacity: .55; transition: opacity 300ms ease;
}
.work-tile:hover::after { opacity: 1; }
/* inner keyline, consistent with the other cards */
.work-tile__frame {
  position: absolute; inset: 10px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(232,228,220,.3); border-radius: 3px; transition: border-color 250ms ease;
}
.work-tile:hover .work-tile__frame { border-color: rgba(232,228,220,.6); }

.work-tile__cap {
  position: absolute; left: 18px; right: 18px; bottom: 15px; z-index: 3; text-align: left;
  color: var(--paper); font-family: var(--font-serif); font-size: 16px; line-height: 1.25;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  transform: translateY(6px); opacity: .95; transition: transform 300ms ease, opacity 300ms ease;
}
.work-tile:hover .work-tile__cap { transform: none; opacity: 1; }
.work-tile__type {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper); background: rgba(49,84,33,.82); padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.work-tile__view {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(232,228,220,.94); color: var(--clay-700);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8); transition: opacity 250ms ease, transform 250ms ease;
}
.work-tile:hover .work-tile__view { opacity: 1; transform: scale(1); }
.work-tile__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 56px; height: 56px; border-radius: 50%; padding-left: 3px;
  background: rgba(232,228,220,.94); color: var(--clay-700);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.4); transition: transform 250ms ease, background 200ms ease;
}
.work-tile--video:hover .work-tile__play { transform: translate(-50%,-50%) scale(1.1); background: var(--paper); }
.work-tile--video::after { opacity: .7; }

/* size variants — the editorial rhythm of the mosaic */
.work-tile--big  { grid-column: span 2; grid-row: span 2; }
.work-tile--wide { grid-column: span 2; }
.work-tile--tall { grid-row: span 2; }
.work-tile--big .work-tile__cap { font-size: 22px; }
@media (max-width: 900px) {
  .work-tile--big { grid-column: span 2; grid-row: span 2; }
  .work-tile--wide { grid-column: span 2; grid-row: span 1; }
  .work-tile--tall { grid-row: span 1; }
  .work-tile--big .work-tile__cap { font-size: 17px; }
}
.work-tile.is-hidden { display: none; }

/* filter row, adapted from the live gallery filter */
.work-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }
.work-filter button {
  font: inherit; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 999px; cursor: pointer;
  background: transparent; border: 1px solid var(--sage-400); color: var(--sage-900);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.work-filter button:hover { border-color: var(--clay-500); color: var(--clay-700); }
.work-filter button[aria-pressed="true"] { background: var(--sage-900); color: var(--paper); border-color: var(--sage-900); }
.section--dark .work-filter button { border-color: rgba(232,228,220,.4); color: var(--paper); }
.section--dark .work-filter button[aria-pressed="true"] { background: var(--paper); color: var(--sage-900); border-color: var(--paper); }

/* -- Occasion card: anchor the price chip to the CARD, not the text block --
   The body must sit in normal flow (pushed down by flex) so that the
   absolutely-positioned chip resolves against .occasion-card itself. */
.occasion-card { display: flex; flex-direction: column; justify-content: flex-end; }
.occasion-card .occasion-card__body { position: relative; left: auto; right: auto; bottom: auto; }
.occasion-card .from-price { top: 20px; right: 20px; left: auto; bottom: auto; }
.occasion-card h3 { padding-right: 0; }
