/* ===========================================================================
   Sai Catering Services — site stylesheet
   Palette: ivory / cream ground, maroon structure, marigold + brass detail.
   No green is used anywhere.
   =========================================================================== */

:root {
  --ivory: #FDFBF5;
  --cream: #F4EDDF;
  --sand: #EADFC8;
  --maroon: #5E1622;
  --maroon-deep: #40101A;
  --maroon-soft: #7A2231;
  --marigold: #E9A13B;
  --saffron: #C8761A;          /* decorative only — 3.35:1, never body text */
  --saffron-ink: #9C540E;      /* text-safe: 5.50:1 on ivory, 4.89:1 on cream */
  --brass: #A8853C;            /* hairlines and rules only */
  --charcoal: #241E1B;
  --stone: #6B5F57;

  --shell: 78rem;
  --pad: 1.25rem;
  --arch: min(46%, 11rem) min(46%, 11rem) 5px 5px / min(26%, 6rem) min(26%, 6rem) 5px 5px;

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.005em;   /* Cormorant is narrow; it does not need tightening */
  line-height: 1.06;
}
p { margin: 0; text-wrap: pretty; }
img { display: block; max-width: 100%; height: auto; }
svg { max-width: 100%; }
.wa-icon-btn svg, .menu-btn svg { width: 20px; height: 20px; flex: none; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--marigold); color: var(--maroon-deep); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--maroon); color: var(--ivory); padding: .75rem 1.25rem;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ------------------------------------------------------------------ layout */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: 4.5rem; }
.section--cream { background: var(--cream); }
.section--maroon { background: var(--maroon-deep); color: var(--ivory); }
.section--tight { padding-block: 3rem 0; }

@media (min-width: 48em) {
  :root { --pad: 2rem; }
  .section { padding-block: 6.5rem; }
}

/* -------------------------------------------------------------- typography */
.eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin: 0 0 1rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .18em;
  color: var(--saffron-ink);
}
.eyebrow::before { content: ''; width: 2rem; height: 1px; background: var(--brass); flex: none; }
.section--maroon .eyebrow { color: var(--marigold); }
.section--maroon .eyebrow::before { background: rgba(233, 161, 59, .7); }

.h1 { font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5rem); font-weight: 600; line-height: 1.02; letter-spacing: -.01em; color: var(--maroon); }
.h2 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.5rem); font-weight: 600; color: var(--maroon); }
.section--maroon .h2, .section--maroon .h1 { color: var(--ivory); }
.h3 { font-size: 1.4rem; font-weight: 600; line-height: 1.25; color: var(--maroon); }

.lead {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.2rem, 1rem + .6vw, 1.6rem);
  line-height: 1.3; color: var(--saffron-ink);
}
.body { font-size: 1rem; line-height: 1.65; color: var(--stone); max-width: 34rem; }
.section--maroon .body { color: rgba(253, 251, 245, .78); }
.muted { color: var(--stone); font-size: .9rem; line-height: 1.6; }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 48px; padding: .9rem 1.5rem;
  font: 500 .9rem/1 var(--sans); letter-spacing: .02em;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background-color .2s, color .2s, transform .12s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--maroon); color: var(--ivory); box-shadow: 0 18px 40px -24px rgba(64,16,26,.55); }
.btn--primary:hover { background: var(--maroon-soft); }
.btn--ghost { color: var(--maroon); box-shadow: inset 0 0 0 1px rgba(168,133,60,.45); background: transparent; }
.btn--ghost:hover { background: var(--cream); }
.btn--light { background: var(--ivory); color: var(--maroon); }
.btn--light:hover { background: var(--cream); }
.btn--gold { background: var(--marigold); color: var(--maroon-deep); }
.btn--gold:hover { background: var(--ivory); }
.btn svg { width: 17px; height: 17px; flex: none; }

