/* =========================================================
   Dra. Harymy Barros — Oftalmologia
   Stylesheet — premium, feminine, delicate
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette derived from the logo */
  --bg-dark:        #2F2D2A;   /* deep charcoal warm */
  --bg-dark-2:      #26241F;
  --bg-cream:       #FAF7F1;   /* off‑white warm */
  --bg-cream-2:     #F3ECDF;   /* warmer cream */
  --bg-pearl:       #FFFBF4;

  --gold:           #C9A87C;   /* primary gold */
  --gold-2:         #B8945F;   /* deeper gold */
  --gold-soft:      #E7D3B0;   /* light champagne */
  --gold-glow:      #F0DDB6;

  --ink:            #1F1D1A;
  --ink-2:          #4A453E;
  --muted:          #8A8377;
  --line:           #E8DDC9;

  /* Type */
  --ff-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Spacing scale */
  --container: 1240px;
  --gutter: 24px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --shadow-sm: 0 4px 18px rgba(35, 30, 22, .06);
  --shadow-md: 0 18px 50px rgba(35, 30, 22, .10);
  --shadow-lg: 0 28px 80px rgba(35, 30, 22, .16);

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
a:hover { color: var(--gold-2); }
button { font: inherit; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__sub { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin: 0 0 18px;
}
.display em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 400;
}

h2.display { font-size: clamp(1.85rem, 3.6vw, 2.9rem); }
h3 { font-family: var(--ff-display); font-weight: 500; color: var(--ink); margin: 0 0 10px; font-size: 1.4rem; letter-spacing: -0.005em; }

.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-2);
  margin: 0 0 14px;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section__head--center .eyebrow { padding-left: 0; display: inline-block; }
.section__head--center .eyebrow::before { display: none; }
.eyebrow--gold { color: var(--gold-glow); }

