/* ==========================================================================
   Anil Caterers — design system
   Tokens first. Never hardcode a brand colour below this block.
   Palette derived from logo.jpeg. Contrast verified to WCAG AA.
   ========================================================================== */

:root {
  /* Brand */
  --brand: #D0181F;
  --brand-dark: #A61218;
  --brand-2: #F5921E;
  --brand-2-soft: #FDEBD6;
  --brand-2-ink: #9A5A08;

  /* Neutrals */
  --ink: #191E24;
  --ink-soft: #252C35;
  --body: #6D625F;
  --base: #FBF2EC;
  --surface: #FFFFFF;
  --divider: rgba(25, 30, 36, 0.10);
  --divider-dark: rgba(255, 255, 255, 0.10);

  /* Spacing scale — use these, not arbitrary values */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Elevation — shadows tinted with brand red, never flat black */
  --e-elevated: 0 1px 2px rgba(208, 24, 31, .04), 0 4px 12px rgba(208, 24, 31, .06);
  --e-floating: 0 2px 4px rgba(208, 24, 31, .05), 0 12px 32px rgba(208, 24, 31, .10);

  /* Motion */
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-out: cubic-bezier(.4, 0, .2, 1);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--base);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}

.h1, h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.h2, h2 { font-size: clamp(2rem, 4vw, 3rem); }
.h3, h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--s-4); }

.lead { font-size: 1.25rem; line-height: 1.6; }

a { color: inherit; }

.muted { color: var(--body); }
.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   Accessibility primitives
   -------------------------------------------------------------------------- */

.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-link {
  position: absolute; left: var(--s-4); top: -100px;
  z-index: 200; padding: var(--s-3) var(--s-5);
  background: var(--brand); color: #fff;
  border-radius: var(--radius-pill); font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--ease-out);
}
.skip-link:focus-visible { top: var(--s-4); }

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - var(--s-6), 1280px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container { width: min(100% - var(--s-8), 1280px); }
}

.section { padding-block: clamp(64px, 10vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* Dark sections: two radial gradients + SVG noise, never a flat fill. */
.section--dark {
  position: relative;
  background:
    radial-gradient(80% 60% at 15% 0%, rgba(208, 24, 31, .16), transparent 60%),
    radial-gradient(60% 50% at 90% 100%, rgba(245, 146, 30, .12), transparent 65%),
    var(--ink);
  color: rgba(255, 255, 255, .78);
  isolation: isolate;
}
.section--dark::after {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.section--dark :is(h1, h2, h3, h4) { color: #fff; }

.section__head {
  max-width: 760px; margin-inline: auto; text-align: center;
  margin-bottom: var(--s-8);
}
.section__head--left { margin-inline: 0; text-align: left; }
.section__head p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Eyebrow chip
   -------------------------------------------------------------------------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-pill);
  background: var(--brand-2-soft);
  color: var(--brand-2-ink);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: var(--s-4);
}
.section--dark .eyebrow {
  background: rgba(255, 255, 255, .08);
  color: var(--brand-2);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4) var(--s-6);
  border: 0; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease-spring),
              background-color .2s var(--ease-out),
              color .2s var(--ease-out),
              box-shadow .2s var(--ease-out);
}
.btn__icon {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  font-size: 1rem; line-height: 1;
  transition: transform .25s var(--ease-spring);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__icon { transform: translateX(3px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }

.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--divider);
}
.btn--ghost .btn__icon { background: var(--brand-2-soft); color: var(--brand-2-ink); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand); color: var(--brand); }

.btn--on-dark {
  background: rgba(255, 255, 255, .1); color: #fff;
  box-shadow: inset 0 0 0 1.5px var(--divider-dark);
}
.btn--on-dark:hover { background: rgba(255, 255, 255, .18); }

.btn--block { width: 100%; justify-content: center; }