.btn-row { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
@media (min-width: 30em) { .btn-row { flex-direction: row; flex-wrap: wrap; } }

.link-wa {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  font-size: .84rem; font-weight: 500; color: var(--maroon);
  text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 4px;
}
.link-wa:hover { color: var(--saffron-ink); }
.link-wa svg { width: 15px; height: 15px; }

/* ------------------------------------------------- the arch (signature device) */
.arch { border-radius: var(--arch); overflow: hidden; }
.frame {
  position: relative; overflow: hidden; background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(168,133,60,.38);
}
.frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.frame--lift { box-shadow: inset 0 0 0 1px rgba(168,133,60,.38), 0 30px 70px -34px rgba(64,16,26,.55); }

.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-43 { aspect-ratio: 4 / 3; }
.ratio-34 { aspect-ratio: 3 / 4; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-wide { aspect-ratio: 2.4 / 1; }
.ratio-sq { aspect-ratio: 1 / 1; }
.ratio-nat { /* aspect-ratio supplied inline from the image's own dimensions */ }

/* placeholder for shots that have not been supplied yet */
.slot { display: grid; place-items: center; background:
  linear-gradient(140deg, #F8F2E4, #ECE1CA); }
.slot__note {
  position: absolute; inset-inline: .75rem; bottom: .75rem;
  background: rgba(64,16,26,.88); color: var(--ivory);
  font-size: .68rem; line-height: 1.35; padding: .45rem .6rem;
}

.rule {
  height: 1px; border: 0;
  background-image: linear-gradient(to right, transparent, var(--brass) 18%, var(--brass) 82%, transparent);
}
.garland { display: flex; align-items: center; justify-content: center; gap: .5rem; }
.garland span:first-child, .garland span:last-child { height: 1px; width: 4rem; background-image: linear-gradient(to right, transparent, var(--brass), transparent); }
.garland i { width: 6px; height: 6px; border-radius: 50%; background: var(--marigold); opacity: .7; }
.garland i.big { width: 10px; height: 10px; opacity: 1; }
@media (min-width: 40em) { .garland span:first-child, .garland span:last-child { width: 7rem; } }

/* --------------------------------------------------- vegetarian mark
   The FSSAI pure-veg symbol is green by definition. This component is the
   single exception to the no-green rule; green appears nowhere else.        */
.veg {
  --veg: #1B7A3D;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  color: var(--veg); white-space: nowrap;
}
.veg i {
  flex: none; display: grid; place-items: center;
  width: 15px; height: 15px; border: 1.6px solid var(--veg); border-radius: 2px;
}
.veg i::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--veg); }
.veg--onDark { --veg: #6FD196; }
.veg--chip { background: #fff; padding: .35rem .6rem; box-shadow: inset 0 0 0 1px rgba(27,122,61,.25); }
.veg--badge { position: absolute; top: .7rem; left: .7rem; z-index: 2; background: rgba(255,255,255,.94); padding: .3rem .5rem; font-size: .62rem; }

/* ------------------------------------------------------------------ icons */
.ic { width: 26px; height: 26px; flex: none; stroke: var(--saffron-ink); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.section--maroon .ic { stroke: var(--marigold); }
.ic-wrap { display: grid; place-items: center; width: 46px; height: 46px; box-shadow: inset 0 0 0 1px rgba(168,133,60,.45); }

/* --------------------------------------------------- call + whatsapp pair */
.contact-pair { display: flex; flex-wrap: wrap; gap: .75rem; }
.contact-pair .btn { flex: 1 1 auto; min-width: 10rem; }
@media (min-width: 30em) { .contact-pair .btn { flex: 0 1 auto; } }

/* ------------------------------------------------------------------ header */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--ivory); border-bottom: 1px solid transparent;
  padding-block: 1rem;
  transition: padding .3s, background-color .3s, border-color .3s;
}
.site-head.is-stuck {
  padding-block: .55rem;
  background: rgba(253, 251, 245, .96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--sand);
}
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 42px; height: 37px; object-fit: contain; transition: width .3s, height .3s; }
.site-head.is-stuck .brand img { width: 36px; height: 32px; }
.brand b { display: block; font: 600 1.05rem/1.1 var(--display); color: var(--maroon); letter-spacing: -.01em; }
@media (max-width: 26em) { .brand b { font-size: .95rem; } .brand img { width: 34px; height: 30px; } }
.brand small { display: none; margin-top: .3rem; font-size: .62rem; letter-spacing: .16em; color: var(--stone); }
@media (min-width: 30em) { .brand small { display: block; } }
@media (min-width: 48em) { .brand b { font-size: 1.15rem; } }

.nav { display: none; }
@media (min-width: 64em) {
  .nav { display: block; }
  .nav ul { display: flex; gap: 1.75rem; }
  .nav a { position: relative; font-size: .86rem; text-decoration: none; color: rgba(36,30,27,.85); }
  .nav a::after { content: ''; position: absolute; left: 0; bottom: -.4rem; height: 1px; width: 0; background: var(--brass); transition: width .25s; }
  .nav a:hover { color: var(--maroon); }
  .nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
  .nav a[aria-current="page"] { color: var(--maroon); }
}

.head-cta { display: flex; align-items: center; gap: .6rem; }
.head-cta .wa-full { display: none; }
.head-phone { display: none; font-size: .82rem; font-weight: 500; color: var(--maroon); white-space: nowrap; }
@media (min-width: 48em) { .head-cta .wa-full { display: inline-flex; padding: .65rem 1.25rem; min-height: 42px; font-size: .82rem; } .wa-icon-btn { display: none !important; } }
@media (min-width: 80em) { .head-phone { display: block; } }

.wa-icon-btn, .menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 0; cursor: pointer; text-decoration: none;
}
.wa-icon-btn { background: var(--maroon); color: var(--ivory); }
.menu-btn { background: transparent; color: var(--maroon); box-shadow: inset 0 0 0 1px rgba(168,133,60,.45); }
@media (min-width: 64em) { .menu-btn { display: none; } }

.mobile-nav { border-top: 1px solid var(--sand); background: var(--ivory); }
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { padding-block: .5rem; }
.mobile-nav li + li { border-top: 1px solid var(--sand); }
.mobile-nav a { display: block; padding: 1rem 0; font-size: 1rem; text-decoration: none; }
.mobile-nav a:hover { color: var(--maroon); }
.mobile-nav p { padding: 1rem 0; font-size: .82rem; color: var(--stone); }

/* -------------------------------------------------------------------- hero
   Content left, photograph right. On desktop the image half-bleeds to the
   viewport edge while the copy stays aligned to the page gutter. On mobile it
   stacks headline -> photograph -> copy, so the food is seen before the prose. */
.hero-split {
  background: var(--ivory);
  display: flex; flex-direction: column;
  max-width: var(--shell); margin-inline: auto;
  padding-inline: var(--pad); padding-top: 2rem;
}
/* display:contents lifts the head/copy up to be siblings of the image, so the
   mobile order (headline -> photo -> copy) can actually be expressed */
.hero-split__content { display: contents; }
.hero-split__media { position: relative; }
.hero-split__media .frame { width: 100%; }

/* mobile order */
.hero-split__head  { order: 1; }
.hero-split__media { order: 2; margin-top: 1.75rem; }
.hero-split__copy  { order: 3; margin-top: 1.75rem; }

.hero-split .veg-row { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.1rem; margin-bottom: 1.1rem; }
.hero-split .ents { font-size: .66rem; letter-spacing: .16em; color: var(--stone); }

@media (min-width: 64em) {
  .hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: stretch;
    min-height: 38rem;
    max-width: none; padding-inline: 0; padding-top: 0;
  }
  .hero-split__content {
    display: flex; flex-direction: column;
    order: 0; justify-content: center;
    padding-block: 4.5rem;
    /* keeps the copy on the same left gutter as every other section */
    padding-left: max(2rem, calc((100vw - 78rem) / 2));
    padding-right: 3.5rem;
  }
  .hero-split__head, .hero-split__copy, .hero-split__media { order: 0; margin-top: 0; }
  .hero-split__copy { margin-top: 1.5rem; }
  .hero-split__media { align-self: stretch; }
  .hero-split__media .frame {
    position: absolute; inset: 0; height: 100%;
    /* arch opening toward the copy; squared off at the viewport edge */
    border-radius: 14rem 0 0 14rem;
    border-left: 1px solid rgba(168,133,60,.5);
    box-shadow: none;
  }
  .hero-split__media .frame::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(168,133,60,.28);
  }
}
@media (min-width: 90em) { .hero-split { min-height: 42rem; } }

