/* ============================================
   Dr. Matias Saiza - Cabo · Diente de Mar
   Premium bilingual dental clinic website
   ============================================ */

:root {
  --navy: #1e3a5f;
  --navy-deep: #142942;
  --navy-ink: #0e1e33;
  --sea: #7fb3b5;
  --sea-soft: #a8cdce;
  --sea-mist: #e8f1f1;
  --sand: #6ea7a9;      /* clinical teal accent (replaces gold) */
  --sand-soft: #cfe3e3;
  --cream: #faf7f1;
  --white: #ffffff;
  --text: #2c3e50;
  --text-soft: #5a6b7d;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(20, 41, 66, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 41, 66, 0.16);
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Inline SVG icons */
svg.ic { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.service-icon svg.ic { width: 28px; height: 28px; color: var(--navy); }
.info-block .ico svg.ic { width: 22px; height: 22px; color: var(--navy); }
.book-note .ico svg.ic { width: 26px; height: 26px; color: var(--sea); }
.inclusive-note svg.ic { width: 16px; height: 16px; }
footer li svg.ic { width: 15px; height: 15px; margin-right: 4px; opacity: 0.8; }
.map-placeholder svg.ic { width: 30px; height: 30px; display: block; margin: 0 auto 8px; }

/* Language visibility */
body:not(.es) [lang-es] { display: none !important; }
body.es [lang-en] { display: none !important; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-intro { max-width: 640px; color: var(--text-soft); margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--sea-soft); color: var(--navy-ink); }
.btn-light:hover { background: #bcd9da; transform: translateY(-2px); }

/* ---------- Header ---------- */
.top-bar {
  background: var(--navy-ink);
  color: var(--sea-soft);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.brand-logo { height: 88px; width: auto; }
nav.main-nav { justify-self: center; }
.header-actions { justify-self: end; }
.nav-cta-item, .nav-lang-item { display: none; }
.brand-text { line-height: 1.2; }
.brand-text strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); letter-spacing: 0.04em; }
.brand-text small { color: var(--text-soft); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.65rem; }

nav.main-nav ul {
  display: flex; gap: 38px; align-items: center;
  background: var(--sea-mist); border-radius: 999px; padding: 12px 36px;
}
nav.main-nav a { font-weight: 500; font-size: 0.95rem; color: var(--text); position: relative; }
nav.main-nav a:hover { color: var(--navy); }
nav.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--sand); transition: width 0.25s;
}
nav.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  border: 1.5px solid var(--navy); border-radius: 999px;
  background: none; padding: 7px 16px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  color: var(--navy); letter-spacing: 0.08em;
  transition: all 0.2s;
}
.lang-toggle:hover { background: var(--navy); color: var(--white); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--navy); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(14,30,51,0.45), rgba(20,41,66,0.55)),
    url("../img/hero.jpg") center 35% / cover no-repeat,
    linear-gradient(160deg, var(--navy-ink) 0%, var(--navy) 55%, #2c5578 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(127,179,181,0.16), transparent 55%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; padding-top: 90px; padding-bottom: 100px; }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: italic; color: var(--sea-soft); }
.hero p.lede { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 520px; margin: 24px 0 36px; }
.hero .eyebrow { color: var(--sand-soft); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note {
  margin-top: 26px;
  font-size: 0.88rem;
  color: var(--sea-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 22px;
  backdrop-filter: blur(6px);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(127,216,165,0.55); }
  50% { opacity: 0.55; box-shadow: 0 0 0 7px rgba(127,216,165,0); }
}
.hero-note .dot { flex-shrink: 0; animation: pulse-dot 1.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero-note .dot { animation: none; } }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(8px);
}
.hero-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.98rem; }
.hours-row:last-of-type { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.75); }
.hours-row .time { color: var(--sand-soft); font-weight: 600; }
.hero-card .open-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(127,179,181,0.18); color: var(--sea-soft);
  border-radius: 999px; padding: 6px 16px; font-size: 0.82rem; font-weight: 600;
  margin-top: 18px; letter-spacing: 0.05em;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: #7fd8a5; display: inline-block; }

