/* ==========================================================================
   The Amicable Nutritionist — brand redesign
   Palette (from brand guide): charcoal #151c25 · gold #9c7e41 · off-white #EEF0EF
   Type: Comfortaa (display, echoes the rounded logo wordmark) + Outfit (body)
   ========================================================================== */

:root {
  --charcoal: #151c25;
  --charcoal-2: #1d2633;
  --charcoal-3: #232f3f;
  --gold: #9c7e41;
  --gold-bright: #c2a05c;
  --gold-pale: #e9dfc9;
  --offwhite: #eef0ef;
  --white: #ffffff;
  --ink: #1c242e;
  --ink-soft: #5c6672;
  --line: rgba(21, 28, 37, 0.12);
  --line-light: rgba(238, 240, 239, 0.14);
  --star: #d9a93c;

  --font-display: "Comfortaa", system-ui, sans-serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 46px rgba(21, 28, 37, 0.16);
  --shadow-soft: 0 8px 26px rgba(21, 28, 37, 0.09);
  --shadow-gold: 0 10px 30px rgba(156, 126, 65, 0.35);
  --container: 1180px;
  --header-h: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.22;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.15rem; }

.gold { color: var(--gold); }

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 34rem; font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-bright); }

.btn-dark { background: var(--charcoal); color: var(--offwhite); }
.btn-dark:hover { background: var(--charcoal-3); }

.btn-ghost { background: transparent; color: var(--offwhite); border-color: rgba(238, 240, 239, 0.35); }
.btn-ghost:hover { border-color: var(--offwhite); background: rgba(238, 240, 239, 0.08); }

.btn-ghost-dark { background: transparent; color: var(--charcoal); border-color: rgba(21, 28, 37, 0.3); }
.btn-ghost-dark:hover { border-color: var(--charcoal); background: rgba(21, 28, 37, 0.05); }

.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: rgba(21, 28, 37, 0.3); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--charcoal);
  opacity: 0.35;
  letter-spacing: 0;
}
.eyebrow-light .eyebrow-num { color: var(--offwhite); opacity: 0.4; }

