/* ==========================================================================
   TASTY EATS CATERING SERVICES LLC
   Premium design system — gold / charcoal / white
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --gold: #f2b705;
  --gold-light: #ffd34e;
  --gold-deep: #c8930a;
  --gold-soft: #fff8e2;
  --brand: #1b3e8c;

  /* Neutrals */
  --ink: #0e0e11;
  --charcoal: #17171c;
  --graphite: #2a2a31;
  --slate: #56565f;
  --muted: #7a7a84;
  --line: #e6e4de;
  --sand: #f8f6f1;
  --paper: #ffffff;

  /* Type */
  --font-head: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 900px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 84px;

  /* Depth */
  --shadow-sm: 0 2px 10px rgba(14, 14, 17, 0.06);
  --shadow: 0 12px 30px rgba(14, 14, 17, 0.08);
  --shadow-lg: 0 24px 60px rgba(14, 14, 17, 0.14);
  --shadow-gold: 0 14px 34px rgba(242, 183, 5, 0.28);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.35s var(--ease);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  /* Safety net against any element that overshoots the viewport. It must live
     on <html>, not <body> — on <body> it would turn body into a scroll
     container and break the sticky header. Note this does NOT contain the
     off-canvas nav (position:fixed escapes it); .nav-shell handles that. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 0.55em;
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.9rem);
}
h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
}
h4 {
  font-size: 1.08rem;
  font-weight: 700;
}

p {
  margin: 0 0 1.15em;
}

ul,
ol {
  margin: 0 0 1.15em;
  padding-left: 1.15em;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: clamp(64px, 8vw, 116px);
  position: relative;
}

.section--tight {
  padding-block: clamp(48px, 5.5vw, 78px);
}

.section--sand {
  background: var(--sand);
}

.section--dark {
  background: var(--ink);
  color: #b9b9c2;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(38px, 4.5vw, 62px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  font-size: 1.06rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-head--center .eyebrow::after {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section--dark .eyebrow {
  color: var(--gold);
}

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.17rem);
  line-height: 1.8;
}

.text-gold {
  color: var(--gold-deep);
}
.section--dark .text-gold,
.hero .text-gold {
  color: var(--gold);
}

.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t),
    color var(--t), border-color var(--t);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn:active {
  transform: translateY(-1px);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
}
.btn--dark:hover {
  box-shadow: 0 14px 34px rgba(14, 14, 17, 0.32);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(14, 14, 17, 0.24);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.btn--wa {
  --btn-bg: #25d366;
  --btn-fg: #fff;
}
.btn--wa:hover {
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
}

.btn--sm {
  padding: 12px 22px;
  font-size: 0.75rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-row--center {
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
}
.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t);
}
.link-arrow:hover {
  color: var(--gold-deep);
}
.link-arrow:hover svg {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #a7a7b0;
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar a:hover {
  color: var(--gold);
}
.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.topbar__socials {
  display: flex;
  gap: 14px;
}
.topbar__socials a:hover {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
  /* No background/backdrop-filter directly on this element — see ::before.
     backdrop-filter makes its element the containing block for any
     position:fixed descendant (CSS Filter Effects spec), which trapped the
     mobile nav drawer (.nav-shell, fixed, nested in here) to the header's own
     ~72px box instead of the full viewport, silently breaking the drawer. */
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(14px);
}
.site-header.is-stuck {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.06rem;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.brand__logo-img {
  height: var(--logo-h, 46px);
  width: var(--logo-w, auto);
  flex-shrink: 0;
  object-fit: contain;
}
.brand__tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Transparent on desktop; becomes the drawer's clipping box on mobile */
.nav-shell {
  display: contents;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  position: relative;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--graphite);
  padding: 10px 11px;
  border-radius: 8px;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.main-nav a:hover {
  color: var(--ink);
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}
.main-nav a.is-active {
  color: var(--ink);
  font-weight: 700;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), top var(--t);
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}
body.nav-open .nav-toggle span {
  background: transparent;
}
body.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
body.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  /* Overridable per-slide via inline style="--hero-img:url(...)" without
     disturbing the readability overlay layered on top of it. */
  --hero-img: url('/images/hero/hero-biryani.jpg');
  position: relative;
  background:
    linear-gradient(100deg, rgba(14, 14, 17, 0.94) 0%, rgba(14, 14, 17, 0.72) 48%, rgba(14, 14, 17, 0.45) 100%),
    radial-gradient(1000px 620px at 82% 18%, rgba(242, 183, 5, 0.2), transparent 62%),
    var(--hero-img) center / cover no-repeat,
    linear-gradient(135deg, #1c1c22 0%, #0e0e11 60%, #241d05 100%);
  color: #c8c8d1;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(72px, 11vw, 148px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__text {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.8;
  max-width: 640px;
  color: #cfcfd8;
  margin-bottom: 32px;
}

