/* =========================================================
   GlobalRestaurantHub.com — Premium Corporate Design System
   Restaurant Website Design, SEO, AEO, GEO, Digital Marketing
   ========================================================= */

:root {
  /* Brand */
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-cream: #f6f2ec;
  --ink: #0f1115;
  --ink-2: #1f242c;
  --ink-3: #3b424c;
  --muted: #6b7280;
  --line: #e5e0d6;
  --line-2: #eceae3;

  /* Accents */
  --brand: #c8341d;        /* warm restaurant red */
  --brand-2: #a02612;
  --gold: #c7a35a;
  --gold-deep: #9a7a39;
  --olive: #4a5a3a;
  --night: #0b1322;
  --emerald: #1f5d4c;

  /* Gradient palette for CTAs */
  --grad-1: linear-gradient(135deg, #c8341d 0%, #f08019 100%);
  --grad-2: linear-gradient(135deg, #0b1322 0%, #1f5d4c 100%);
  --grad-3: linear-gradient(135deg, #2b1d12 0%, #c7a35a 120%);
  --grad-4: linear-gradient(135deg, #4a1c1c 0%, #c8341d 100%);

  /* Type */
  --f-serif: "Fraunces", "Source Serif Pro", Georgia, serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --max: 1320px;
  --max-wide: 1480px;
  --gutter: clamp(18px, 3.5vw, 44px);

  --t-eyebrow: 12px;
  --t-body: 16px;
  --t-lead: 19px;
  --t-h4: clamp(18px, 1.6vw, 22px);
  --t-h3: clamp(22px, 2.2vw, 30px);
  --t-h2: clamp(30px, 3.6vw, 48px);
  --t-h1: clamp(38px, 5.8vw, 76px);

  /* Radii / shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 10px rgba(15, 17, 21, 0.06);
  --shadow-md: 0 12px 30px rgba(15, 17, 21, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 17, 21, 0.14);

  --ease: cubic-bezier(.22,.7,.2,1);
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: var(--t-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .6em;
}
h1 { font-size: var(--t-h1); line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: var(--t-h2); line-height: 1.08; }
h3 { font-size: var(--t-h3); line-height: 1.18; }
h4 { font-size: var(--t-h4); line-height: 1.25; }
h1 em, h2 em { font-style: italic; color: var(--brand); font-weight: 400; }

p { margin: 0 0 1em; color: var(--ink-2); }

.container { width: min(100% - calc(var(--gutter) * 2), var(--max)); margin-inline: auto; }
.container-wide { width: min(100% - calc(var(--gutter) * 1.4), var(--max-wide)); margin-inline: auto; }

.eyebrow {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: var(--t-eyebrow);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--brand); }
.eyebrow.center { justify-content: center; }
.eyebrow.dark { color: var(--gold); }
.eyebrow.dark::before { background: var(--gold); }

.lead { font-size: var(--t-lead); color: var(--ink-3); line-height: 1.55; max-width: 64ch; }

/* =========================================================
   TOP ANNOUNCEMENT BAR
   ========================================================= */
.announce {
  background: linear-gradient(90deg, #0b1322 0%, #1f5d4c 100%);
  color: #f4efe6;
  font-size: 13px;
  padding: 9px 0;
}
.announce-inner {
  width: min(100% - calc(var(--gutter) * 2), var(--max-wide));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  flex-wrap: wrap;
}
.announce a { color: #f5d99a; font-weight: 600; }
.announce .dot { width: 6px; height: 6px; background: #c8341d; border-radius: 50%; display: inline-block; margin-right: 8px; vertical-align: middle; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1);} 50% { opacity: .5; transform: scale(1.3);} }

/* =========================================================
   HEADER NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(100% - calc(var(--gutter) * 2), var(--max-wide));
  margin: 0 auto;
  display: flex; align-items: center; gap: 22px;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-serif); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad-1);
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-serif);
  font-weight: 600; font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.brand em { font-style: italic; color: var(--brand); font-weight: 400; }

.primary-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-wrap: wrap; }
.primary-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  padding: 8px 12px; border-radius: 8px;
  transition: background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.primary-nav a:hover, .primary-nav a.is-active { background: var(--bg-cream); color: var(--brand); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--brand) !important; color: #fff !important; }
.nav-cta .arr { transition: transform .25s var(--ease); }
.nav-cta:hover .arr { transform: translateX(3px); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

@media (max-width: 1100px) {
  .primary-nav { display: none; position: fixed; inset: 0 0 0 30%; background: #fff; padding: 80px 30px; flex-direction: column; align-items: flex-start; gap: 4px; box-shadow: var(--shadow-lg); }
  .primary-nav.open { display: flex; }
  .primary-nav a { width: 100%; font-size: 16px; padding: 12px 14px; }
  .nav-toggle { display: block; }
  .nav-cta { margin-top: 14px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn.primary { background: var(--brand); border-color: var(--brand); }
.btn.primary:hover { background: var(--brand-2); border-color: var(--brand-2); }
.btn.gold { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn.gold:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.on-dark.ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.btn.on-dark.ghost:hover { background: #fff; color: var(--ink); }
.btn.lg { padding: 16px 28px; font-size: 16px; }
.btn.sm { padding: 10px 18px; font-size: 13px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0 clamp(64px, 7vw, 110px);
  overflow: hidden;
  background: radial-gradient(80% 60% at 80% 0%, rgba(200,52,29,.06) 0%, transparent 60%), var(--bg);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 10% 100%, rgba(199,163,90,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 64px); align-items: center;
  position: relative;
}
.hero-copy h1 { margin-bottom: .35em; }
.hero-copy .lead { margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.hero-trust {
  margin-top: 36px;
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-trust .stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num { font-family: var(--f-serif); font-size: 28px; line-height: 1; color: var(--ink); }
.hero-trust .label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

.hero-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -22px; top: 28px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--f-serif); font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-md);
}
.hero-badge strong { display: block; font-size: 22px; color: var(--brand); }
.hero-badge.bottom { top: auto; bottom: 28px; left: auto; right: -22px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 5/4; }
  .hero-badge { left: 14px; }
  .hero-badge.bottom { right: 14px; left: auto; }
}

/* =========================================================
   MARQUEE / LOGO STRIP
   ========================================================= */
.logo-strip {
  background: var(--bg-cream);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-strip .label { text-align: center; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .18em; margin-bottom: 18px; }
.logos {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 30px;
  font-family: var(--f-serif); font-size: 22px; color: var(--ink-3);
  opacity: .8;
}
.logos span { display: inline-flex; align-items: center; gap: 8px; }
.logos span::before { content: "◆"; color: var(--gold); }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section {
  padding: clamp(56px, 7vw, 108px) 0;
  position: relative;
}
.section.tight { padding: clamp(36px, 4.5vw, 70px) 0; }
.section.dark { background: var(--night); color: #e8eaef; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark p { color: rgba(232,234,239,.78); }
.section.cream { background: var(--bg-cream); }
.section.soft { background: var(--bg-soft); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; margin-right: auto; text-align: left; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-3); font-size: 18px; line-height: 1.55; }

/* =========================================================
   FEATURE GRID
   ========================================================= */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-cream);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature h3 { font-size: 22px; margin-bottom: 10px; }
.feature p { color: var(--ink-3); }
.feature a.more { font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.feature a.more:hover { gap: 10px; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1180px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   SERVICES MASONRY (alternating big card)
   ========================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 260px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc.span-6 { grid-column: span 6; }
.svc.span-4 { grid-column: span 4; }
.svc.span-8 { grid-column: span 8; }
.svc.span-12 { grid-column: span 12; }
.svc .num { font-family: var(--f-serif); font-size: 13px; color: var(--muted); }
.svc h3 { font-size: 28px; margin-top: 8px; }
.svc p { color: var(--ink-3); }
.svc ul { margin: 0; padding-left: 18px; color: var(--ink-3); }
.svc ul li { margin-bottom: 6px; }
.svc .ico-lg {
  position: absolute; top: 22px; right: 24px;
  font-size: 34px; opacity: .85;
}
.svc.dark { background: var(--night); color: #f5f6f8; border-color: transparent; }
.svc.dark h3 { color: #fff; }
.svc.dark p { color: rgba(245,246,248,.78); }
.svc.brand { background: var(--grad-1); color: #fff; border-color: transparent; }
.svc.brand h3 { color: #fff; }
.svc.brand p { color: rgba(255,255,255,.86); }
.svc.brand .num { color: rgba(255,255,255,.7); }
.svc .arr-row { margin-top: auto; padding-top: 22px; display: flex; align-items: center; gap: 8px; font-weight: 600; }
.svc:hover .arr-row { gap: 12px; }

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(6, 1fr); }
  .svc.span-6 { grid-column: span 6; }
  .svc.span-4 { grid-column: span 3; }
  .svc.span-8 { grid-column: span 6; }
  .svc.span-12 { grid-column: span 6; }
}
@media (max-width: 700px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc.span-6, .svc.span-4, .svc.span-8, .svc.span-12 { grid-column: span 1; }
}

/* =========================================================
   SPLIT (image + copy)
   ========================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-md);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-bottom: 16px; }
.split-copy .lead { margin-bottom: 18px; }
.split-copy ul { list-style: none; padding: 0; margin: 0 0 24px; }
.split-copy ul li {
  position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-2);
}
.split-copy ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 13px; display: grid; place-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 40px 0;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
}
.stat-card .n {
  font-family: var(--f-serif); font-size: 56px; line-height: 1; color: var(--brand);
  letter-spacing: -0.02em;
}
.stat-card .l { display: block; margin-top: 8px; color: var(--ink-3); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   TABLE
   ========================================================= */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; }
table.compare {
  width: 100%; border-collapse: collapse; min-width: 640px;
  font-size: 15px;
}
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-2); }
table.compare thead th { background: var(--bg-cream); font-weight: 600; color: var(--ink); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover { background: #fcfaf6; }
table.compare td.check { color: var(--emerald); font-weight: 600; }
table.compare td.x { color: var(--brand); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details[open] summary .ico::before { transform: rotate(45deg); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 18px;
  font-family: var(--f-serif); font-size: 22px; font-weight: 500; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico {
  width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%;
  background: var(--bg-cream); position: relative; margin-top: 4px;
}
.faq summary .ico::before, .faq summary .ico::after {
  content: ""; position: absolute; background: var(--ink);
  width: 12px; height: 2px; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.faq summary .ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq .ans { padding-top: 14px; color: var(--ink-3); }

/* =========================================================
   CTA BAND (key sales section)
   ========================================================= */
.cta-band {
  margin: 60px 0;
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  background: var(--grad-1);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band.alt { background: var(--grad-2); }
.cta-band.gold { background: var(--grad-3); }
.cta-band.deep { background: var(--grad-4); }
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band .eyebrow { color: rgba(255,255,255,.85); }
.cta-band .eyebrow::before { background: rgba(255,255,255,.85); }
.cta-band h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  max-width: 16ch;
  margin-bottom: 14px;
}
.cta-band .sub { font-size: 18px; color: rgba(255,255,255,.86); max-width: 56ch; }
.cta-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0 28px;
}
.cta-svc {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-md);
  padding: 16px;
  font-size: 14px; line-height: 1.35;
  display: flex; gap: 12px; align-items: flex-start;
  backdrop-filter: blur(6px);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.cta-svc:hover { transform: translateY(-2px); background: rgba(255,255,255,.18); }
.cta-svc .e { font-size: 22px; line-height: 1; }
.cta-svc strong { display: block; font-weight: 600; font-size: 14px; margin-bottom: 2px; color: #fff; }
.cta-svc span { color: rgba(255,255,255,.78); font-size: 13px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-buttons .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta-buttons .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-buttons .btn.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-buttons .btn.outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

@media (max-width: 900px) { .cta-services { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   CASE STUDY CARD
   ========================================================= */
.cs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.cs-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cs-card .photo { aspect-ratio: 5/4; overflow: hidden; }
.cs-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cs-card:hover img { transform: scale(1.04); }
.cs-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cs-card .tag { font-size: 12px; color: var(--brand); text-transform: uppercase; letter-spacing: .1em; }
.cs-card h3 { font-size: 22px; margin: 0; }
.cs-card .kpi {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 12px;
  padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: 13px;
}
.cs-card .kpi span { color: var(--emerald); font-weight: 700; }
@media (max-width: 1000px) { .cs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .cs-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.crumbs {
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0 0;
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; }
.crumbs ol li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs ol li + li::before { content: "/"; color: var(--line); }
.crumbs a:hover { color: var(--brand); }
.crumbs [aria-current="page"] { color: var(--ink-3); }

/* =========================================================
   PROSE
   ========================================================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.prose ul, .prose ol { color: var(--ink-2); padding-left: 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--brand);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--f-serif);
  font-size: 22px; line-height: 1.4;
  color: var(--ink);
}
.prose blockquote cite { display: block; margin-top: 12px; font-style: normal; font-family: var(--f-sans); font-size: 14px; color: var(--muted); }

/* TOC */
.toc {
  background: var(--bg-cream);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin: 24px 0 36px;
}
.toc strong { display: block; font-family: var(--f-serif); font-size: 18px; margin-bottom: 10px; color: var(--ink); }
.toc ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.toc ol li a { color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.toc ol li a::before { content: "→"; color: var(--brand); }
.toc ol li a:hover { color: var(--brand); }

/* =========================================================
   FORM
   ========================================================= */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-card .row.one { grid-template-columns: 1fr; }
.form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(200,52,29,.12);
}
.form-card textarea { min-height: 130px; resize: vertical; }
.form-card .fine { font-size: 12px; color: var(--muted); margin-top: 8px; }
@media (max-width: 700px) { .form-card .row { grid-template-columns: 1fr; } }

/* =========================================================
   GALLERY (4-up image strip)
   ========================================================= */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/5; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   STICKY MINI CTA
   ========================================================= */
.sticky-cta {
  position: fixed; right: 18px; bottom: 84px;
  z-index: 70;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  text-decoration: none; font-size: 14px; font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.sticky-cta:hover { transform: translateY(-2px); background: var(--brand); }
.sticky-cta .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }

.whatsapp-fab {
  position: fixed; right: 18px; bottom: 18px;
  z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.05); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: #0b0d12;
  color: #cbd2dc;
  padding: 80px 0 28px;
}
.foot a { color: #cbd2dc; }
.foot a:hover { color: #fff; }
.foot h4 { font-family: var(--f-sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot .brand { color: #fff; font-size: 26px; }
.foot .blurb { color: #94a0b1; max-width: 32ch; margin: 16px 0 22px; font-size: 14px; }
.foot .sub-mini input {
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 12px 16px; width: 100%;
}
.foot .sub-mini { position: relative; }
.foot .sub-mini button { position: absolute; right: 4px; top: 4px; bottom: 4px; padding: 0 18px; border-radius: 999px; background: var(--brand); color: #fff; border: 0; cursor: pointer; font-weight: 600; }
.foot .sub-mini button:hover { background: var(--brand-2); }
.foot .bottom {
  display: flex; justify-content: space-between; gap: 14px;
  margin-top: 22px; padding-top: 22px;
  font-size: 13px; color: #94a0b1;
  flex-wrap: wrap;
}
.foot .socials { display: flex; gap: 10px; }
.foot .socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  font-size: 14px;
}
.foot .socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
@media (max-width: 1000px) { .foot .grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 700px) { .foot .grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   PAGE-INTRO BAND (used on every sub-page)
   ========================================================= */
.page-intro {
  padding: clamp(40px, 5vw, 80px) 0 clamp(36px, 4vw, 56px);
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}
.page-intro h1 { max-width: 22ch; }
.page-intro .lead { margin-top: 10px; }

/* =========================================================
   BLOG INDEX
   ========================================================= */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.blog-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .photo { aspect-ratio: 16/10; overflow: hidden; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.blog-card:hover img { transform: scale(1.04); }
.blog-card .body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card .meta { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.blog-card h3 { font-size: 22px; margin: 4px 0 6px; line-height: 1.22; }
.blog-card .excerpt { color: var(--ink-3); font-size: 15px; }
.blog-card .more { margin-top: auto; padding-top: 14px; font-weight: 600; color: var(--brand); }
@media (max-width: 1000px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline { display: grid; gap: 22px; max-width: 820px; margin: 0 auto; }
.tl-row {
  display: grid; grid-template-columns: 100px 1fr; gap: 22px;
  align-items: flex-start;
  border-left: 2px solid var(--line);
  padding-left: 22px; position: relative;
}
.tl-row::before {
  content: ""; position: absolute; left: -8px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--brand);
}
.tl-step { font-family: var(--f-serif); font-size: 26px; color: var(--brand); }
.tl-body h3 { font-size: 22px; margin-bottom: 6px; }
.tl-body p { color: var(--ink-3); }
@media (max-width: 700px) { .tl-row { grid-template-columns: 1fr; } }

/* =========================================================
   BADGE / CHIP
   ========================================================= */
.chip {
  display: inline-block;
  font-size: 12px; padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-cream); color: var(--ink-2);
  font-weight: 600; letter-spacing: .04em;
}
.chip.brand { background: rgba(200,52,29,.1); color: var(--brand); }
.chip.gold { background: rgba(199,163,90,.18); color: var(--gold-deep); }
.chip.dark { background: var(--ink); color: #fff; }

/* =========================================================
   QUOTE BLOCK
   ========================================================= */
.quote-block {
  background: var(--night);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 4vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: "“"; position: absolute; top: -32px; left: 28px;
  font-family: var(--f-serif); font-size: 220px; color: rgba(199,163,90,.18);
  line-height: 1;
}
.quote-block blockquote { font-family: var(--f-serif); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.3; margin: 0 auto; max-width: 36ch; color: #fff; border: 0; padding: 0; }
.quote-block .person { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.7); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 14px; top: 14px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }

/* =========================================================
   UTILS
   ========================================================= */
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.mt-5 { margin-top: 56px; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