/* Inline text link with an animated underline */
.link-accent {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .25s var(--ease-out);
}
.link-accent:hover { background-size: 0% 1.5px; }
.section--dark .link-accent {
  color: var(--brand-2);
  background-image: linear-gradient(var(--brand-2), var(--brand-2));
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--s-6);
  border: 1px solid var(--divider);
}
.card--elevated { box-shadow: var(--e-elevated); border-color: transparent; }
.card--floating { box-shadow: var(--e-floating); border-color: transparent; }
.card > :last-child { margin-bottom: 0; }

.section--dark .card {
  background: var(--ink-soft);
  border-color: var(--divider-dark);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   Media — gradient overlay + brand tint layer
   -------------------------------------------------------------------------- */

.media {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(25, 30, 36, .55), transparent 55%);
}
.media--plain::after { display: none; }
.media--tint::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--brand); opacity: .06; mix-blend-mode: multiply;
}

/* --------------------------------------------------------------------------
   Scroll reveal — additive only. Content is visible without JS.
   -------------------------------------------------------------------------- */

.reveal { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ==========================================================================
   Shared components — header, footer, page hero, accordion
   ========================================================================== */

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding-block: var(--s-4);
  background: transparent;
  transition: background-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.site-header.is-stuck {
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(25, 30, 36, .18);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
}
.site-header__actions { display: flex; align-items: center; gap: var(--s-3); }
.site-header__actions .btn { display: none; }
@media (min-width: 640px) { .site-header__actions .btn { display: inline-flex; } }

.brand { display: inline-flex; align-items: center; gap: var(--s-3); text-decoration: none; }
/* The badge holds the chef-hat mark only. The full logo lockup already spells
   "Anil Caterers", so it would stutter against the wordmark beside it. */
.brand img {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: contain; background: #fff; padding: 9px 7px;
  flex: none;
}
.brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; color: #fff; letter-spacing: -0.02em;
}