.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); position: relative; flex-shrink: 0; }
.pulse-dot::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  from { transform: scale(0.6); opacity: 0.7; }
  to   { transform: scale(1.6); opacity: 0; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(245, 243, 236, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo-img { height: 46px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.main-nav > a:not(.btn):hover { opacity: 1; }
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav > a:not(.btn):hover::after { transform: scaleX(1); }
.nav-cta { padding: 11px 24px; box-shadow: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s 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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, #fbf9f3 0%, var(--offwhite) 60%, #ece7da 100%);
  color: var(--ink);
  padding-top: calc(var(--header-h) + 70px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-watermark {
  position: absolute;
  right: -180px; top: -80px;
  width: 720px;
  opacity: 0.07;
  will-change: transform;
}
.glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.glow-1 { width: 500px; height: 500px; background: rgba(194, 160, 92, 0.28); top: -120px; left: -140px; }
.glow-2 { width: 420px; height: 420px; background: rgba(156, 126, 65, 0.16); bottom: -60px; right: 10%; }

/* Soft sand blob anchoring the hero photo */
.hero-blob {
  position: absolute;
  right: 4%; top: 8%;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 50% 45%, rgba(206, 181, 128, 0.34), rgba(206, 181, 128, 0.12) 55%, transparent 72%);
  border-radius: 58% 42% 46% 54% / 52% 48% 52% 48%;
  animation: blobMorph 18s ease-in-out infinite alternate;
}
@keyframes blobMorph {
  from { border-radius: 58% 42% 46% 54% / 52% 48% 52% 48%; transform: rotate(0deg) scale(1); }
  to   { border-radius: 44% 56% 58% 42% / 46% 54% 46% 54%; transform: rotate(8deg) scale(1.06); }
}

/* Gold dot accents */
.hero-dots {
  position: absolute;
  left: 3%; bottom: 16%;
  width: 300px; height: 220px;
  background-image: radial-gradient(rgba(156, 126, 65, 0.4) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 72%);
}
.hero-dots-2 { left: auto; bottom: auto; right: 30%; top: 6%; width: 220px; height: 160px; opacity: 0.7; }

/* Film grain — kills gradient banding, adds warmth */
.hero::after,
.reviews-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Curved transition into the trust bar */
.hero-curve {
  display: block;
  position: relative;
  width: 100%;
  height: 64px;
  margin-bottom: -1px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 90px;
}

.hero-copy .eyebrow { color: var(--gold); text-transform: none; letter-spacing: 0.03em; font-size: 0.9rem; }
.hero-copy h1 { color: var(--charcoal); margin-bottom: 24px; }
.hero-copy h1 .gold { color: var(--gold); }
.hero-copy .lead { color: var(--ink-soft); margin-bottom: 34px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.8rem;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 28, 37, 0.15);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.6);
}
.chip-link { transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease; }
.chip-link:hover { border-color: var(--gold); background: rgba(156, 126, 65, 0.1); transform: translateY(-2px); }
.chip-stars { color: var(--star); letter-spacing: 1px; margin-right: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo-frame { position: relative; width: min(440px, 100%); margin-inline: auto; }
.hero-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50% 50% 50% 12%;
  box-shadow: 0 30px 70px rgba(21, 28, 37, 0.3);
  position: relative;
  z-index: 1;
}
.hero-ring {
  position: absolute;
  inset: -22px;
  border: 1.5px dashed rgba(156, 126, 65, 0.5);
  border-radius: 50% 50% 50% 14%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute;
  z-index: 2;
  background: var(--offwhite);
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 0.85rem; line-height: 1.35; font-weight: 600; }
.float-card small { font-size: 0.74rem; color: var(--ink-soft); line-height: 1.3; display: block; }
.float-icon { font-size: 1.4rem; }

.float-award { left: -30px; bottom: 40px; max-width: 300px; }
.float-result { right: -14px; top: 26px; flex-direction: column; align-items: flex-start; gap: 2px; max-width: 180px; animation-delay: 1.4s; }
.float-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.float-num em { font-style: normal; font-size: 1.1rem; }

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

/* Trust bar + marquee */
.trustbar { background: var(--charcoal); padding: 28px 0 32px; position: relative; }
.trustbar-label {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 240, 239, 0.45);
  margin-bottom: 18px;
  text-align: center;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: rgba(238, 240, 239, 0.8);
}
.marquee-track i { color: var(--gold); font-size: 0.55rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { background: var(--white); padding: 60px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number, .stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--charcoal);
}
.stat-suffix { color: var(--gold); }
.stat p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 108px 0; }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Services ---------- */
.services { background: var(--offwhite); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(156, 126, 65, 0.35); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50% 50% 50% 18%;
  background: var(--gold-pale);
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon { background: var(--gold); color: var(--white); transform: rotate(-8deg) scale(1.06); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Packages ---------- */
.packages {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 60% 50% at 85% 0%, rgba(156, 126, 65, 0.16), transparent),
                    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(156, 126, 65, 0.1), transparent);
}
.packages h2 { color: var(--offwhite); }
.packages .section-sub { color: rgba(238, 240, 239, 0.6); }

.tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  background: rgba(238, 240, 239, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 6px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 52px;
}
.tab {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(238, 240, 239, 0.65);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.tab:hover { color: var(--offwhite); }
.tab.active { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelIn 0.5s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: 26px;
}
.price-grid-3 { grid-template-columns: repeat(3, 1fr); }

.price-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.price-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 20px; }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 24px;
}
.price small { font-size: 0.95rem; font-weight: 500; color: var(--gold); vertical-align: super; margin-right: 4px; }
.price-custom { font-size: 1.7rem; padding-top: 8px; }
.price-note { font-size: 0.8rem; color: var(--ink-soft); margin: -12px 0 20px; }

.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 30px; flex: 1; }
.price-card li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-pale) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%239c7e41" stroke-width="3.4" stroke-linecap="round"><path d="M5 13l4 4L19 7"/></svg>') center / 11px no-repeat;
}
.price-card .btn { margin-top: auto; }