/* ---------- Hero simple ---------- */
.hero-simple {
  text-align: center;
  max-width: 860px;
  padding-top: 28px !important;
  padding-bottom: 32px !important;
  display: block !important;
}
.hero-simple h1 { font-size: clamp(1.9rem, 3vw, 2.4rem); }
.hero-simple p.lede { margin: 12px auto 20px !important; font-size: 1.02rem; max-width: 540px; }
.hero-simple .hero-badge { margin-bottom: 14px; padding: 7px 18px; font-size: 0.78rem; }
.hero-simple .hero-note { margin-top: 20px; font-size: 0.82rem; padding: 8px 18px; }
.hero-simple .btn { padding: 13px 30px; font-size: 0.88rem; }
.hero-simple h1 { text-shadow: 0 2px 18px rgba(14,30,51,0.55); }
.hero-simple .lede, .hero-simple .hero-note { text-shadow: 0 1px 10px rgba(14,30,51,0.5); }
.hero-badge .star { color: #3897f0; margin-right: 6px; }
.hero-badge {
  display: inline-block;
  background: rgba(127,179,181,0.16);
  border: 1px solid rgba(127,179,181,0.45);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-simple .lede { margin: 18px auto 28px; max-width: 560px; }
.hero-simple .hero-ctas { justify-content: center; }
.hero-simple .hero-note { justify-content: center; }

/* ---------- Trust badges ---------- */
.badge-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 30px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  border-radius: 999px; padding: 9px 18px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
}
.badge .b-ico { font-size: 1rem; }
.cta-band .badge {
  background: rgba(14,30,51,0.08);
  border-color: rgba(14,30,51,0.22);
  color: var(--navy-ink);
}
.badge-row.on-light .badge {
  background: var(--sea-mist); border-color: rgba(30,58,95,0.12); color: var(--navy);
}

/* ---------- Why / benefit list ---------- */
.why-flex { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.why-intro h2 { margin-bottom: 12px; }
.why-intro p { color: var(--text-soft); margin-bottom: 22px; }
.benefit-list { display: grid; gap: 10px; }
.benefit-list li {
  display: flex; gap: 12px; align-items: center;
  background: var(--white); border: 1px solid rgba(30,58,95,0.08);
  border-radius: 12px; padding: 13px 18px;
  font-weight: 500; font-size: 0.97rem;
}
.benefit-list .check {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--sea-mist); color: var(--sea);
  display: grid; place-items: center; font-size: 0.8rem;
}

/* ---------- Real results gallery ---------- */
.results { background: var(--white); }
.results-track { animation-duration: 40s; }
.result-card {
  width: 300px; flex-shrink: 0;
  border-radius: 14px; overflow: hidden; margin: 0;
  background: var(--sea-mist);
  box-shadow: 0 4px 18px rgba(20,41,66,0.08);
}
.result-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.result-card figcaption {
  background: var(--white); padding: 12px 16px;
  font-weight: 600; color: var(--navy); font-size: 0.92rem;
}
.result-card figcaption small { display: none; }
.result-card.missing img { display: none; }
.result-card.missing figcaption small {
  display: grid; place-items: center; height: 190px;
  font-size: 0.75rem; color: var(--navy); text-align: center; padding: 12px;
  border: 2px dashed var(--sea-soft); border-radius: 12px; margin-bottom: 8px;
  font-weight: 600; background: var(--sea-mist);
}

/* ---------- Reviews carousel ---------- */
.carousel { overflow: hidden; padding: 6px 0 10px; }
.carousel-track {
  display: flex; gap: 22px; width: max-content;
  animation: marquee 32s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }
.carousel .review-card { width: 320px; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reviews-cta { text-align: center; margin-top: 28px; }
@media (prefers-reduced-motion: reduce) {
  .carousel-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Compact sections ---------- */
section.compact { padding: 60px 0; }
section.compact .section-head { margin-bottom: 34px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-deep); color: var(--white); padding: 22px 0; }
.trust-strip .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.trust-item .ico { color: var(--sand); font-size: 1.1rem; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 72px 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 38px 30px;
  border: 1px solid rgba(30,58,95,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sea));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--sea-mist); color: var(--navy);
  display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.service-card p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- About / Cabo section ---------- */
.about { background: var(--cream); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(150deg, var(--sea-mist), var(--sand-soft));
  min-height: 440px;
  display: grid; place-items: center;
}
.about-visual .tooth-motif {
  font-family: var(--font-display);
  color: var(--navy); text-align: center; padding: 40px;
}
.about-visual .tooth-motif .big { font-size: 5rem; line-height: 1; color: var(--sand); }
.about-visual .tooth-motif p { letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.78rem; margin-top: 18px; color: var(--navy); font-family: var(--font-body); }
.about-content h2 { margin-bottom: 22px; }
.about-content p { color: var(--text-soft); margin-bottom: 18px; }
.about-list { margin: 26px 0 34px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.about-list .check { color: var(--sea); font-size: 1.1rem; margin-top: 2px; }

/* ---------- Why choose us ---------- */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  border: 1px solid rgba(30,58,95,0.09);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  background: var(--white);
}
.why-card:hover { border-color: var(--sea); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card .ico { font-size: 1.9rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { color: var(--text-soft); font-size: 0.95rem; }

/* ---------- International ---------- */
.international {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.international::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(201,178,138,0.15), transparent 50%);
}
.international .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.international h2 { color: var(--white); }
.international .eyebrow { color: var(--sand-soft); }
.international p { color: rgba(255,255,255,0.8); margin: 20px 0 28px; }
.intl-list { display: grid; gap: 14px; }
.intl-list li { display: flex; gap: 12px; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 15px 20px; font-size: 0.97rem; }
.intl-list .ico { color: var(--sand); }

/* ---------- Convenience ---------- */
.convenience { background: var(--cream); }
.conv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.conv-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius); box-shadow: 0 4px 20px rgba(20,41,66,0.05); transition: all 0.3s; }
.conv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.conv-card .ico { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--sea-mist); display: grid; place-items: center; font-size: 1.7rem; }
.conv-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.conv-card p { font-size: 0.92rem; color: var(--text-soft); }
.conv-note { text-align: center; margin-top: 40px; color: var(--text-soft); font-size: 0.95rem; }