.hero { padding-block: 2.5rem 0; }
.hero-grid { display: flex; flex-direction: column; gap: 2rem; }
.hero-fig { max-width: 17rem; margin-inline: auto; position: relative; width: 100%; }
.hero-fig .keystone {
  position: absolute; top: -.6rem; left: 50%; width: 20px; height: 20px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid var(--brass); background: var(--ivory);
}
@media (min-width: 30em) { .hero-fig { max-width: 20rem; } }
@media (min-width: 48em) {
  .hero { padding-block: 4rem 0; }
  .hero-grid { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 2rem; row-gap: 1.5rem; }
  .hero-head { grid-column: 1 / span 6; grid-row: 1; align-self: end; }
  .hero-fig  { grid-column: 8 / span 5; grid-row: 1 / span 2; align-self: center; max-width: 23rem; }
  .hero-copy { grid-column: 1 / span 6; grid-row: 2; align-self: start; }
}

.stats { margin-top: 3.5rem; border-top: 1px solid var(--sand); }
.stats dl { display: grid; }
.stats > dl > div { padding-block: 1.5rem; }
.stats > dl > div + div { border-top: 1px solid var(--sand); }
.stats dt { font: 600 clamp(1.15rem, 1rem + .7vw, 1.6rem)/1.15 var(--display); color: var(--maroon); }
.stats dd { margin-top: .25rem; font-size: .78rem; letter-spacing: .18em; color: var(--stone); }
@media (min-width: 40em) {
  .stats dl { grid-template-columns: repeat(3, 1fr); }
  .stats > dl > div { text-align: center; padding-inline: 1.5rem; }
  .stats > dl > div + div { border-top: 0; border-left: 1px solid var(--sand); }
}

