/* =================================================================
   THE RESTAURANT STARS stylesheet
   Palette taken from the logo: deep navy, silver-grey, cream.
   ================================================================= */

:root {
  /* Brand colours */
  --navy-900: #0E1F30;
  --navy-800: #142D44;
  --navy-700: #1B3A5A;   /* primary brand navy */
  --navy-600: #27506F;
  --slate:    #5C6F80;   /* body text on light */
  --silver:   #9DAAB4;   /* logo silver */
  --silver-2: #C6CFD5;
  --cream:    #F5F4EE;   /* page background */
  --cream-2:  #ECEAE0;
  --white:    #FFFFFF;
  --ink:      #15273A;   /* headings on light */
  --gold:     #C9A24A;   /* accent, used for stars only */

  --line:     rgba(27, 58, 90, 0.10);
  --shadow-sm: 0 4px 14px rgba(14, 31, 48, 0.06);
  --shadow-md: 0 16px 40px rgba(14, 31, 48, 0.10);
  --shadow-lg: 0 30px 70px rgba(14, 31, 48, 0.16);

  --radius:   18px;
  --radius-lg: 26px;
  --header-h: 78px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: 'Sora', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--navy-700); color: var(--cream); }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 9vw, 124px) 0; }

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section-head h2,
.why-copy h2,
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

.section-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--slate);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-600);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--silver-2); }
.eyebrow-star { color: var(--gold); font-size: 0.95rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy-700); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-light { background: var(--cream); color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 244, 238, 0.32);
}
.btn-ghost-light:hover { background: rgba(245, 244, 238, 0.10); transform: translateY(-3px); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(14, 31, 48, 0.08);
  border-bottom-color: var(--line);
}

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