.hero .btn-row {
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ddd;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 15px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.hero__trust li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Multi-slide hero (admin-managed, 2+ slides configured) */
.hero--slider {
  background: #0e0e11;
  padding: 0;
}

.hero-slides {
  position: relative;
}

.hero-slide {
  --hero-img: none;
  background:
    linear-gradient(100deg, rgba(14, 14, 17, 0.94) 0%, rgba(14, 14, 17, 0.72) 48%, rgba(14, 14, 17, 0.45) 100%),
    radial-gradient(1000px 620px at 82% 18%, rgba(242, 183, 5, 0.2), transparent 62%),
    var(--hero-img) center / cover no-repeat,
    linear-gradient(135deg, #1c1c22 0%, #0e0e11 60%, #241d05 100%);
  /* Stacked and hidden by default; the active slide is pulled into normal
     flow so it — not an empty absolute stack — defines the section height. */
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s var(--ease);
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.hero-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all var(--t);
  flex-shrink: 0;
}
.hero-slider__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hero-slider__arrow svg {
  width: 19px;
  height: 19px;
}

.hero-slider__dots {
  display: flex;
  gap: 10px;
}
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all var(--t);
}
.hero-slider__dot:hover {
  border-color: var(--gold);
}
.hero-slider__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  width: 26px;
  border-radius: 100px;
}

@media (max-width: 780px) {
  .hero-slider__controls {
    bottom: 16px;
    gap: 14px;
  }
  .hero-slider__arrow {
    width: 38px;
    height: 38px;
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background:
    linear-gradient(105deg, rgba(14, 14, 17, 0.95) 0%, rgba(14, 14, 17, 0.78) 60%, rgba(14, 14, 17, 0.6) 100%),
    radial-gradient(760px 460px at 88% 10%, rgba(242, 183, 5, 0.22), transparent 60%),
    linear-gradient(135deg, #1d1d23 0%, #0e0e11 65%, #241d05 100%);
  color: #c6c6cf;
  overflow: hidden;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(58px, 8vw, 108px);
  max-width: 780px;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  color: #cbcbd4;
  margin-bottom: 0;
}
.page-hero .btn-row {
  margin-top: 30px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #9a9aa4;
}
.breadcrumbs li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--gold);
}
.breadcrumbs a:hover {
  color: var(--gold);
}
.breadcrumbs [aria-current] {
  color: #fff;
}

/* --------------------------------------------------------------------------
   7. STATS STRIP
   -------------------------------------------------------------------------- */
.stats {
  background: var(--gold);
  color: var(--ink);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(14, 14, 17, 0.12);
}
.stats__item {
  background: var(--gold);
  padding: 30px 22px;
  text-align: center;
}
.stats__value {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
.stats__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 14, 17, 0.72);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card:hover::before {
  transform: scaleX(1);
}
.card__num {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.card h3 {
  margin-bottom: 12px;
}
.card p {
  font-size: 0.97rem;
  flex: 1;
}
.card .link-arrow {
  margin-top: 8px;
  align-self: flex-start;
}

.icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background var(--t), color var(--t), transform var(--t);
}
.icon-badge svg {
  width: 26px;
  height: 26px;
}
.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.card:hover .icon-badge,
.feature:hover .icon-badge {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-6deg) scale(1.05);
}