/* ---------- Payment ---------- */
.payment-strip { background: var(--white); padding: 64px 0; border-top: 1px solid rgba(30,58,95,0.06); }
.payment-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.payment-strip h3 { font-size: 1.6rem; }
.pay-items { display: flex; gap: 18px; flex-wrap: wrap; }
.pay-pill { background: var(--cream); border: 1px solid rgba(30,58,95,0.1); border-radius: 999px; padding: 10px 24px; font-weight: 500; font-size: 0.93rem; display: flex; gap: 8px; align-items: center; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 44px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: 0 4px 20px rgba(20,41,66,0.05); }
.stars { color: var(--sand); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p.quote { color: var(--text-soft); font-style: italic; margin-bottom: 20px; font-size: 0.93rem; }
.review-card .reviewer { font-weight: 600; color: var(--navy); }
.review-src { font-size: 0.78rem; color: var(--text-soft); margin-top: 4px; }
.rating-line { margin-top: 14px; font-size: 1.05rem; color: var(--navy); }
.rating-line .stars { letter-spacing: 2px; }
.carousel .review-card { display: flex; flex-direction: column; }
.carousel .review-card p.quote { flex: 1; }
.reviews-cta { text-align: center; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-info-card { background: var(--cream); border-radius: 20px; padding: 44px; }
.info-block { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(30,58,95,0.08); }
.info-block:last-child { border-bottom: none; }
.info-block .ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--sea-mist); display: grid; place-items: center; font-size: 1.2rem; }
.info-block h4 { color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.info-block p { color: var(--text-soft); font-size: 0.95rem; }
.placeholder-chip {
  display: inline-block; background: var(--sand-soft); color: var(--navy);
  font-size: 0.8rem; padding: 2px 10px; border-radius: 6px; font-weight: 600;
}
.map-placeholder {
  margin-top: 28px; border-radius: 14px; min-height: 220px;
  background: repeating-linear-gradient(45deg, var(--sea-mist), var(--sea-mist) 12px, #f0f6f6 12px, #f0f6f6 24px);
  display: grid; place-items: center; color: var(--navy); font-weight: 600;
  border: 2px dashed var(--sea-soft); text-align: center; padding: 20px;
}

.hours-table { width: 100%; margin-top: 10px; }
.hours-table td { padding: 8px 0; font-size: 0.95rem; color: var(--text-soft); }
.hours-table td:last-child { text-align: right; color: var(--navy); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--sea-soft);
  color: var(--navy-ink); text-align: center; padding: 80px 0;
}
.cta-band h2 { color: var(--navy-ink); margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 34px; color: rgba(14,30,51,0.75); font-size: 1.08rem; }

/* ---------- Footer ---------- */
footer { background: var(--navy-ink); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 1.4rem; display: block; margin-bottom: 4px; }
.footer-brand small { letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.65rem; color: var(--sea-soft); }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; }
footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }
footer ul li { margin-bottom: 12px; font-size: 0.93rem; }
footer a:hover { color: var(--sand-soft); }
.footer-hours td { padding: 4px 0; font-size: 0.9rem; }
.footer-hours td:last-child { padding-left: 20px; color: var(--sand-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; font-size: 0.85rem; text-align: center; }
.inclusive-note { display: inline-flex; gap: 8px; align-items: center; margin-top: 16px; font-size: 0.85rem; color: var(--sea-soft); }

/* ---------- Book page ---------- */
.book-hero { background: linear-gradient(160deg, var(--navy-ink), var(--navy)); color: var(--white); text-align: center; padding: 90px 0 70px; }
.book-hero h1 { color: var(--white); }
.book-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 20px auto 0; }
.book-section { padding: 80px 0; background: var(--cream); }
.calendar-placeholder {
  max-width: 860px; margin: 0 auto;
  border: 2px dashed var(--sea-soft); border-radius: 20px;
  background: var(--white); padding: 100px 40px; text-align: center;
  color: var(--navy);
}
.calendar-placeholder .chip { font-family: monospace; background: var(--sea-mist); padding: 8px 18px; border-radius: 8px; display: inline-block; margin-top: 14px; color: var(--navy-deep); font-size: 0.95rem; }
.book-notes { max-width: 860px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.book-note { background: var(--white); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: 0 4px 20px rgba(20,41,66,0.05); font-size: 0.95rem; }
.book-note .ico { font-size: 1.6rem; display: block; margin-bottom: 10px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container, .about .container, .international .container, .contact .container { grid-template-columns: 1fr; gap: 48px; }
  .why-flex { grid-template-columns: 1fr; gap: 28px; }
  .services-grid, .conv-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .reviews-grid, .book-notes { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  header.site-header { backdrop-filter: none; background: var(--cream); }
  .nav-wrap { display: flex; align-items: center; justify-content: center; position: static; }
  .header-actions { position: static; }
  .header-actions .lang-toggle, .header-actions .btn { display: none; }
  .menu-toggle {
    display: block; position: absolute; right: 20px; top: 44px;
    transform: translateY(-50%);
  }
  nav.main-nav {
    display: none; position: fixed; top: 88px; left: 0;
    width: 100vw; height: calc(100vh - 88px);
    background: var(--cream); z-index: 99;
    padding: 48px 28px;
    overflow-y: auto;
    box-sizing: border-box;
    justify-self: auto;
  }
  nav.main-nav.open { display: block; }
  body.nav-open { overflow: hidden; }
  nav.main-nav ul {
    flex-direction: column; gap: 8px; align-items: stretch;
    background: none; border-radius: 0; padding: 0;
  }
  nav.main-nav ul li { text-align: center; }
  nav.main-nav ul a {
    display: block; font-size: 1.35rem; font-weight: 600; color: var(--navy);
    padding: 16px 0; border-bottom: 1px solid rgba(30,58,95,0.08);
  }
  nav.main-nav ul a::after { display: none; }
  nav.main-nav ul a.nav-cta {
    color: var(--white); font-size: 1rem; border-bottom: none;
    padding: 16px 0; margin-top: 20px;
  }
  .nav-contact { display: none; }
  .nav-cta-item { display: block; }
  .nav-cta { display: block; text-align: center; width: 100%; }
  .nav-lang-item { display: block; text-align: center; margin-top: 18px; }
  .nav-lang-item .lang-toggle { padding: 10px 26px; font-size: 0.85rem; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .services-grid, .conv-grid, .why-grid, .reviews-grid, .footer-grid, .book-notes { grid-template-columns: 1fr; }
  .services-grid, .conv-grid, .why-grid, .reviews-grid { gap: 14px; }
  section, section.tight { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }
  h1 { font-size: 1.75rem; line-height: 1.3; }
  h2 { font-size: 1.55rem; }
  .hero .container, .hero-simple { padding-top: 28px !important; padding-bottom: 32px !important; gap: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 16px; margin-bottom: 14px; }
  .hero p.lede { font-size: 1.02rem; margin: 16px 0 24px; }
  .hero-card { padding: 24px; }
  .btn { padding: 13px 26px; font-size: 0.88rem; }
  .service-card, .why-card, .conv-card, .review-card { padding: 24px 20px; }
  .service-icon { width: 50px; height: 50px; font-size: 1.3rem; margin-bottom: 14px; }
  .review-card p.quote { min-height: 0; }
  .about-visual { min-height: 260px; }
  .about .container, .international .container, .contact .container { gap: 32px; }
  .contact-info-card { padding: 26px; }
  .info-block { padding: 13px 0; }
  .map-placeholder { min-height: 150px; }
  .calendar-placeholder { padding: 56px 20px; }
  .top-bar .container { justify-content: center; text-align: center; }
  .trust-strip { padding: 14px 0; }
  .trust-strip .container { justify-content: flex-start; gap: 10px; }
  .trust-item { font-size: 0.85rem; }
  .cta-band { padding: 48px 0; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  footer { padding-top: 44px; }
  .brand-logo { height: 68px; }
  .brand { gap: 8px; }
  .brand-text strong { font-size: 0.95rem; }
  .brand-text small { display: none !important; }
  .nav-wrap { padding: 10px 0; gap: 8px; }
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 9px 16px; font-size: 0.75rem; white-space: nowrap; }
  .lang-toggle { padding: 6px 12px; font-size: 0.72rem; }
}

/* Smooth anchor offset under sticky header */
section[id], [id="top"] { scroll-margin-top: 90px; }