/* dark variant — must follow the base .stats rules to win at equal specificity */
.stats--dark { background: var(--maroon-deep); border-top: 1px solid rgba(168,133,60,.35); margin-top: 0; }
.stats--dark dt { color: var(--ivory); }
.stats--dark dd { color: rgba(253,251,245,.6); }
.stats--dark > dl > div + div { border-color: rgba(168,133,60,.25); }
.stats--dark .ic { stroke: var(--marigold); }
.stats--dark .ic-wrap { box-shadow: inset 0 0 0 1px rgba(168,133,60,.4); margin-inline: auto; margin-bottom: .75rem; }


/* ---------------------------------------------------------------- entities */
.entities-head { max-width: 40rem; margin-inline: auto; text-align: center; }
.entities-head .body { margin-inline: auto; margin-top: 1.25rem; }
.entity-bar { display: flex; align-items: center; margin-top: 3.5rem; }
.entity-bar span { flex: 1; height: 1px; background-image: linear-gradient(to right, transparent, var(--brass), transparent); }
.entity-bar b { padding-inline: 1rem; font: 600 .9rem/1 var(--display); letter-spacing: .06em; color: var(--maroon); text-align: center; }
.entity-grid { display: grid; gap: 2.5rem; align-items: stretch; }
@media (min-width: 40em) { .entity-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.entity { display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; }
.entity .drop { width: 1px; height: 2.5rem; background: rgba(168,133,60,.55); }
.entity .frame { width: 100%; max-width: 19rem; }
.entity h3 { margin-top: 1.5rem; font-size: 1.6rem; }
.entity .partof { margin-top: .5rem; font-size: .68rem; font-weight: 500; letter-spacing: .18em; color: var(--stone); }
.entity .body { margin-top: 1rem; flex: 1; max-width: 20rem; font-size: .93rem; }
.entity .btn { margin-top: 1.5rem; }

/* ------------------------------------------------------------ split blocks */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 48em) {
  .split { grid-template-columns: repeat(12, 1fr); column-gap: 3rem; }
  .split > :first-child { grid-column: 1 / span 5; }
  .split > :last-child  { grid-column: 7 / span 6; }
  .split--flip > :first-child { grid-column: 7 / span 5; order: 2; }
  .split--flip > :last-child  { grid-column: 1 / span 6; order: 1; }
  .split--wide > :first-child { grid-column: 1 / span 6; }
  .split--wide > :last-child  { grid-column: 8 / span 5; }
}

.head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.head-row > div { max-width: 36rem; }

/* ------------------------------------------------------------------- cards */
.cards { display: grid; gap: 2.5rem 1.75rem; margin-top: 3rem; }
@media (min-width: 34em) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card { display: flex; flex-direction: column; }
.card .frame { transition: box-shadow .3s; }
.card:hover .frame { box-shadow: inset 0 0 0 1px rgba(168,133,60,.38), 0 26px 56px -32px rgba(64,16,26,.5); }
.card h3 { margin-top: 0; }
.card .card-title { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1.1rem; }
.card .card-title .ic { margin-top: .15rem; }
.card p { margin-top: .5rem; flex: 1; }