/* Feature blocks (Why us / Values) */
.feature {
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(242, 183, 5, 0.5);
}
.feature h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.95rem;
  margin-bottom: 0;
}
.section--dark .feature {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.section--dark .feature:hover {
  background: rgba(255, 255, 255, 0.07);
}
.section--dark .icon-badge {
  background: rgba(242, 183, 5, 0.14);
  color: var(--gold);
}
/* .feature h4's own color rule (needed for light-background use elsewhere)
   ties in specificity with .section--dark h4 and happens to come later, so
   it was winning here and rendering near-black headings on a near-black
   background. */
.section--dark .feature h4 {
  color: #fff;
}

/* --------------------------------------------------------------------------
   9. SPLIT / MEDIA SECTIONS
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1f1f26, #0e0e11);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.frame--tall {
  aspect-ratio: 3 / 4;
}
/* Service detail images: show at their natural proportions instead of being
   cropped to the site-wide 4:3 box. */
.service-block .frame {
  aspect-ratio: auto;
}
.service-block .frame img {
  height: auto;
  object-fit: contain;
}
.frame::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.frame-badge {
  position: absolute;
  right: -14px;
  bottom: -14px;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  max-width: 220px;
  z-index: 2;
}
.frame-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.frame-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 14, 17, 0.72);
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}
.check-list--2 {
  grid-template-columns: repeat(2, 1fr);
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--graphite);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8930A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}
.section--dark .check-list li {
  color: #cfcfd8;
}
.section--dark .check-list li::before {
  background-color: rgba(242, 183, 5, 0.16);
}

/* --------------------------------------------------------------------------
   10. SERVICE DETAIL BLOCKS
   -------------------------------------------------------------------------- */
.service-block {
  padding-block: clamp(52px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.service-block:last-of-type {
  border-bottom: 0;
}
.service-block__num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--line);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.service-block h2 {
  margin-bottom: 8px;
}
.service-block__sub {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.list-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

/* --------------------------------------------------------------------------
   11. CUISINE PILLS
   -------------------------------------------------------------------------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.pills li {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: all var(--t);
}
.pills li:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}
.section--dark .pills li {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.section--dark .pills li:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   12. CERTIFICATIONS
   -------------------------------------------------------------------------- */
.certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cert {
  text-align: center;
  padding: 34px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform var(--t), box-shadow var(--t);
}
.cert:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.cert__ring {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background: var(--gold-soft);
}
.cert__ring svg {
  width: 30px;
  height: 30px;
}
.cert__ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.cert__code {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.cert__title {
  font-size: 0.87rem;
  color: var(--muted);
  margin-top: 4px;
}
.section--dark .cert {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.section--dark .cert__code {
  color: #fff;
}
.section--dark .cert__ring {
  background: rgba(242, 183, 5, 0.14);
  color: var(--gold);
}
.note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 22px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. STEPS (How we work)
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.step__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 18px;
}
.step h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.93rem;
  margin-bottom: 0;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -16px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   14. MENU PAGE
   -------------------------------------------------------------------------- */
.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.menu-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #24242b, #0e0e11);
  position: relative;
  overflow: hidden;
}
.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-card:hover .menu-card__media img {
  transform: scale(1.06);
}
.menu-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  padding: 7px 13px;
  border-radius: 100px;
  z-index: 2;
}
.menu-card__body {
  padding: 28px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card h3 {
  margin-bottom: 6px;
}
.menu-card__note {
  font-size: 0.9rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.dish-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  align-content: flex-start;
}
.dish-list li {
  font-size: 0.85rem;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--sand);
  border: 1px solid var(--line);
  color: var(--graphite);
}

.package-card {
  padding: 30px 28px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  transition: transform var(--t), box-shadow var(--t);
}
.package-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}
.package-card h4 {
  margin-bottom: 8px;
}
.package-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   15. GALLERY
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--graphite);
  cursor: pointer;
  transition: all var(--t);
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #24242b, #0e0e11);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 17, 0.86) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
}
.gallery-item.is-hidden {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 8, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  backdrop-filter: blur(6px);
}
.lightbox.is-open {
  display: flex;
}
.lightbox__figure {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  margin: 0;
  text-align: center;
}
.lightbox__figure img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox__caption {
  color: #e6e6ea;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 16px;
}
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.lightbox__btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.lightbox__btn svg {
  width: 22px;
  height: 22px;
}
.lightbox__close {
  top: 22px;
  right: 22px;
}
.lightbox__prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.08);
}