.price-featured {
  background: linear-gradient(160deg, #fdfbf6, var(--gold-pale));
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.price-badge {
  position: absolute;
  top: -14px; left: 34px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

/* Harmony Kitchen panel */
.meals-intro {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 34px;
}
.meals-intro img {
  width: 130px; height: 130px;
  object-fit: cover;
  border-radius: 50% 50% 50% 16%;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.meals-intro p { color: rgba(238, 240, 239, 0.78); font-size: 0.98rem; }
.meals-intro strong { color: var(--gold-bright); }

.meals-table-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--offwhite);
  border-radius: var(--radius);
  overflow-x: auto;
  box-shadow: var(--shadow);
}
.meals-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.meals-table th, .meals-table td { padding: 18px 24px; text-align: left; }
.meals-table thead th {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--offwhite);
  background: var(--charcoal-2);
}
.meals-table thead th small { display: block; font-family: var(--font-body); font-weight: 400; color: rgba(238, 240, 239, 0.55); font-size: 0.76rem; }
.meals-table tbody td { border-top: 1px solid var(--line); font-size: 0.95rem; }
.meals-table tbody td:first-child { font-weight: 600; }
.meals-table tbody td small { color: var(--gold); font-size: 0.72rem; font-weight: 600; margin-right: 2px; }
.meals-table tbody tr { transition: background 0.2s ease; }
.meals-table tbody tr:hover { background: rgba(156, 126, 65, 0.07); }

.panel-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.panel-cta .btn-ghost-dark { color: var(--offwhite); border-color: var(--line-light); }
.panel-cta .btn-ghost-dark:hover { border-color: var(--offwhite); background: rgba(238, 240, 239, 0.08); }

/* ---------- About ---------- */
.about { background: var(--white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 76px; align-items: center; }

.about-visual { position: relative; }
.about-photo-frame {
  width: min(400px, 100%);
  border-radius: 50% 50% 50% 12%;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.7;
  background: var(--gold-pale);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-award { right: -10px; bottom: 30px; max-width: 290px; }

.about-copy h2 { margin-bottom: 22px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; max-width: 36rem; }
.about-copy p em { color: var(--gold); font-style: italic; }
.about-copy strong { color: var(--ink); }

.cred-list { list-style: none; display: grid; gap: 14px; margin: 26px 0 32px; }
.cred-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.cred-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50% 50% 50% 20%;
  background: var(--gold-pale) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%239c7e41" stroke-width="3" stroke-linecap="round"><path d="M5 13l4 4L19 7"/></svg>') center / 12px no-repeat;
}
.cred-list strong { color: var(--charcoal); }

/* ---------- Results / gallery ---------- */
.results {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 55% 45% at 15% 0%, rgba(156, 126, 65, 0.14), transparent);
  padding-bottom: 118px;
}
.results h2 { color: var(--offwhite); }
.results .section-sub { color: rgba(238, 240, 239, 0.6); }

.gallery {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 10px max(24px, calc((100vw - var(--container)) / 2)) 26px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery.dragging { cursor: grabbing; scroll-snap-type: none; }

.gallery-item {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease;
}
.gallery-item:nth-child(odd) { transform: rotate(-1.2deg); }
.gallery-item:nth-child(even) { transform: rotate(1.2deg); }
.gallery-item:hover { transform: rotate(0) scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.gallery-cta {
  background: linear-gradient(150deg, var(--gold), #7d6434);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
}
.gallery-cta p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.4;
}
.gallery-cta .btn { background: var(--offwhite); color: var(--charcoal); box-shadow: none; }

/* ---------- Videos ---------- */
.videos { background: var(--offwhite); }
.videos-grid {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 22px;
  align-items: stretch;
  background: var(--charcoal);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.video-card { cursor: pointer; }
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.video-card:hover .video-thumb { box-shadow: var(--shadow); transform: translateY(-3px); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.04); opacity: 0.85; }
.video-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 0;
  background: rgba(238, 240, 239, 0.92);
  color: var(--charcoal);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-card:hover .video-play { transform: scale(1.1); background: var(--gold); color: var(--white); }

/* Player + playlist */
.player-col { display: flex; flex-direction: column; min-width: 0; }
.player-col h3 { font-size: 1.15rem; color: var(--offwhite); margin: 18px 6px 4px; }
.player-col p { color: rgba(238, 240, 239, 0.6); font-size: 0.9rem; margin: 0 6px 4px; }
.player-frame { cursor: pointer; border-radius: 18px; box-shadow: none; }
.player-frame img { width: 100%; height: 100%; object-fit: cover; }

.playlist { display: flex; flex-direction: column; gap: 10px; min-height: 0; min-width: 0; }
.playlist-label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(238, 240, 239, 0.5);
  margin: 2px 2px 0;
}

.playlist-scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 126, 65, 0.6) transparent;
}
.playlist-scroll::-webkit-scrollbar { width: 5px; }
.playlist-scroll::-webkit-scrollbar-thumb { background: rgba(156, 126, 65, 0.6); border-radius: 99px; }
.playlist-scroll::-webkit-scrollbar-track { background: transparent; }