.tiles { display: grid; gap: 1px; background: var(--sand); margin-top: 3rem; }
@media (min-width: 40em) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 64em) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tiles li { background: var(--ivory); padding: 1.75rem; }
.tiles h3 { font-size: 1.12rem; }
.tiles p { margin-top: .6rem; }
.tiles a { display: flex; flex-direction: column; justify-content: space-between; min-height: 128px; height: 100%; padding: 1.75rem; margin: -1.75rem; text-decoration: none; transition: background-color .2s; }
.tiles a:hover { background: var(--cream); }
.tiles a .h3 { font-size: 1.25rem; }
.tiles a .link-wa { margin-top: 1.25rem; color: var(--saffron-ink); text-decoration: none; }

.chips { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }
.chips li { padding: .75rem 1.25rem; background: var(--ivory); font: 400 1rem/1.2 var(--display); color: var(--maroon); box-shadow: inset 0 0 0 1px rgba(168,133,60,.4); }

.ticks { display: grid; gap: .75rem 1.5rem; margin-top: 2rem; }
@media (min-width: 30em) { .ticks { grid-template-columns: 1fr 1fr; } }
.ticks li { display: flex; align-items: flex-start; gap: .65rem; font-size: .93rem; }
.ticks li::before { content: ''; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--marigold); margin-top: .55rem; }
.section--maroon .ticks li { color: rgba(253,251,245,.82); }
.ticks--brass li::before { background: var(--brass); }
.ticks--brass li { color: var(--charcoal); }

/* ----------------------------------------------------------------- gallery */
.gal-rail { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 3rem; padding-bottom: .5rem; scrollbar-width: none; }
.gal-rail::-webkit-scrollbar { display: none; }
.gal-rail > button { flex: 0 0 78%; scroll-snap-align: center; background: none; border: 0; padding: 0; text-align: left; cursor: pointer; }
.gal-rail figcaption { margin-top: .6rem; font-size: .8rem; letter-spacing: .18em; color: var(--stone); }
.gal-grid { display: none; }
@media (min-width: 40em) {
  .gal-rail { display: none; }
  /* every source is ~3:2, so a uniform 3:2 grid crops nothing and leaves no
     ragged gaps — simpler and more reliable than a masonry column layout */
  .gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
  .gal-grid button { position: relative; display: block; width: 100%; overflow: hidden;
                     padding: 0; border: 0; background: none; cursor: pointer; }
  .gal-grid .frame { width: 100%; }
  .gal-grid img { transition: transform .5s; }
  .gal-grid button:hover img { transform: scale(1.04); }
}
@media (min-width: 64em) {
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  /* solid backing, never a gradient: contrast must hold over any photograph */
  .gal-grid .cap { position: absolute; inset-inline: 0; bottom: 0; padding: .7rem 1rem; background: rgba(64,16,26,.9); color: var(--ivory); font-size: .8rem; letter-spacing: .18em; }
}

.lightbox { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 1.25rem; background: rgba(64,16,26,.95); }
.lightbox[hidden] { display: none; }
.lightbox .box { width: 100%; max-width: 36rem; }
.lightbox p { margin-top: 1rem; text-align: center; font-size: .9rem; color: rgba(253,251,245,.8); }
.lightbox .close { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; display: grid; place-items: center; background: none; border: 0; color: var(--ivory); cursor: pointer; box-shadow: inset 0 0 0 1px rgba(168,133,60,.5); }

/* ------------------------------------------------------------ testimonials */
.quotes { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; margin-top: 3rem; padding-bottom: .75rem; scrollbar-width: none; }
.quotes::-webkit-scrollbar { display: none; }
.quotes figure { flex: 0 0 85%; scroll-snap-align: center; background: var(--cream); border-left: 2px solid var(--brass); padding: 1.75rem; }
@media (min-width: 48em) { .quotes figure { flex-basis: calc(33.333% - .85rem); } }
.quotes .mark { font: 600 2.5rem/1 var(--display); color: var(--saffron-ink); opacity: .8; }
.quotes blockquote { margin: .75rem 0 0; font-size: .95rem; line-height: 1.65; color: var(--stone); }
.quotes figcaption { margin-top: 1.25rem; font-size: .75rem; letter-spacing: .18em; color: var(--maroon); }

/* -------------------------------------------------------------------- form */
.form { display: grid; gap: 1.25rem; }
@media (min-width: 40em) { .form { grid-template-columns: 1fr 1fr; } .form .full { grid-column: 1 / -1; } }
.field label { display: block; margin-bottom: .4rem; font-size: .8rem; font-weight: 500; color: var(--charcoal); }
.field .req { color: var(--saffron-ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .75rem 1rem;
  font: 400 .95rem/1.4 var(--sans); color: var(--charcoal);
  background: var(--ivory); border: 1px solid var(--sand); border-radius: 0;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); outline: 2px solid var(--maroon); outline-offset: 1px; }