/* --------------------------------------------------------------------------
   16. CTA BANDS
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background:
    linear-gradient(100deg, rgba(14, 14, 17, 0.96) 0%, rgba(14, 14, 17, 0.8) 100%),
    radial-gradient(700px 400px at 85% 30%, rgba(242, 183, 5, 0.26), transparent 60%),
    linear-gradient(135deg, #1e1e25, #0e0e11);
  color: #c4c4ce;
  overflow: hidden;
}
.cta-band__inner {
  padding-block: clamp(56px, 6.5vw, 92px);
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  margin-bottom: 30px;
}

.cta-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ink);
}
.cta-gold h2 {
  color: var(--ink);
}
.cta-gold p {
  color: rgba(14, 14, 17, 0.78);
}

/* --------------------------------------------------------------------------
   17. FORMS
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 44px);
  box-shadow: var(--shadow);
}
.form-card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
}
.field label .req {
  color: #d64545;
}
.form-card--dark .field label {
  color: #fff;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea {
  min-height: 128px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.18);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #a9a9b2;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2356565F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox-chip {
  position: relative;
}
.checkbox-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-chip span {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--graphite);
  cursor: pointer;
  transition: all var(--t);
  user-select: none;
}
.checkbox-chip input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.checkbox-chip input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.field--note {
  justify-content: flex-end;
}
.field-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.89rem;
  color: var(--muted);
  margin: 0 0 12px;
}
.inline-ic {
  width: 17px;
  height: 17px;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.form-card--dark .field-note {
  color: #b4b4bf;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-alert {
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 22px;
  font-size: 0.93rem;
  border: 1px solid;
}
.form-alert--error {
  background: #fdf2f2;
  border-color: #f3c9c9;
  color: #a12626;
}
.form-alert ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.form-alert strong {
  font-family: var(--font-head);
}

.form-footnote {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 16px 0 0;
}

/* --------------------------------------------------------------------------
   18. CONTACT
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:last-child {
  border-bottom: 0;
}
.info-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-item__icon svg {
  width: 21px;
  height: 21px;
}
.info-item__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.4;
}
.info-item__value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  word-break: break-word;
}
.info-item__value a:hover {
  color: var(--gold-deep);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* --------------------------------------------------------------------------
   18b. TESTIMONIALS / TEAM / ARTICLE
   -------------------------------------------------------------------------- */
.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.quote-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.quote-card__stars svg {
  width: 17px;
  height: 17px;
}
.quote-card__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--graphite);
  flex: 1;
  margin-bottom: 22px;
}
.quote-card__who {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quote-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  flex-shrink: 0;
}
.quote-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.3;
}
.quote-card__role {
  font-size: 0.85rem;
  color: var(--muted);
}
.section--dark .quote-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.section--dark .quote-card__text {
  color: #cfcfd8;
}
.section--dark .quote-card__name {
  color: #fff;
}
.section--dark .quote-card__who {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.person {
  text-align: center;
}
.person__photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #24242b, #0e0e11);
  margin-bottom: 18px;
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.person:hover .person__photo img {
  transform: scale(1.05);
}
.person h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.person__role {
  font-size: 0.87rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 10px;
}
.person p {
  font-size: 0.92rem;
  margin: 0;
}

.article {
  font-size: 1.04rem;
  line-height: 1.85;
}
.article h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  margin-top: 1.7em;
}
.article h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-top: 1.5em;
}
.article ul,
.article ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
.article li {
  margin-bottom: 0.5em;
}
.article a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article img {
  border-radius: var(--radius);
  margin: 1.6em 0;
}
.article blockquote {
  margin: 1.6em 0;
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--gold);
  font-size: 1.1rem;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   19. FAQ
   -------------------------------------------------------------------------- */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq[open] {
  border-color: rgba(242, 183, 5, 0.6);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '';
  position: absolute;
  right: 24px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--gold-deep);
  border-bottom: 2.5px solid var(--gold-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--t);
}
.faq[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq__body {
  padding: 0 24px 22px;
  font-size: 0.97rem;
}
.faq__body p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. THANK YOU / ERROR PAGES
   -------------------------------------------------------------------------- */
.centered-panel {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(60px, 8vw, 110px);
}
.centered-panel__inner {
  max-width: 640px;
}
.success-mark {
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
}
.success-mark svg {
  width: 42px;
  height: 42px;
}
.error-code {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #90909b;
  font-size: 0.94rem;
}
/* The dark footer background makes the (deliberately dark) brand blue hard
   to read — brighten it here only, the header keeps the true brand color. */
.site-footer .brand__name {
  color: var(--gold-light);
}
.footer-cta {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--ink);
}
.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding-block: 34px;
}
.footer-cta h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}
.footer-cta p {
  margin: 6px 0 0;
  color: rgba(14, 14, 17, 0.75);
  font-size: 0.97rem;
}