.playlist-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: rgba(238, 240, 239, 0.06);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.playlist-item:hover { background: rgba(238, 240, 239, 0.12); transform: translateX(3px); }
.playlist-item.active { border-color: var(--gold); background: rgba(156, 126, 65, 0.14); }

.pl-thumb {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f141b;
}
.pl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pl-playing {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(21, 28, 37, 0.55);
  color: var(--gold-bright);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.playlist-item.active .pl-playing { opacity: 1; }

.pl-info { min-width: 0; }
.pl-info strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--offwhite);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pl-info small { color: rgba(238, 240, 239, 0.45); font-size: 0.72rem; }
.playlist-item.active .pl-info small { color: var(--gold-bright); font-weight: 600; }

/* Subscribe card */
.subscribe-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #10161e;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  flex-shrink: 0;
}
.yt-icon { color: #ff0000; display: grid; place-items: center; width: 40px; flex-shrink: 0; }
.yt-icon svg { width: 34px; height: 34px; }
.subscribe-copy { flex: 1; min-width: 0; }
.subscribe-copy strong { display: block; color: var(--offwhite); font-size: 0.9rem; }
.subscribe-copy small { color: rgba(238, 240, 239, 0.55); font-size: 0.76rem; }
.btn-subscribe {
  background: #ff0000;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-subscribe:hover { background: #d90000; transform: translateY(-2px); }

/* TikTok stories */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.tt-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tt-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45); }
.tt-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.4s ease; }
.tt-card:hover > img { transform: scale(1.05); opacity: 0.85; }
.tt-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }

.tt-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}
.tt-play { width: 48px; height: 48px; }
.tt-play svg { width: 20px; height: 20px; margin-left: 2px; }
.tt-name {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.tt-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px 16px;
  background: linear-gradient(160deg, #1d2633, #0f141b);
  border: 1px solid var(--line-light);
}
.tt-logo { color: var(--offwhite); }
.tt-logo svg { width: 38px; height: 38px; }
.tt-follow strong { color: var(--offwhite); font-size: 0.88rem; word-break: break-all; }
.tt-follow small { color: rgba(238, 240, 239, 0.55); font-size: 0.76rem; line-height: 1.5; }
.tt-follow-btn {
  margin-top: 6px;
  background: #fe2c55;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.tt-follow:hover .tt-follow-btn { background: #e0244a; transform: translateY(-2px); }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse 70% 60% at 80% -10%, rgba(156, 126, 65, 0.18), transparent);
}
.testimonials h2 { color: var(--offwhite); }

.t-carousel { max-width: 800px; margin: 0 auto 56px; }
.t-track { display: grid; }
.t-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  text-align: center;
  padding: 12px;
}
.t-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.stars { color: var(--star); letter-spacing: 3px; font-size: 0.95rem; }
.t-slide .stars { font-size: 1.1rem; margin-bottom: 22px; }
.t-slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--offwhite);
  margin-bottom: 28px;
}
.t-slide figcaption { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.t-slide figcaption strong { display: block; color: var(--offwhite); font-size: 0.95rem; }
.t-slide figcaption small { color: rgba(238, 240, 239, 0.55); font-size: 0.8rem; }

.t-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 30px; }
.t-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-light);
  background: transparent;
  color: var(--offwhite);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.t-btn:hover { background: rgba(238, 240, 239, 0.1); border-color: var(--offwhite); transform: scale(1.06); }