.lead { font-size: clamp(1rem, 1.3vw, 1.18rem); color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--gold {
  --btn-bg: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  --btn-fg: #fff;
  --btn-bd: transparent;
  background-image: var(--btn-bg);
}
.btn--gold:hover { filter: brightness(1.05); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
}
.btn--ghost:hover { --btn-fg: #fff; background: var(--ink); }

.btn--lg { padding: 18px 36px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, .95);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
}
.brand img { width: clamp(140px, 14vw, 180px); height: auto; }

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__list a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav__list a:hover { color: var(--ink); }
.nav__list a:hover::after { width: 100%; }

.nav__toggle, .nav__toggle-checkbox { display: none; }

/* mobile */
@media (max-width: 920px) {
  .header__cta { display: none; }
}
@media (max-width: 760px) {
  .nav__list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-pearl);
    padding: 22px var(--gutter) 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav__toggle-checkbox:checked ~ .nav__list {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px; height: 20px;
    cursor: pointer;
  }
  .nav__toggle span {
    display: block; height: 1.5px; width: 100%;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
    transform-origin: center;
  }
  .nav__toggle-checkbox:checked ~ .nav__toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav__toggle-checkbox:checked ~ .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav__toggle-checkbox:checked ~ .nav__toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: #efe6d4;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(201,168,124,.22) 0%, transparent 60%),
    radial-gradient(70% 70% at 0% 90%, rgba(201,168,124,.08) 0%, transparent 60%);
  z-index: -1;
}
.hero::before {
  content: "";
  position: absolute; right: -10%; top: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(201,168,124,.18) 0%, transparent 70%);
  z-index: -1; filter: blur(40px);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: clamp(80px, 12vw, 160px) var(--gutter) clamp(100px, 12vw, 140px);
}
.hero__content .eyebrow { color: var(--gold-glow); }
.hero__content .eyebrow::before { background: var(--gold); }
.hero__content .display { color: #fff; }
.hero__content .display em { color: var(--gold); font-style: italic; }
.hero__content .lead { color: rgba(255,255,255,.78); margin: 18px 0 36px; max-width: 56ch; }
.hero__name {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 6px 0 14px;
}
.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  color: var(--gold);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.hero__tagline span { color: rgba(255,255,255,.45); margin: 0 .35em; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hero__trust {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: flex; gap: 36px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust span {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero__trust small {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(47,45,42,.35) 100%),
              radial-gradient(closest-side at 30% 20%, transparent 60%, rgba(47,45,42,.25));
  pointer-events: none;
}
.hero__portrait > picture { display: block; height: 100%; }
.hero__portrait img:not(.hero__portrait-mono) {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero__portrait-mono {
  position: absolute;
  bottom: -34px; right: -34px;
  width: 200px; height: auto;
  opacity: .55;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.4));
}
.hero__visual::before {
  content: "";
  position: absolute; inset: -10% -8% -10% -8%;
  background: radial-gradient(closest-side, rgba(201,168,124,.22), transparent 70%);
  z-index: 0;
  filter: blur(30px);
}

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

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4) 50%, transparent);
  overflow: hidden;
}
.hero__scroll span {
  display: block; width: 1px; height: 20px;
  background: var(--gold);
  animation: scroll-down 2.2s var(--ease) infinite;
}
@keyframes scroll-down {
  0%   { transform: translateY(-22px); }
  100% { transform: translateY(62px); }
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 90px; text-align: left; }
  .hero__visual { order: -1; margin-bottom: 8px; }
  .hero__portrait { max-width: 320px; margin: 0 auto; }
  .hero__portrait-mono { width: 130px; bottom: -22px; right: -22px; }
  .hero__trust { gap: 18px; }
  .hero__trust li { flex: 1 1 28%; min-width: 90px; }
  .hero__cta .btn { flex: 1 1 240px; justify-content: center; }
}
@media (max-width: 480px) {
  .hero__portrait { max-width: 260px; }
  .hero__portrait-mono { width: 100px; bottom: -18px; right: -18px; }
  .hero__trust span { font-size: 1.15rem; }
  .hero__trust small { font-size: .7rem; letter-spacing: .1em; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- About ---------- */
.about { background: var(--bg-cream); position: relative; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--bg-cream-2) 0%, #EFE3CB 100%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__photo > picture, .about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 75% 25%, rgba(201,168,124,.18) 0%, transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(47,45,42,.18) 100%);
  pointer-events: none;
}

.about__badge {
  position: absolute;
  left: -28px; bottom: 36px;
  background: var(--ink);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; gap: 14px;
  align-items: center;
}
.about__badge-num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.about__badge-text {
  font-size: .82rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
}

.about__content p { margin: 0 0 18px; }
.credentials {
  list-style: none; padding: 0; margin: 28px 0 36px;
  display: grid; gap: 12px;
}
.credentials li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
}
.credentials li::before {
  content: "";
  position: absolute; left: 0; top: .6em;
  width: 16px; height: 1px;
  background: var(--gold);
}

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 480px; margin: 0 auto; width: 100%; }
  .about__photo { aspect-ratio: 4 / 4.5; }
  .about__badge { left: 12px; bottom: 12px; padding: 14px 16px; }
  .about__badge-num { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .about__badge { left: 8px; bottom: 8px; padding: 12px 14px; gap: 10px; }
  .about__badge-num { font-size: 1.5rem; }
  .about__badge-text { font-size: .72rem; letter-spacing: .1em; }
}

/* ---------- Services ---------- */
.services { background: var(--bg-pearl); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.card:hover::before { transform: scaleX(1); }

.card.card--feature {
  background: linear-gradient(160deg, var(--bg-dark) 0%, #3B3833 100%);
  color: #F4EAD4;
  border-color: transparent;
}
.card.card--feature h3 { color: #FFFFFF; }
.card.card--feature .card__icon {
  color: var(--gold-glow);
  border-color: rgba(240, 221, 182, .55);
  background: rgba(255, 255, 255, .04);
}
.card.card--feature p { color: rgba(255, 247, 230, .94); }
.card.card--feature::before { background: linear-gradient(90deg, var(--gold-glow), transparent); transform: scaleX(1); }

.card__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--gold-2);
  margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card p { margin: 0; color: var(--ink-2); }

@media (max-width: 880px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Differentials ---------- */
.differentials {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-2) 100%);
}
.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.diff {
  padding: 28px 24px;
  background: rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 221, 201, .6);
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.diff:hover { transform: translateY(-4px); background: #fff; }
.diff__num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--gold-2);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1;
}
.diff p { margin: 0; color: var(--ink-2); }

@media (max-width: 880px) { .diff__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .diff__grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team {
  background:
    radial-gradient(closest-side at 50% 100%, rgba(201,168,124,.10), transparent 60%),
    var(--bg-cream);
}
.team__photo {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  border: 1px solid var(--gold-soft);
}
.team__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(31,29,26,.18) 100%);
  pointer-events: none;
}
.team__photo img { width: 100%; height: auto; display: block; }

