/* ============================================================
   Café Vereda — demo.css
   Lane: Warm-craft · Palette: oklch hue 32 (terracotta/cinnamon)
   Fonts: Fraunces (display) + Lato (body)
   Layout breaks: paper-edge · offset-column
   Motion: hover-lift only
   ============================================================ */

/* ── 0. TOKENS ───────────────────────────────────────────────────────────── */
:root {
  --color-primary:    oklch(58% 0.14 32deg);
  --color-primary-lt: oklch(76% 0.09 35deg);
  --color-primary-dk: oklch(36% 0.12 28deg);
  --color-bg:         oklch(97% 0.015 42deg);
  --color-surface:    oklch(92% 0.025 38deg);
  --color-text:       oklch(20% 0.04 32deg);
  --color-text-muted: oklch(54% 0.05 35deg);
  --color-accent:     oklch(70% 0.08 58deg);
  --color-border:     oklch(85% 0.035 40deg);
  --ff-display: "Fraunces", georgia, serif;
  --ff-body:    "Lato", system-ui, sans-serif;
  --container-max: 1100px;
  --section-pad:   80px;
  --section-pad-sm: 52px;
  --radius-btn: 5px;
  --radius-card: 8px;
}

/* ── 1. RESET + BASE ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

/* ── 2. TYPOGRAPHY SCALE ─────────────────────────────────────────────────── */
.section-heading {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-wrap: balance;
}

/* ── 3. CONTAINER + UTILITIES ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header--center {
  text-align: center;
}

.section-sub {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  text-wrap: balance;
}

/* ── 4. BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.7em 1.55em;
  border-radius: var(--radius-btn);
  border: none;
  text-decoration: none;
  transition: background 150ms ease, box-shadow 150ms ease;
  box-shadow: inset 0 -2px 0 oklch(36% 0.12 28deg / 25%);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: oklch(98% 0.005 40deg);
}

.btn-primary:hover {
  background: var(--color-primary-dk);
  box-shadow: inset 0 -2px 0 oklch(20% 0.04 32deg / 30%);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1.5px var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-border);
}

.btn-hero {
  background: oklch(98% 0.008 42deg);
  color: var(--color-primary-dk);
  box-shadow: inset 0 -2px 0 oklch(36% 0.12 28deg / 15%);
}

.btn-hero:hover {
  background: var(--color-bg);
}

/* ── 5. LAYOUT BREAK: paper-edge ─────────────────────────────────────────── */
.paper-edge {
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  padding-bottom: calc(var(--section-pad) + 5vw);
}

/* ── 6. DISMISS INPUT (announcement bar) ─────────────────────────────────── */
.dismiss-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.dismiss-input:checked ~ .announcement-bar {
  display: none;
}

/* ── 7. ANNOUNCEMENT BAR ──────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--color-primary-dk);
  color: oklch(96% 0.01 40deg);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.announcement-msg {
  text-align: center;
  line-height: 1.5;
}

.announcement-cta {
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
  color: var(--color-accent);
}
.announcement-cta:hover { color: oklch(98% 0.01 42deg); }

.announcement-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0.65;
  padding: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.announcement-close:hover { opacity: 1; }

/* ── 8. SITE NAV ─────────────────────────────────────────────────────────── */
.nav-toggle-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: oklch(98% 0.012 42deg / 96%);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 8px oklch(20% 0.04 32deg / 6%);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}

.nav-brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--color-primary-dk);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 150ms ease;
}
.nav-links li a:hover { color: var(--color-primary); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.88rem;
  padding: 0.55em 1.2em;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle-input:checked ~ .nav-inner .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked ~ .nav-inner .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked ~ .nav-inner .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (width <= 768px) {
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: oklch(98% 0.012 42deg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px oklch(20% 0.04 32deg / 10%);
    z-index: 89;
  }
  .nav-links li a { font-size: 1.05rem; color: var(--color-text); }

  /* CSS checkbox trick — no JS */
  .site-nav:has(.nav-toggle-input:checked) .nav-links { display: flex; }
}

/* ── 9. HERO ─────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: clamp(480px, 72vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dk);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-primary-dk);
  opacity: 0.70;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(64px, 10vw, 120px);
}

.hero-text {
  max-width: 640px;
}

.hero-headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: oklch(97% 0.008 42deg);
  text-wrap: balance;
  margin-bottom: 1.1rem;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: oklch(88% 0.02 38deg);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

/* ── 10. STATS ───────────────────────────────────────────────────────────── */
.stats-section {
  background: var(--color-surface);
  padding-block: var(--section-pad-sm);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-primary-dk);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ── 11. ABOUT (offset-column layout break) ──────────────────────────────── */
.about-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: 0;
  align-items: start;
}