.brand { display: flex; align-items: center; }
.brand-logo { height: 42px; width: auto; }

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--navy-700);
  border-radius: 2px;
  transition: width 0.28s var(--ease);
}
.main-nav a:hover { color: var(--navy-700); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open { max-height: 460px; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 14px 24px 28px; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-800);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu nav a.btn {
  margin-top: 16px;
  border-bottom: none;
  color: var(--cream);
  justify-content: center;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background: linear-gradient(165deg, #173554 0%, var(--navy-900) 70%);
  color: var(--cream);
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero .glow-1 {
  width: 460px; height: 460px;
  background: rgba(57, 99, 133, 0.55);
  top: -140px; right: -120px;
}
.hero .glow-2 {
  width: 380px; height: 380px;
  background: rgba(157, 170, 180, 0.20);
  bottom: -160px; left: -100px;
}
.star-field .star {
  position: absolute;
  color: var(--gold);
  opacity: 0.55;
}
.star-field .s1 { top: 16%; left: 8%;  font-size: 14px; opacity: 0.5; }
.star-field .s2 { top: 64%; left: 14%; font-size: 22px; opacity: 0.35; }
.star-field .s3 { top: 26%; right: 6%; font-size: 18px; opacity: 0.4; }
.star-field .s4 { top: 78%; right: 16%; font-size: 12px; opacity: 0.55; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero h1 .hl {
  color: var(--silver);
  position: relative;
  white-space: nowrap;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.14em;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.85;
}

.hero-sub {
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--silver-2);
  max-width: 520px;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-rating {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--silver-2);
}
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.hero-rating strong { color: var(--white); }

/* Hero visual: browser mockup */
.hero-visual { position: relative; }

.browser {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.4deg);
  transition: transform 0.5s var(--ease);
}
.hero-visual:hover .browser { transform: rotate(0deg); }

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #EEEDE6;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #CFCDC2; }
.browser-bar .dot:nth-child(1) { background: #E4938A; }
.browser-bar .dot:nth-child(2) { background: #E0C07F; }
.browser-bar .dot:nth-child(3) { background: #93C18F; }
.browser-url {
  margin-left: 8px;
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--slate);
  padding: 5px 12px;
  font-family: var(--font-body);
}

.browser-body { padding: 0; }

.mock-hero {
  background: linear-gradient(150deg, #1F4063, var(--navy-900));
  color: var(--cream);
  padding: 38px 28px 32px;
  text-align: center;
}
.mock-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.mock-hero h3 {
  color: var(--white);
  font-size: 1.85rem;
  margin: 8px 0 16px;
  letter-spacing: -0.01em;
}
.mock-btn {
  display: inline-block;
  background: var(--cream);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 9px 20px;
  border-radius: 999px;
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px;
}
.mock-dish {
  background: var(--cream);
  border-radius: 10px;
  padding: 10px;
}
.mock-img {
  display: block;
  height: 54px;
  border-radius: 7px;
  margin-bottom: 9px;
}
.mock-img.d1 { background: linear-gradient(135deg, #C9A24A, #9c7a2f); }
.mock-img.d2 { background: linear-gradient(135deg, #27506F, #173554); }
.mock-img.d3 { background: linear-gradient(135deg, #9DAAB4, #5C6F80); }
.mock-dish i { display: block; height: 6px; width: 80%; background: #D8D6CB; border-radius: 3px; }
.mock-dish b { display: block; height: 6px; width: 55%; background: #E6E4DA; border-radius: 3px; margin-top: 6px; }

/* Floating stat cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.1;
}
.float-card small { color: var(--slate); font-size: 0.76rem; }

.float-bookings { top: -26px; left: -34px; }
.float-bookings .fc-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: #E6EFE6; color: #4F8A4C;
  border-radius: 9px; font-size: 0.8rem;
}
.float-rating { bottom: -28px; right: -26px; animation-delay: -2.5s; }
.float-rating .fc-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee-wrap {
  background: var(--navy-800);
  padding: 22px 0;
  overflow: hidden;
}
.marquee { display: flex; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--silver-2);
}
.marquee-track .sep { color: var(--gold); font-size: 0.8rem; }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================================================================
   CARDS / GRID
   ================================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 58, 90, 0.18);
}

/* ---------- Services ---------- */
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { font-size: 0.98rem; }

.card-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--navy-700);
  margin-bottom: 22px;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.card-icon svg { width: 27px; height: 27px; }
.service-card:hover .card-icon { background: var(--navy-700); color: var(--cream); }

/* =================================================================
   PROCESS
   ================================================================= */
.process { background: var(--cream-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--silver-2);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { font-size: 0.96rem; }

/* =================================================================
   WORK / RESULTS
   ================================================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.work-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.work-thumb {
  position: relative;
  height: 178px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.thumb-1 { background: linear-gradient(150deg, #C9A24A, #8a6c28); }
.thumb-2 { background: linear-gradient(150deg, #27506F, #0E1F30); }
.thumb-3 { background: linear-gradient(150deg, #9DAAB4, #4A5A68); }
.work-thumb::after {
  content: "★";
  position: absolute;
  top: 14px; right: 18px;
  color: rgba(255,255,255,0.35);
  font-size: 1.5rem;
}
.work-tag {
  background: rgba(14, 31, 48, 0.42);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.work-body { padding: 24px 26px 28px; }
.work-body h3 { font-size: 1.25rem; }
.work-type {
  font-size: 0.86rem;
  color: var(--slate);
  margin: 3px 0 14px;
}
.work-result {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-700);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.work-result strong { font-size: 1.5rem; font-weight: 800; }

/* Stats band */
.stats {
  margin-top: 56px;
  background: var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--silver-2);
}

/* =================================================================
   WHY US
   ================================================================= */
.why { background: var(--cream-2); }
.why-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 38px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy-700);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 8px; top: 50%;
  width: 5px; height: 10px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: translateY(-65%) rotate(45deg);
}

.why-card {
  background: var(--navy-700);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-md);
}
.why-card-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 3px; }
.why-card blockquote {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  margin: 18px 0 24px;
}
.why-card-person {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(245, 244, 238, 0.16);
}
.why-card-person strong { display: block; color: var(--white); font-family: var(--font-display); }
.why-card-person small { color: var(--silver-2); }

.avatar {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-600);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.quote-card .avatar { background: var(--cream); color: var(--navy-700); }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.quote-card { display: flex; flex-direction: column; }
.quote-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.quote-card p {
  font-size: 1.02rem;
  color: var(--ink);
  flex: 1;
  margin-bottom: 22px;
}
.quote-person { display: flex; align-items: center; gap: 12px; }
.quote-person strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 0.96rem; }
.quote-person small { color: var(--slate); font-size: 0.84rem; }

/* =================================================================
   FAQ
   ================================================================= */
.faq-inner { max-width: 820px; }
.accordion { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item.active { border-color: rgba(27, 58, 90, 0.22); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
}
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--navy-700);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p {
  padding: 0 26px 24px;
  font-size: 0.99rem;
}

/* =================================================================
   CTA
   ================================================================= */
.cta-section {
  position: relative;
  background: linear-gradient(160deg, #1F4063, var(--navy-900));
  color: var(--cream);
  padding: clamp(70px, 9vw, 116px) 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-section .glow-1 {
  width: 420px; height: 420px;
  background: rgba(57, 99, 133, 0.5);
  top: -160px; left: -80px;
}
.cta-section .glow-2 {
  width: 360px; height: 360px;
  background: rgba(157, 170, 180, 0.18);
  bottom: -180px; right: -60px;
}
.cta-inner { position: relative; max-width: 720px; }
.cta-inner h2 { color: var(--white); }
.cta-sub {
  margin: 18px auto 0;
  font-size: 1.1rem;
  color: var(--silver-2);
  max-width: 520px;
}
.booking-embed {
  margin: 38px auto 0;
  width: 100%;
  max-width: 720px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lg);
}
.booking-embed .iclosed-widget {
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
.cta-fineprint {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--silver);
}
.cta-fineprint a { color: var(--silver-2); text-decoration: underline; text-underline-offset: 3px; }
.cta-fineprint a:hover { color: var(--white); }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--navy-900);
  color: var(--silver-2);
  padding-top: clamp(54px, 7vw, 84px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-wordmark strong { font-weight: 800; }
.fw-star { color: var(--gold); font-size: 1.1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 340px; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(245, 244, 238, 0.07);
  color: var(--silver-2);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.socials a:hover { background: var(--navy-600); color: var(--white); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col a,
.footer-col .footer-text {
  display: block;
  font-size: 0.94rem;
  color: var(--silver-2);
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-col a.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-top: 22px;
  padding: 14px 28px;
  background: var(--cream);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
}
.footer-col a.footer-btn:hover {
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px;
  border-top: 1px solid rgba(245, 244, 238, 0.10);
  font-size: 0.86rem;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a:hover { color: var(--white); }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.in-view {
  opacity: 1;
  transform: none;
}
/* stagger children of a grid */
.js .card-grid .reveal.in-view:nth-child(2),
.js .steps .reveal.in-view:nth-child(2),
.js .work-grid .reveal.in-view:nth-child(2) { transition-delay: 0.08s; }
.js .card-grid .reveal.in-view:nth-child(3),
.js .steps .reveal.in-view:nth-child(3),
.js .work-grid .reveal.in-view:nth-child(3) { transition-delay: 0.16s; }
.js .steps .reveal.in-view:nth-child(4),
.js .card-grid .reveal.in-view:nth-child(5) { transition-delay: 0.24s; }
.js .card-grid .reveal.in-view:nth-child(6) { transition-delay: 0.32s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 620px; }
  .hero-sub { max-width: none; }
  .hero-visual { margin-top: 24px; max-width: 480px; }

  .why-inner { grid-template-columns: 1fr; }

  .card-grid,
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }

  .card-grid,
  .work-grid,
  .steps { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(2.2rem, 9vw, 2.9rem); }
  .hero h1 .hl { white-space: normal; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { width: 100%; }

  .float-bookings { top: -18px; left: -10px; transform: scale(0.9); }
  .float-rating { bottom: -18px; right: -8px; transform: scale(0.9); }

  .stats { grid-template-columns: 1fr; gap: 30px; padding: 38px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-head { text-align: left; }
  .section-head .eyebrow { }
}

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