.t-btn svg { width: 20px; height: 20px; }

.t-dots { display: flex; gap: 10px; }
.t-dots button {
  width: 9px; height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(238, 240, 239, 0.28);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.t-dots button.active { background: var(--gold-bright); width: 28px; }

.story-links { text-align: center; }
.story-links-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 240, 239, 0.45);
  margin-bottom: 18px;
}
.story-links-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.story-chip {
  font-size: 0.88rem;
  font-weight: 400;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  color: rgba(238, 240, 239, 0.85);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.story-chip:hover { border-color: var(--gold-bright); background: rgba(156, 126, 65, 0.14); transform: translateY(-2px); }
.story-chip-gold { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- Corporate ---------- */
.corporate { background: var(--white); }
.corporate-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.corporate-copy h2 { margin-bottom: 20px; }
.corporate-copy p { color: var(--ink-soft); margin-bottom: 30px; max-width: 32rem; }

.corporate-photo {
  margin-top: 36px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 480px;
}
.corporate-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.corporate-clients { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.client-tile {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.client-tile:hover { transform: translateY(-3px); border-color: rgba(156, 126, 65, 0.45); box-shadow: var(--shadow-soft); }
.client-tile strong { display: block; font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.client-tile span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; display: block; }

/* ---------- FAQ ---------- */
.faq { background: var(--offwhite); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro p { color: var(--ink-soft); margin-bottom: 28px; max-width: 26rem; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item[open] { border-color: rgba(156, 126, 65, 0.4); box-shadow: var(--shadow-soft); }

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-pale);
  transition: background 0.3s ease, transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item[open] .faq-icon { background: var(--gold); transform: rotate(90deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--white); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }

.faq-answer { padding: 0 22px 22px; }
.faq-answer p { font-size: 0.93rem; color: var(--ink-soft); }
.faq-answer em { color: var(--gold); font-weight: 500; }
.faq-answer a { color: var(--gold); font-weight: 500; text-decoration: underline; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--gold), #7d6434); padding: 76px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-inner h2 { color: var(--white); margin-bottom: 10px; }
.cta-inner p { color: rgba(255, 255, 255, 0.8); max-width: 32rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-outline-dark { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.cta-banner .btn-outline-dark:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); color: var(--white); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 34px; }

.contact-list { list-style: none; display: grid; gap: 20px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 18%;
  background: var(--gold-pale);
  color: var(--gold);
  display: grid; place-items: center;
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 2px; }
.contact-list a { font-weight: 500; }
.contact-list a:hover { color: var(--gold); }

.map-link { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gold) !important; margin-top: 4px; }
.map-link:hover { color: #7d6434 !important; }

.directions-card {
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  padding: 22px 24px;
  margin-bottom: 30px;
}
.directions-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 10%;
  border-radius: 10px;
  margin-bottom: 14px;
}
.directions-card h3 { font-size: 1rem; margin-bottom: 8px; }
.directions-card p { font-size: 0.88rem; color: var(--ink-soft); }

.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  color: var(--charcoal);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.socials a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

/* Form */
.contact-form {
  background: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.83rem; font-weight: 500; margin-bottom: 7px; color: var(--offwhite); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--offwhite);
  background: rgba(238, 240, 239, 0.07);
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(238, 240, 239, 0.4); }
.form-field select { appearance: none; }
.form-field select option { color: var(--ink); background: var(--white); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  background: rgba(238, 240, 239, 0.1);
}
.form-note { font-size: 0.85rem; margin-top: 14px; text-align: center; color: var(--gold-bright); font-weight: 500; min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer {
  background: #10161e;
  color: rgba(238, 240, 239, 0.7);
  padding: 76px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.footer-logo { height: 52px; width: auto; }
.footer-brand p { font-size: 0.9rem; margin-top: 20px; max-width: 20rem; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span { font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 24px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-tag { font-family: var(--font-display); color: var(--gold); }

/* ---------- Reviews page ---------- */
.nav-current { color: var(--gold) !important; opacity: 1 !important; }

.reviews-hero {
  position: relative;
  background: linear-gradient(165deg, #fbf9f3 0%, var(--offwhite) 60%, #ece7da 100%);
  color: var(--ink);
  padding: calc(var(--header-h) + 76px) 0 84px;
  overflow: hidden;
  text-align: center;
}
.reviews-hero-inner { position: relative; }
.reviews-hero .eyebrow { color: var(--gold); text-transform: none; letter-spacing: 0.03em; font-size: 0.9rem; justify-content: center; }
.reviews-hero h1 { color: var(--charcoal); margin-bottom: 30px; }

.g-word { font-weight: 700; }
.g-b { color: #4285f4; }
.g-r { color: #ea4335; }
.g-y { color: #fbbc05; }
.g-g { color: #34a853; }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 20px 30px;
  margin-bottom: 34px;
}
.rating-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.rating-detail { text-align: left; }
.stars-lg { font-size: 1.3rem; display: block; }
.rating-detail small { color: var(--ink-soft); font-size: 0.82rem; }

.reviews-hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.reviews-wall { background: var(--offwhite); padding-top: 90px; }
.reviews-grid {
  columns: 3;
  column-gap: 22px;
}
.review-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 26px 24px;
  margin-bottom: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(156, 126, 65, 0.3); }

.review-card figcaption { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-card .avatar { background: var(--av, var(--gold)); width: 42px; height: 42px; font-size: 0.75rem; }
.review-meta { flex: 1; min-width: 0; }
.review-meta strong { display: block; font-size: 0.93rem; color: var(--charcoal); line-height: 1.3; }
.review-meta small { color: var(--ink-soft); font-size: 0.76rem; }

.g-badge {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55% / 150% 150% no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.review-card .stars { margin-bottom: 12px; font-size: 0.88rem; }
.review-card blockquote {
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 16px;
}

.owner-reply {
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
}
.owner-reply strong { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 4px; }
.owner-reply p { font-size: 0.85rem; color: var(--ink-soft); }

.review-card-cta {
  background: linear-gradient(150deg, var(--charcoal), var(--charcoal-3));
  text-align: left;
}
.review-cta-title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--offwhite); margin-bottom: 10px; }
.review-cta-sub { font-size: 0.9rem; color: rgba(238, 240, 239, 0.65); margin-bottom: 22px; }

.reviews-disclaimer { text-align: center; margin-top: 30px; font-size: 0.85rem; color: var(--ink-soft); }
.reviews-disclaimer a { color: var(--gold); font-weight: 500; text-decoration: underline; }

@media (max-width: 1020px) { .reviews-grid { columns: 2; } }
@media (max-width: 640px) { .reviews-grid { columns: 1; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .pulse-dot::after, .marquee-track, .hero-ring, .hero-blob { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.btn) { font-size: 0.86rem; }
}

@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 44px; }
  .float-award { left: 0; }
  .float-result { right: 0; }
  .price-grid-3 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .corporate-grid { grid-template-columns: 1fr; gap: 48px; }
  .tiktok-grid { grid-template-columns: repeat(3, 1fr); }
  .tt-follow { grid-column: span 3; aspect-ratio: auto; padding: 26px; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 64px; }
  .hero-visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .videos-grid { grid-template-columns: 1fr; gap: 24px; padding: 16px; }
  .playlist-scroll { max-height: 330px; }
  .about-visual { max-width: 400px; }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .cta-inner { flex-direction: column; text-align: center; justify-content: center; }
  .section { padding: 80px 0; }
  .meals-intro { flex-direction: column; text-align: center; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #f7f5ee;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    box-shadow: 0 20px 30px rgba(21, 28, 37, 0.18);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a:not(.btn) { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 16px; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 30px 22px; }
  .hero-actions .btn { width: 100%; }
  .subscribe-card { flex-wrap: wrap; }
}

/* ==========================================================================
   MOBILE RE-ENGINEERING
   Desktop is untouched; below 880px content switches to swipeable rails and
   compact layouts so the page reads in far fewer screen-heights.
   ========================================================================== */

@media (max-width: 880px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .section-sub { font-size: 0.95rem; }

  /* --- Swipeable rails (services, corporate partners, TikTok stories) --- */
  .services-grid,
  .corporate-clients,
  .tiktok-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 4px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar,
  .corporate-clients::-webkit-scrollbar,
  .tiktok-grid::-webkit-scrollbar { display: none; }

  .service-card {
    flex: 0 0 min(72vw, 290px);
    scroll-snap-align: start;
    padding: 24px 22px;
  }
  .service-icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .service-card p { font-size: 0.86rem; }

  .client-tile { flex: 0 0 230px; scroll-snap-align: start; }

  .tt-card { flex: 0 0 min(46vw, 200px); scroll-snap-align: start; aspect-ratio: 9 / 16; }
  .tt-follow { flex: 0 0 220px; }

  /* --- Contact: booking form first, details after --- */
  .contact-form { order: -1; }

  /* --- Hero: compact, no overlap --- */
  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero-grid { gap: 30px; padding-bottom: 46px; }
  .hero-copy h1 { margin-bottom: 16px; }
  .hero-copy .lead { margin-bottom: 24px; font-size: 1.02rem; }
  .hero-actions { margin-bottom: 24px; }
  .hero-watermark { width: 420px; right: -140px; }
  .hero-visual { max-width: 330px; }
  .hero-ring { inset: -14px; }
  .float-result { display: none; }
  .float-award {
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    max-width: 290px;
    width: max-content;
    padding: 12px 16px;
    animation: none;
  }
  .float-award strong { font-size: 0.78rem; }
  .hero-photo-frame { margin-bottom: 26px; }
  .hero-curve { height: 42px; }
  .trustbar { padding: 20px 0 24px; }
  .marquee-track span { font-size: 0.9rem; }

  /* --- Stats: 2×2, tighter --- */
  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stat p { font-size: 0.8rem; }

  /* --- Packages: tabs fit the screen, compact cards --- */
  .tabs { width: 100%; align-items: stretch; margin-bottom: 34px; }
  .tab {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .price-card { padding: 28px 24px; }
  .price { font-size: 2rem; margin-bottom: 18px; }
  .price-card ul { gap: 9px; margin-bottom: 24px; }
  .price-card li { font-size: 0.88rem; }
  .meals-intro { gap: 16px; margin-bottom: 26px; }
  .meals-intro img { width: 96px; height: 96px; }
  .meals-table th, .meals-table td { padding: 13px 16px; }

  /* --- About / corporate: calmer imagery --- */
  .about-grid { gap: 34px; }
  .about-photo-frame { aspect-ratio: 4 / 4; }
  .about-award { position: static; margin: 14px auto 0; animation: none; max-width: 100%; }
  .corporate-photo { margin-top: 28px; }
  .corporate-grid { gap: 36px; }

  /* --- Gallery / video hub / testimonials --- */
  .gallery { gap: 16px; }
  .gallery-item { flex: 0 0 min(78vw, 340px); }
  .videos-grid { border-radius: 20px; }
  .playlist-scroll { max-height: 264px; }
  .t-carousel { margin-bottom: 40px; }
  .t-slide blockquote { font-size: 1.1rem; }

  /* --- FAQ / contact / footer: tighter --- */
  .faq-intro p { margin-bottom: 20px; }
  .faq-item summary { padding: 16px 18px; font-size: 0.92rem; }
  .contact-grid { gap: 38px; }
  .contact-list { gap: 14px; margin-bottom: 22px; }
  .directions-card { margin-bottom: 22px; }
  .cta-banner { padding: 54px 0; }
  .site-footer { padding-top: 54px; }
  .footer-grid { gap: 32px; padding-bottom: 40px; }
}

@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .reviews-grid { columns: 1; }
  .review-card { padding: 22px 20px; }
  .rating-summary { padding: 16px 22px; gap: 14px; }
  .rating-number { font-size: 2.4rem; }
}