.about-image-col {
  margin-right: -24px;
  position: relative;
  z-index: 1;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 36px oklch(20% 0.04 32deg / 14%);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-primary-lt), var(--color-surface));
  border-radius: var(--radius-card);
}

.about-text-col {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 4.5rem);
  box-shadow: inset 0 0 0 1px var(--color-border);
}
.about-text-col .section-heading { margin-bottom: 1.25rem; }
.about-body { color: var(--color-text); margin-bottom: 1.25rem; }
.about-body p, .about-body div { margin-bottom: 0.85rem; line-height: 1.75; }

.about-topical {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.about-eeeat {
  font-size: 0.88rem;
  color: var(--color-primary-dk);
  font-style: italic;
  border-left: 2px solid var(--color-primary-lt);
  padding-left: 0.85rem;
  margin-top: 1.25rem;
}

@media (width <= 700px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .about-text-col {
    padding: 1.75rem 1.5rem;
  }
}

/* ── 12. MENU PREVIEW ────────────────────────────────────────────────────── */
.menu-section {
  background: var(--color-surface);
  padding-block: var(--section-pad);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 2px 8px oklch(20% 0.04 32deg / 6%);
}

.menu-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.menu-item-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.menu-item-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-dk);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.menu-item-desc p, .menu-item-desc div { margin: 0; }

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.menu-tag {
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-surface);
  color: var(--color-text-muted);
  border-radius: 3px;
  padding: 0.2em 0.6em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .menu-card {
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  .menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px oklch(20% 0.04 32deg / 10%);
  }
}

/* ── 13. HOW IT WORKS ────────────────────────────────────────────────────── */
.how-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  counter-reset: steps;
}

.step-item {
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.step-num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-primary-lt);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.step-icon-wrap {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 0.9rem;
}

.step-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.step-body {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.step-body p, .step-body div { margin: 0; }

/* ── 14. SERVICES ────────────────────────────────────────────────────────── */
.services-section {
  padding-block: var(--section-pad);
  background: var(--color-surface);
}

.services-heading {
  margin-bottom: 2.5rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.service-row:first-child { border-top: 1px solid var(--color-border); }

.service-row-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.3rem;
}

.service-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--color-text);
}

.service-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary-dk);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.service-desc p, .service-desc div { margin: 0; }

/* ── 15. HOURS ───────────────────────────────────────────────────────────── */
.hours-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}
.hours-section .section-heading { margin-bottom: 2rem; }

.hours-table {
  max-width: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  background: var(--color-bg);
  align-items: center;
}
.hours-row--alt { background: var(--color-surface); }
.hours-row--closed { opacity: 0.5; }

.hours-day {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.hours-time {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-variant-numeric: tabular-nums;
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 480px;
}
.hours-note i { color: var(--color-primary); margin-top: 0.2em; flex-shrink: 0; }

/* ── 16. GALLERY ─────────────────────────────────────────────────────────── */
.gallery-section {
  padding-block: var(--section-pad);
  background: var(--color-surface);
}

.gallery-header {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  padding-inline: clamp(20px, 5vw, 48px);
  max-width: var(--container-max);
  margin-inline: auto;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-card); }

.gallery-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, oklch(20% 0.04 32deg / 70%));
  color: oklch(96% 0.01 42deg);
  font-size: 0.78rem;
  padding: 1.5rem 0.85rem 0.6rem;
  line-height: 1.4;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .gallery-img {
    transition: transform 300ms ease;
  }

  .gallery-item:hover .gallery-img {
    transform: scale(1.04);
  }
}

/* ── 17. TEAM ────────────────────────────────────────────────────────────── */
.team-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.team-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-surface);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-border);
  background: linear-gradient(160deg, var(--color-surface), var(--color-bg));
}

.team-info {
  padding: 1.25rem 1.35rem 1.5rem;
}