/* ---------- Testimonials (Instagram reels) ---------- */
.testimonials {
  background:
    radial-gradient(closest-side at 0% 0%, rgba(201,168,124,.12), transparent 60%),
    radial-gradient(closest-side at 100% 100%, rgba(201,168,124,.10), transparent 60%),
    var(--bg-pearl);
}
.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.reel {
  width: 100%;
  max-width: 360px;
  position: relative;
  padding: 14px;
  background: linear-gradient(160deg, var(--bg-cream-2) 0%, #FFFBF4 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.reel::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(160deg, rgba(201,168,124,.65), rgba(201,168,124,0) 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.reel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.reel__frame {
  position: relative;
  width: 100%;
  /* Instagram reel embed aspect ≈ 326×580 (video 9:16 + IG chrome) */
  aspect-ratio: 326 / 580;
  background: #f6f1e7;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.reel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}
.reel__stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255, 251, 244, .8);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  gap: 10px;
}
.reel__stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 500;
}
.reel__stat svg { color: var(--gold-2); flex: none; }
.reel__stat strong { color: var(--ink); font-weight: 600; letter-spacing: .02em; }

@media (max-width: 980px) {
  .reels { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .reels { grid-template-columns: 1fr; gap: 22px; }
  .reel { max-width: 340px; }
}

/* ---------- Location ---------- */
.location { background: var(--bg-cream); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}
.location__block { margin-bottom: 28px; }
.location__block h3 {
  font-family: var(--ff-body);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.location__block p { margin: 0; }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--ink); font-weight: 500; }
.hours li span:last-child { color: var(--muted); }

.location__map {
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--bg-cream-2) 0%, #EAD9B8 100%);
  min-height: 480px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gold-soft);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(.96);
}

.link-gold {
  color: var(--gold-2);
  font-weight: 600;
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.link-gold:hover { color: var(--gold-2); border-color: var(--gold-2); }

@media (max-width: 880px) {
  .location__grid { grid-template-columns: 1fr; gap: 40px; }
  .location__map, .location__map iframe { min-height: 340px; }
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3D3833 100%);
  color: #efe6d4;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before, .cta-final::after {
  content: ""; position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.cta-final::before {
  width: 480px; height: 480px;
  background: rgba(201,168,124,.18);
  left: -10%; top: -30%;
}
.cta-final::after {
  width: 520px; height: 520px;
  background: rgba(201,168,124,.14);
  right: -10%; bottom: -40%;
}
.cta-final__inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final .display { color: #fff; }
.cta-final p { color: rgba(255,255,255,.75); margin: 0 0 32px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark-2);
  color: rgba(255,255,255,.65);
  padding: 72px 0 26px;
  font-size: .92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand img { width: 220px; margin-bottom: 14px; }
.footer__brand p { color: rgba(255,255,255,.55); }
.footer__col h4 {
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin: 0 0 16px;
  font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  padding-top: 24px;
  font-size: .8rem; color: rgba(255,255,255,.45);
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.65); }
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- Floating WhatsApp ---------- */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(18, 140, 126, .35);
  z-index: 80;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whats-float:hover { transform: translateY(-3px) scale(1.04); color: #fff; box-shadow: 0 20px 40px rgba(18,140,126,.45); }
.whats-float::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  100% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
}

/* ---------- Mobile safety + small-screen polish ---------- */
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .display { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  h2.display { font-size: clamp(1.55rem, 6.4vw, 2rem); }
  .eyebrow { font-size: .68rem; padding-left: 30px; }
  .eyebrow::before { width: 22px; }
  .btn { padding: 13px 22px; font-size: .86rem; }
  .btn--lg { padding: 16px 26px; font-size: .95rem; }
  .hero__inner { padding-top: 60px; padding-bottom: 70px; }
  .hero .display { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero__trust { padding-top: 22px; margin-top: 36px; }
  .hours li { font-size: .92rem; }
  .whats-float {
    width: 54px; height: 54px;
    right: 16px; bottom: 16px;
  }
  .whats-float svg { width: 24px; height: 24px; }
}

@media (max-width: 380px) {
  .hero__trust { gap: 12px; }
  .hero__trust li { min-width: 72px; }
  .hours li {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

/* Make all iframes responsive by default */
iframe { max-width: 100%; }

/* Prevent unexpected scrollbar from hero glow blur */
.hero, .cta-final { overflow: hidden; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}