.footer-main {
  padding-block: clamp(48px, 6vw, 76px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 42px 34px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.footer-col a:hover {
  color: var(--gold);
}

.footer-brand .brand {
  margin-bottom: 18px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.footer-brand .brand__logo-img {
  width: auto;
  height: 82px;
  max-width: 220px;
  object-fit: contain;
}
.animated-logo {
  position: relative;
  display: inline-block;
  height: var(--logo-h, 46px);
  aspect-ratio: 194 / 130;
  flex-shrink: 0;
  overflow: visible;
}
.animated-logo__piece {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  animation: logo-assemble 8s cubic-bezier(.22, .8, .3, 1) infinite both;
}
.animated-logo__piece--chef {
  clip-path: inset(0 29% 43% 29%);
  --piece-x: 0;
  --piece-y: -55%;
  --piece-scale: .55;
  animation-delay: 140ms;
}
.animated-logo__piece--gold-left {
  clip-path: inset(6% 57% 43% 20%);
  --piece-x: -65%;
  --piece-y: -10%;
  --piece-scale: .65;
  animation-delay: 0ms;
}
.animated-logo__piece--gold-right {
  clip-path: inset(6% 20% 43% 57%);
  --piece-x: 65%;
  --piece-y: -10%;
  --piece-scale: .65;
  animation-delay: 0ms;
}
.animated-logo__piece--name {
  clip-path: inset(54% 8% 19% 8%);
  --piece-x: 0;
  --piece-y: 55%;
  --piece-scale: .8;
  animation-delay: 300ms;
}
.animated-logo__piece--tagline {
  clip-path: inset(79% 6% 0 6%);
  --piece-x: 0;
  --piece-y: 75%;
  --piece-scale: .8;
  animation-delay: 460ms;
}
@keyframes logo-assemble {
  0%, 2% {
    opacity: 0;
    transform: translate(var(--piece-x), var(--piece-y)) scale(var(--piece-scale)) rotate(-4deg);
    filter: blur(2px);
  }
  24%, 94% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .animated-logo__piece {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.footer-brand .brand__name {
  color: #fff;
}
.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 330px;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: #cfcfd8;
  transition: all var(--t);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: #7a7a85;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   22. FLOATING ACTIONS
   -------------------------------------------------------------------------- */
.float-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  transition: transform var(--t), box-shadow var(--t);
  border: 0;
  cursor: pointer;
}
.float-btn:hover {
  transform: scale(1.08) translateY(-2px);
}
.float-btn svg {
  width: 27px;
  height: 27px;
}
.float-btn--wa {
  background: #25d366;
  position: relative;
}
.float-btn--wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2.4s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}
.float-btn--call {
  background: var(--ink);
  color: var(--gold);
}
.float-btn--top {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.float-btn--top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* Sticky mobile call bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 290;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}
.mobile-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.mobile-bar a {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 10px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.mobile-bar svg {
  width: 18px;
  height: 18px;
  color: var(--gold-deep);
}
.mobile-bar a.is-wa svg {
  color: #25d366;
}

/* --------------------------------------------------------------------------
   23. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}
.reveal-d5 {
  transition-delay: 0.4s;
}

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

/* --------------------------------------------------------------------------
   24. RESPONSIVE
   -------------------------------------------------------------------------- */
/* Narrow desktops: the nav needs the space the WhatsApp label was using.
   The number stays reachable via the top bar and the floating button. */
@media (max-width: 1240px) {
  .header__actions .btn--wa span {
    display: none;
  }
  .header__actions .btn--wa {
    padding-inline: 16px;
  }
}

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:not(:last-child)::after {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

/* Seven nav items plus two CTAs stop fitting below ~1100px, so the drawer
   takes over here rather than at the usual tablet breakpoint. */
@media (max-width: 1100px) {
  .topbar {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  /* Exactly viewport-sized, so it adds no scrollable area of its own, and
     overflow:hidden clips the drawer while it sits off-canvas. A position:fixed
     drawer is laid out against the viewport and escapes overflow set on <html>
     or <body>, so this wrapper is what actually prevents sideways scrolling. */
  .nav-shell {
    display: block;
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 210;
  }

  .main-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 86vw);
    background: var(--paper);
    padding: calc(var(--header-h) + 22px) 26px 34px;
    transform: translateX(102%);
    /* visibility keeps the closed drawer out of the tab order and away from
       screen readers; the delay lets the slide-out finish first */
    visibility: hidden;
    pointer-events: auto;
    transition: transform 0.4s var(--ease), visibility 0s linear 0.4s;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.16);
    overflow-y: auto;
  }
  body.nav-open .main-nav {
    transform: none;
    visibility: visible;
    transition: transform 0.4s var(--ease), visibility 0s;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .main-nav a {
    padding: 15px 12px;
    font-size: 0.98rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .main-nav a::after {
    display: none;
  }
  .main-nav a.is-active {
    color: var(--gold-deep);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(14, 14, 17, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
    /* Must stay below .site-header (z-index: 200). .nav-shell/.main-nav are
       nested inside the header, so their z-index (210) is scoped to the
       header's own stacking context and can never rise above it — a backdrop
       at 205 was painting on top of the drawer instead of behind it,
       silently making the open menu invisible and unclickable. */
    z-index: 190;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  /* WhatsApp stays reachable via the floating button and the mobile bar */
  .header__actions .btn--wa {
    display: none;
  }
}

/* Below this the phone bar and floating buttons carry the CTAs */
@media (max-width: 640px) {
  .header__actions .btn--quote {
    display: none;
  }
}

@media (max-width: 992px) {
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }

  .certs {
    grid-template-columns: 1fr;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 72px;
  }
  body {
    font-size: 16px;
  }

  .brand__logo-img {
    height: var(--logo-h-mobile, var(--logo-h, 46px));
    width: var(--logo-w-mobile, var(--logo-w, auto));
  }
  .animated-logo {
    height: var(--logo-h-mobile, var(--logo-h, 46px));
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Stats + Certifications become a swipeable horizontal carousel on
     mobile instead of a long vertical stack — pure CSS scroll-snap, no
     JS needed. */
  .certs,
  .stats__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    margin-inline: -22px;
    padding: 4px 22px 14px;
    scrollbar-width: none;
  }
  .certs::-webkit-scrollbar,
  .stats__grid::-webkit-scrollbar {
    display: none;
  }
  .certs > *,
  .stats__grid > * {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .certs > * {
    flex-basis: 68%;
  }
  .stats__grid > * {
    flex-basis: 100%;
  }
  .stats__grid {
    background: none;
    gap: 10px;
  }
  .stats__item {
    border-radius: var(--radius-sm);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .check-list--2 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .frame-badge {
    right: 12px;
    bottom: -12px;
    padding: 16px 18px;
  }

  .btn {
    padding: 15px 24px;
  }
  .btn-row .btn {
    flex: 1 1 100%;
  }

  .mobile-bar {
    display: block;
  }
  body {
    padding-bottom: 56px;
  }
  .float-actions {
    bottom: 74px;
    right: 14px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .float-btn svg {
    width: 24px;
    height: 24px;
  }

  .lightbox__prev {
    left: 10px;
  }
  .lightbox__next {
    right: 10px;
  }
  .lightbox__btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .brand__mark {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .brand__name {
    font-size: 0.95rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 28px 24px;
  }
}

/* --------------------------------------------------------------------------
   25. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .float-actions,
  .mobile-bar,
  .cta-band,
  .topbar {
    display: none !important;
  }
  body {
    color: #000;
    padding-bottom: 0;
  }
}