.team-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.team-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.team-bio p, .team-bio div { margin: 0; }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .team-card {
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  .team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px oklch(20% 0.04 32deg / 10%);
  }
}

/* ── 18. TESTIMONIALS ────────────────────────────────────────────────────── */
.testimonials-section {
  padding-block: var(--section-pad);
  background: var(--color-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--ff-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--color-border);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.88rem;
  display: flex;
  gap: 0.15em;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: normal;
  flex: 1;
}
.testimonial-quote p, .testimonial-quote div { margin: 0; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-avatar-ph {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-border);
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .testimonial-card {
    transition: transform 200ms ease, box-shadow 200ms ease;
  }

  .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px oklch(20% 0.04 32deg / 10%);
  }
}

/* ── 19. TRUST BADGES ────────────────────────────────────────────────────── */
.trust-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}
.trust-heading { margin-bottom: 2.5rem; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.75rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.trust-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--color-primary);
  overflow: hidden;
}

.trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.trust-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── 20. OFFER ───────────────────────────────────────────────────────────── */
.offer-section {
  padding-block: var(--section-pad);
  background: var(--color-surface);
}

.offer-card {
  max-width: 600px;
  margin-inline: auto;
  background: var(--color-bg);
  border-radius: var(--radius-card);
  border: 1.5px dashed var(--color-primary-lt);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: inset 0 0 0 4px oklch(97% 0.015 42deg);
}

.offer-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.offer-headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.offer-body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.offer-body p, .offer-body div { margin: 0 0 0.5rem; }

.offer-code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
}

.offer-code-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.offer-code {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--color-primary-dk);
  font-variant-numeric: tabular-nums;
}
.offer-cta { margin-top: 0; }

/* ── 21. FAQ ─────────────────────────────────────────────────────────────── */
.faq-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}
.faq-section .section-heading { margin-bottom: 2.5rem; }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-question {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq-answer p, .faq-answer div { margin: 0 0 0.4rem; }
.faq-answer p:last-child, .faq-answer div:last-child { margin-bottom: 0; }

/* ── 22. MAP ─────────────────────────────────────────────────────────────── */
.map-section {
  padding-block: var(--section-pad);
  background: var(--color-surface);
}

.map-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.map-heading { margin-bottom: 1rem; }

.map-address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.map-address i { color: var(--color-primary); margin-top: 0.25em; flex-shrink: 0; }

.map-dir-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-dir-link:hover { color: var(--color-primary-dk); }

.map-embed iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
}

.map-placeholder {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 280px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 2rem;
}
.map-placeholder i { font-size: 2.5rem; color: var(--color-primary-lt); }
.map-placeholder p { font-size: 0.9rem; }

@media (width <= 700px) {
  .map-layout { grid-template-columns: 1fr; }
}

/* ── 23. CONTACT ─────────────────────────────────────────────────────────── */
.contact-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}
.contact-details .section-heading { margin-bottom: 1.5rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.contact-item i {
  font-size: 1rem;
  color: var(--color-primary);
  margin-top: 0.15em;
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
}
.contact-item a:hover { color: var(--color-primary); text-decoration: underline; }

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: oklch(45% 0.15 152deg);
}
.contact-wa-btn:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 2rem 2rem 2.25rem;
}