.nav { display: none; gap: var(--s-6); }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav__link {
  position: relative; padding-block: var(--s-2);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: rgba(255, 255, 255, .82); text-decoration: none;
  transition: color .2s var(--ease-out);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--brand-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brand-2); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: grid; place-items: center;
  width: 44px; height: 44px; padding: 0;
  background: rgba(255, 255, 255, .1); color: #fff;
  border: 0; border-radius: 50%; cursor: pointer;
  transition: transform .25s var(--ease-spring), background-color .2s var(--ease-out);
}
.nav-toggle:hover { transform: scale(1.06); background: rgba(255, 255, 255, .18); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-content: center; gap: var(--s-5);
  background: var(--ink); text-align: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility .3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.75rem;
  color: #fff; text-decoration: none;
  transition: color .2s var(--ease-out);
}
.mobile-menu a:hover { color: var(--brand-2); }
.mobile-menu__close {
  position: absolute; top: var(--s-5); right: var(--s-5);
  display: grid; place-items: center; width: 48px; height: 48px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .1); color: #fff; font-size: 1.5rem;
  transition: transform .25s var(--ease-spring), background-color .2s var(--ease-out);
}
.mobile-menu__close:hover { background: var(--brand); transform: rotate(90deg); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  display: grid; align-items: end;
  min-height: 440px;
  padding-block: var(--s-10) var(--s-8);
  background: var(--ink);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(25, 30, 36, .92) 0%, rgba(25, 30, 36, .62) 60%, rgba(25, 30, 36, .40) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: var(--s-3); }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  list-style: none; margin: 0; padding: 0;
  color: rgba(255, 255, 255, .72); font-size: .95rem;
}
.breadcrumb a { color: rgba(255, 255, 255, .72); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-2); }
.breadcrumb li + li::before { content: "/"; margin-right: var(--s-2); opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--brand-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(255, 255, 255, .7);
  padding-block: var(--s-9) var(--s-6);
}
.site-footer h3 { color: #fff; font-size: 1.125rem; margin-bottom: var(--s-5); }
.site-footer__grid {
  display: grid; gap: var(--s-7);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.site-footer a {
  color: rgba(255, 255, 255, .7); text-decoration: none;
  transition: color .2s var(--ease-out);
}
.site-footer a:hover { color: var(--brand-2); }
.site-footer .brand__name { font-size: 1.15rem; }
.site-footer__bottom {
  margin-top: var(--s-8); padding-top: var(--s-5);
  border-top: 1px solid var(--divider-dark);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-size: .95rem;
}

/* Agency credit — OtivaxAI. Sits below the legal line, deliberately quieter
   than the client's own brand marks above it. */
.site-footer__credit {
  margin: var(--s-5) 0 0; padding-top: var(--s-5);
  border-top: 1px solid var(--divider-dark);
  text-align: center; font-size: .85rem; letter-spacing: .02em;
  color: rgba(255, 255, 255, .45);
}
.site-footer__credit a {
  color: var(--brand-2); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid transparent;
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.site-footer__credit a:hover { color: #fff; border-bottom-color: var(--brand-2); }
.social { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.social a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; background: rgba(255, 255, 255, .08);
  transition: transform .25s var(--ease-spring), background-color .2s var(--ease-out);
}
.social a:hover { transform: translateY(-2px); background: var(--brand); color: #fff; }
.social svg { width: 18px; height: 18px; }

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: var(--s-2); }
.acc-item { border-bottom: 1px solid var(--divider); }
.section--dark .acc-item {
  border-color: var(--divider-dark); border-bottom: 0;
  background: var(--ink-soft); border-radius: var(--radius);
  margin-bottom: var(--s-3);
}
.acc-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-5) 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.125rem;
  color: var(--ink);
  transition: color .2s var(--ease-out);
}
.acc-item > summary:hover { color: var(--brand); }
.section--dark .acc-item > summary { color: #fff; padding-inline: var(--s-5); }
.section--dark .acc-item > summary:hover { color: var(--brand-2); }
.acc-item > summary::-webkit-details-marker { display: none; }
.acc-item > summary::after {
  content: "+"; flex: none;
  display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--brand-2-soft); color: var(--brand-2-ink);
  font-size: 1.25rem; line-height: 1;
  transition: transform .25s var(--ease-spring);
}
.acc-item[open] > summary::after { content: "\2212"; transform: rotate(180deg); }
.acc-item__body { padding: 0 0 var(--s-5); }
.acc-item__body > :last-child { margin-bottom: 0; }
.section--dark .acc-item__body { padding-inline: var(--s-5); }

/* ==========================================================================
   Page sections
   ========================================================================== */

/* ---------- Home hero ---------- */
.hero {
  position: relative; display: grid; align-items: center;
  min-height: 92vh; padding-block: var(--s-10) var(--s-9);
  background: var(--ink); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(25,30,36,.95) 0%, rgba(25,30,36,.78) 45%, rgba(25,30,36,.45) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero__copy { max-width: 760px; }
.hero h1 { color: #fff; }
.hero__lead { color: rgba(255,255,255,.84); max-width: 580px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-block: var(--s-6); }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-7);
  margin-top: var(--s-7); padding-top: var(--s-6);
  border-top: 1px solid var(--divider-dark);
}
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.25rem; line-height: 1; color: #fff;
}
.stat__label { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ---------- Two-column split ---------- */
.split { display: grid; gap: var(--s-8); align-items: center; }
@media (min-width: 992px) { .split { grid-template-columns: 1fr 1fr; gap: var(--s-9); } }
.split > :last-child > :last-child { margin-bottom: 0; }

.checklist { list-style: none; margin: 0 0 var(--s-6); padding: 0; display: grid; gap: var(--s-3); }
.checklist li { display: flex; gap: var(--s-3); align-items: flex-start; }
.checklist li::before {
  content: "\2713"; flex: none;
  display: grid; place-items: center; width: 26px; height: 26px;
  border-radius: 50%; background: var(--brand); color: #fff;
  font-size: .8rem; margin-top: 3px;
}
.section--dark .checklist li::before { background: var(--brand-2); color: var(--ink); }

/* ---------- Card grids ---------- */
.svc-grid, .pkg-grid {
  display: grid; gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.svc-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.svc-card .media { border-radius: var(--radius) var(--radius) 0 0; aspect-ratio: 4 / 3; }
.svc-card__body { padding: var(--s-5); }
.svc-card__body p { margin: 0; }
.svc-card__body h3 { margin-bottom: var(--s-2); }
a.svc-card { text-decoration: none; transition: transform .25s var(--ease-spring); }
a.svc-card:hover { transform: translateY(-4px); }
a.svc-card img { transition: transform .5s var(--ease-out); }
a.svc-card:hover img { transform: scale(1.05); }

/* ---------- Process ---------- */
.process { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.process__num {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--brand); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  margin-bottom: var(--s-4);
}

/* ---------- Showcase band ---------- */
.showcase {
  position: relative; min-height: 460px;
  display: grid; align-items: end;
  background: var(--ink); overflow: hidden;
}
.showcase__bg { position: absolute; inset: 0; }
.showcase__bg img { width: 100%; height: 100%; object-fit: cover; }
.showcase__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(25,30,36,.9), rgba(25,30,36,.25) 70%);
}
.showcase .container { position: relative; z-index: 1; padding-block: var(--s-8); }
.showcase h2, .showcase p { color: #fff; }
.showcase p { color: rgba(255,255,255,.82); max-width: 620px; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.quote-card { display: flex; flex-direction: column; gap: var(--s-4); }
.quote-card__stars { color: var(--brand-2); letter-spacing: .15em; }
.quote-card__text { font-size: 1.05rem; margin: 0; }
.quote-card__who { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.quote-card__avatar {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  border-radius: 50%; background: var(--brand-2-soft); color: var(--brand-2-ink);
  font-family: var(--font-display); font-weight: 700;
}
.quote-card__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0; line-height: 1.2; }
.quote-card__role { font-size: .9rem; margin: 0; }
.is-placeholder .quote-card__text { font-style: italic; opacity: .7; }

/* ---------- Gallery strip ---------- */
.gallery-strip { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery-strip a { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery-strip .media { aspect-ratio: 1 / 1; }
.gallery-strip img { transition: transform .5s var(--ease-out); }
.gallery-strip a:hover img { transform: scale(1.06); }

/* Six-up variant: auto-fit lands on five columns at desktop width, which
   leaves a single orphan tile on the second row. Fixed tracks keep the strip
   a clean 2x3 / 3x2 grid at every breakpoint. */
.gallery-strip--six { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery-strip--six { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Packages ---------- */
.pkg-card { display: flex; flex-direction: column; gap: var(--s-4); }
.pkg-card__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.75rem; color: var(--brand); line-height: 1.1;
}
.pkg-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.pkg-card ul li { display: flex; gap: var(--s-3); }
.pkg-card ul li::before { content: "\2713"; color: var(--brand); font-weight: 700; flex: none; }
.pkg-card .btn { margin-top: auto; justify-content: center; }
.pkg-card--featured { box-shadow: var(--e-floating); position: relative; }
.pkg-card--featured::before {
  content: "Most popular"; position: absolute; top: 0; right: var(--s-5);
  transform: translateY(-50%);
  padding: var(--s-1) var(--s-3); border-radius: var(--radius-pill);
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ---------- CTA row under a section ---------- */
.section__foot {
  margin-top: var(--s-7); text-align: center;
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  align-items: center; justify-content: center;
}

/* ---------- Services: circular category cards ---------- */
/* Locked to 4 per row so the eight categories read as 4 + 4, matching the
   reference. auto-fit would fit 5 across at 1920px and break the pairing. */
.svc-circle-grid {
  display: grid; gap: var(--s-7) var(--s-5);
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
@media (max-width: 900px) { .svc-circle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-circle-grid { grid-template-columns: 1fr; } }
/* Keep the circles on one baseline when a title wraps to two lines. */
.svc-circle h3 { min-height: 2.5em; display: flex; align-items: center; justify-content: center; }
.svc-circle { text-decoration: none; display: block; }
.svc-circle .media {
  width: 180px; height: 180px; margin: 0 auto var(--s-4);
  border-radius: 50%; aspect-ratio: 1;
  box-shadow: var(--e-elevated);
}
.svc-circle .media::after { border-radius: 50%; }
.svc-circle img { transition: transform .5s var(--ease-out); }
.svc-circle:hover img { transform: scale(1.08); }
.svc-circle h3 { margin-bottom: var(--s-2); transition: color .2s var(--ease-out); }
.svc-circle:hover h3 { color: var(--brand); }
.svc-circle p { margin: 0; font-size: 1rem; }

/* ---------- Services: the eleven service styles ---------- */
.style-list { display: grid; gap: var(--s-5); }
@media (min-width: 768px) { .style-list { grid-template-columns: 1fr 1fr; } }
.style-list article {
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--brand);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--e-elevated);
  transition: transform .25s var(--ease-spring);
}
.style-list article:hover { transform: translateX(4px); }
.style-list h3 { margin-bottom: var(--s-2); }
.style-list p { margin: 0; font-size: 1rem; }
.style-list__num {
  font-family: var(--font-display); font-weight: 700;
  color: var(--brand-2); font-size: .9rem; letter-spacing: .06em;
}

/* ---------- Gallery grid + lightbox ---------- */
.gallery-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; display: block; width: 100%;
  transition: transform .25s var(--ease-spring);
}
.gallery-item .media { aspect-ratio: 4 / 3; }
.gallery-item img { transition: transform .5s var(--ease-out); }
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--s-4);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: .95rem; text-align: left;
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-content: center; justify-items: center; gap: var(--s-4);
  padding: var(--s-8) var(--s-6);
  background: rgba(25, 30, 36, .96);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease-out), visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 76vh;
  object-fit: contain; border-radius: var(--radius);
}
.lightbox__cap { color: rgba(255,255,255,.88); text-align: center; margin: 0; max-width: 60ch; }
.lightbox__count { color: rgba(255,255,255,.55); font-size: .9rem; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 52px; height: 52px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; line-height: 1;
  transition: transform .25s var(--ease-spring), background-color .2s var(--ease-out);
}
.lightbox__btn:hover { background: var(--brand); }
.lightbox__prev { left: var(--s-5); }
.lightbox__next { right: var(--s-5); }
.lightbox__close { position: absolute; top: var(--s-5); right: var(--s-5); transform: none; }
.lightbox__close:hover { transform: rotate(90deg); }

/* ---------- Contact ---------- */
.nap { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.nap__item { display: flex; gap: var(--s-4); align-items: flex-start; }
.nap__icon {
  display: grid; place-items: center; flex: none; width: 52px; height: 52px;
  border-radius: 50%; background: var(--brand-2-soft); color: var(--brand);
}
.nap__icon svg { width: 22px; height: 22px; }
.nap__label { font-size: .9rem; margin: 0; }
.nap__value { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0; line-height: 1.4; }
.nap__value a { text-decoration: none; transition: color .2s var(--ease-out); }
.nap__value a:hover { color: var(--brand); }

.form-grid { display: grid; gap: var(--s-5); }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: var(--s-2); }
.field--wide { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--ink); }
.field :is(input, select, textarea) {
  width: 100%; padding: var(--s-4);
  border: 1px solid var(--divider); border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field :is(input, select, textarea):focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(208, 24, 31, .10);
}
.field textarea { min-height: 150px; resize: vertical; }
.field__error { color: var(--brand); font-size: .9rem; min-height: 1.2em; margin: 0; font-weight: 600; }
.field :is(input, select, textarea)[aria-invalid="true"] { border-color: var(--brand); }
.form-status { margin: var(--s-4) 0 0; font-weight: 600; color: var(--ink); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--e-elevated); }
.map-embed iframe { display: block; width: 100%; height: 460px; border: 0; }

/* ---------- Contact layout corrections ---------- */
/* .field is a grid, so a submit button would otherwise stretch edge to edge. */
.field--wide .btn { justify-self: start; }

/* A tall form next to a centred image leaves dead space above and below it.
   Stretch the media column so the photo runs the height of the form. */
.split--stretch { align-items: stretch; }
.split--stretch .media { min-height: 420px; height: 100%; }
.split--stretch .media img { height: 100%; object-fit: cover; }