.form-error { grid-column: 1 / -1; border-left: 2px solid var(--saffron-ink); background: var(--cream); padding: .75rem 1rem; font-size: .88rem; color: var(--maroon); }
.form-error[hidden] { display: none; }
.form .btn { width: 100%; min-height: 52px; }
@media (min-width: 40em) { .form .btn { width: auto; } }

/* --------------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); }
.faq > div + div { border-top: 1px solid var(--sand); }
.faq h3 { margin: 0; }
.faq button {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.25rem 0; background: none; border: 0; cursor: pointer; text-align: left;
  font: 600 1.04rem/1.35 var(--display); color: var(--maroon);
}
.faq .plus { flex: none; display: grid; place-items: center; width: 32px; height: 32px; box-shadow: inset 0 0 0 1px rgba(168,133,60,.5); transition: transform .3s; }
.faq button[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq .ans { padding: 0 3rem 1.5rem 0; }
.faq .ans[hidden] { display: none; }

/* ------------------------------------------------------------ contact card */
.wa-card { position: relative; overflow: hidden; background: var(--maroon-deep); color: var(--ivory); text-align: center; padding: 3rem 1.75rem; box-shadow: inset 0 0 0 1px rgba(168,133,60,.38); }
@media (min-width: 40em) { .wa-card { padding: 4rem 3rem; } }
.wa-card::before, .wa-card::after { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(168,133,60,.3); }
.wa-card::before { width: 13rem; height: 13rem; top: -4rem; right: -4rem; }
.wa-card::after { width: 14rem; height: 14rem; bottom: -5rem; left: -3rem; }
.wa-card h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.3rem); }
.wa-card .lbl { margin-top: .75rem; font-size: .8rem; letter-spacing: .18em; color: var(--marigold); }
.wa-card .num { margin-top: .25rem; font: 600 clamp(1.8rem, 1.3rem + 2.2vw, 3rem)/1.1 var(--display); }
.wa-card .btn { margin-top: 2rem; }

/* ---------------------------------------------------------------- final CTA */
.final { text-align: center; }
.final .h2 { margin-inline: auto; max-width: 46rem; }
.final .body { margin-inline: auto; margin-top: 1.25rem; }
.final .num { margin-top: 1rem; font: 600 clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem)/1.1 var(--display); color: var(--marigold); }
.final .btn { margin-top: 2.25rem; }

/* ------------------------------------------------------------------ footer */
.site-foot { background: var(--maroon-deep); color: var(--ivory); padding-block: 4rem 2.5rem; }
.foot-grid { display: grid; gap: 3rem; }
@media (min-width: 48em) { .foot-grid { grid-template-columns: repeat(12, 1fr); } .fc-brand { grid-column: span 4; } .fc-ent { grid-column: span 2; } .fc-links { grid-column: span 2; } .fc-contact { grid-column: span 4; } }
.foot-grid h2 { font: 500 .68rem/1 var(--sans); letter-spacing: .18em; color: var(--marigold); }
.foot-grid ul { margin-top: 1rem; display: grid; gap: .65rem; }
/* :not(.btn) — otherwise this beats .btn--light/.btn--gold on specificity
   and paints button labels the same colour as their own background */
.foot-grid a:not(.btn) { font-size: .9rem; color: rgba(253,251,245,.75); text-decoration: none; }
.foot-grid a:not(.btn):hover { color: var(--marigold); }
.foot-brand { display: flex; align-items: center; gap: .75rem; }
.foot-brand img { width: 46px; height: 41px; object-fit: contain; }
.foot-brand b { font: 600 1.25rem/1 var(--display); }
.foot-ents { margin-top: .35rem; font-size: .7rem; letter-spacing: .16em; color: rgba(233,161,59,.9); }
.foot-num { font: 600 1.5rem/1.1 var(--display); }
.foot-bottom { margin-top: 2rem; display: flex; flex-direction: column; gap: .5rem; font-size: .78rem; color: rgba(253,251,245,.55); }
@media (min-width: 40em) { .foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ----------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s cubic-bezier(.2,.6,.2,1), transform .75s cubic-bezier(.2,.6,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