.contact-form-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.contact-flash {
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.contact-flash--success {
  background: oklch(92% 0.05 145deg);
  color: oklch(30% 0.10 145deg);
}

.contact-flash--error {
  background: oklch(93% 0.06 20deg);
  color: oklch(32% 0.12 20deg);
}
.contact-flash--error ul { list-style: disc; padding-left: 1.25rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  padding: 0.6rem 0.85rem;
  width: 100%;
  transition: border-color 150ms ease;
  outline: none;
  line-height: 1.5;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }

@media (width <= 700px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── 24. CTA BANNER (dark sienna accent-band) ────────────────────────────── */
.cta-banner {
  background: var(--color-primary-dk);
  padding-block: var(--section-pad);
  text-align: center;
}

.cta-banner-inner {
  max-width: 680px;
}

.cta-banner-headline {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: oklch(97% 0.008 42deg);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-banner-body {
  font-size: 1.05rem;
  color: oklch(80% 0.025 38deg);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.cta-banner-body p, .cta-banner-body div { margin: 0 0 0.5rem; }
.cta-banner-btn { font-size: 1rem; padding: 0.85em 2em; }

/* ── 25. LOGOS ───────────────────────────────────────────────────────────── */
.logos-section {
  padding-block: var(--section-pad-sm);
  background: var(--color-surface);
}
.logos-section .section-heading { margin-bottom: 1.75rem; }

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.logo-item {
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 150ms ease, filter 150ms ease;
}
.logo-item:hover { opacity: 1; filter: none; }
.logo-item img { height: 36px; width: auto; object-fit: contain; }
.logo-name { font-weight: 700; font-size: 0.9rem; color: var(--color-text-muted); }

/* ── 26. VIDEO ───────────────────────────────────────────────────────────── */
.video-section {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}
.video-section .section-heading { margin-bottom: 1.5rem; }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-surface);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  text-align: center;
  font-style: italic;
}

/* ── 27. SOCIAL FEED ─────────────────────────────────────────────────────── */
.social-section {
  padding-block: var(--section-pad);
  background: var(--color-surface);
}
.social-section .section-heading { margin-bottom: 1rem; }

.social-handle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}
.social-handle a { color: var(--color-primary); font-weight: 700; }
.social-handle a:hover { text-decoration: underline; }

.social-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.social-post {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.social-post-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.social-post-link i {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.1em;
}
.social-post-link:hover { color: var(--color-text); }

/* ── 28. FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-primary-dk);
  color: oklch(82% 0.02 38deg);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) 2rem;
}

.footer-inner {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 2rem;
}

.footer-name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: oklch(97% 0.008 42deg);
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: oklch(72% 0.025 38deg);
  font-style: italic;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: oklch(72% 0.025 38deg);
  transition: color 150ms ease;
}
.footer-nav a:hover { color: oklch(97% 0.008 42deg); }

.footer-bottom {
  border-top: 1px solid oklch(46% 0.08 28deg);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.footer-nap {
  font-size: 0.8rem;
  color: oklch(65% 0.02 36deg);
  line-height: 1.5;
  flex: 1 0 100%;
  margin-bottom: 0.25rem;
}
.footer-nap a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.footer-copy {
  font-size: 0.78rem;
  color: oklch(58% 0.02 36deg);
  flex: 1;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: oklch(44% 0.09 28deg);
  color: oklch(88% 0.015 40deg);
  font-size: 0.95rem;
  transition: background 150ms ease;
}
.social-link:hover { background: var(--color-primary); color: oklch(98% 0.005 40deg); }

.footer-credit {
  font-size: 0.75rem;
  color: oklch(50% 0.02 36deg);
  flex: 1 0 100%;
  margin-top: 0.25rem;
}
.footer-credit a { color: var(--color-primary-lt); text-decoration: underline; text-underline-offset: 2px; }

/* ── 29. MOBILE CTA BAR ──────────────────────────────────────────────────── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: oklch(98% 0.012 42deg / 97%);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px oklch(20% 0.04 32deg / 12%);
  padding: 0.6rem 1rem;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 0.75rem;
}

.mobile-cta-bar > a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65em 1em;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: background 150ms ease;
}

.mobile-cta-call {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.mobile-cta-call:hover { background: var(--color-border); }

.mobile-cta-whatsapp {
  background: oklch(50% 0.17 152deg);
  color: oklch(98% 0.01 42deg);
}
.mobile-cta-whatsapp:hover { background: oklch(42% 0.15 152deg); }

.mobile-cta-instagram {
  background: var(--color-primary);
  color: oklch(98% 0.005 40deg);
  flex: 1;
}
.mobile-cta-instagram:hover { background: var(--color-primary-dk); }

@media (width >= 769px) {
  .mobile-cta-bar { display: none; }
}

@media (width <= 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* ── 30. PRINT ───────────────────────────────────────────────────────────── */
@media print {
  .site-nav,
  .announcement-bar,
  .mobile-cta-bar,
  .hero-overlay { display: none; }
  .hero-section { min-height: auto; color: var(--color-text); }
  .hero-headline { color: var(--color-text); }
  .cta-banner { background: var(--color-surface); color: var(--color-text); }
  .cta-banner-headline { color: var(--color-text); }
}
