/* ============================================================
   SUSAN BEAUTY — Estética do Olhar
   Design system: regal gold + rosé/nude editorial luxe
   Type: Cormorant Garamond (display) + Jost (sans)
   ============================================================ */

:root {
  /* Surfaces — warm ivory & nude */
  --ivory:      #FBF6EF;
  --cream:      #F6EDE2;
  --nude:       #EFE1D3;
  --nude-deep:  #E6D3C2;
  --rose:       #ECD3CB;   /* rosa antigo */
  --rose-deep:  #C9A199;

  /* Carmine — primary brand color (dominant) */
  --carmine-1:  #6E0F1F;   /* deep */
  --carmine-2:  #9E1530;   /* primary */
  --carmine-3:  #BC2742;   /* bright */
  --carmine-soft: #C9526A;
  --carmine-grad: linear-gradient(135deg, #7E1022 0%, #A4162E 28%, #C53A52 52%, #A4162E 74%, #7E1022 100%);

  /* Gold — metallic / champagne (used as light accent touches) */
  --gold-1:     #9E1530;   /* repointed to carmine: primary accent text/icons */
  --gold-grad:  linear-gradient(135deg, #7E1022 0%, #A4162E 28%, #C53A52 52%, #A4162E 74%, #7E1022 100%); /* repointed to carmine: primary fills */
  --gold-2:     #C99B3F;
  --gold-3:     #E6C878;
  --gold-4:     #F4E5BC;
  --champagne:  #EAD9B0;
  --gold-grad-soft: linear-gradient(135deg, #C99B3F, #E6C878 55%, #C99B3F);

  /* Ink — deep bordô (text) */
  --ink:        #581323;
  --ink-soft:   #5C4F44;
  --ink-faint:  #8A7C6E;

  /* Lines */
  --line:       rgba(158,111,34,.22);
  --line-soft:  rgba(158,111,34,.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 152px);

  --shadow-soft: 0 24px 60px -28px rgba(74, 50, 20, .30);
  --shadow-card: 0 28px 70px -36px rgba(74, 50, 20, .42);
  --radius: 22px;
  --radius-lg: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: .002em;
}

p { margin: 0; }

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

/* ---------- Helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(34px, 5.2vw, 60px);
  margin-top: 18px;
  letter-spacing: -.01em;
}
.section-head h2 em { font-style: italic; }
.section-head .lead {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 620px;
}
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s, background-position .6s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn-gold {
  position: relative;
  color: #FBF1EC;
  background: var(--gold-grad);
  background-size: 220% 220%;
  background-position: 0% 50%;
  box-shadow: 0 14px 30px -12px rgba(126,16,34,.55), inset 0 1px 0 rgba(255,255,255,.32);
}
.btn-gold:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -12px rgba(158,111,34,.72), inset 0 1px 0 rgba(255,255,255,.55);
}

.btn-outline {
  color: var(--gold-1);
  border-color: var(--gold-2);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-grad);
  color: #FBF1EC;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.4);
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-1); }

.btn-sm { padding: 12px 22px; font-size: 12.5px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .5s, box-shadow .5s, padding .4s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(251,246,239,.82);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 30px -24px rgba(74,50,20,.5);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { height: 60px; width: auto; transition: height .4s; display: block; }
.site-header.scrolled .brand-mark { height: 48px; }
.brand .brand-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  line-height: 1;
}
.brand .brand-name span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-1);
  font-weight: 500;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .3s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-grad);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s, opacity .3s;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(160deg, var(--ivory), var(--nude));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .45s, transform .45s;
}
.menu-open .mobile-nav { opacity: 1; pointer-events: auto; transform: none; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  padding: 8px 0;
}
.mobile-nav a:hover { color: var(--gold-1); font-style: italic; }
.mobile-nav .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(130px, 16vw, 190px);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(120% 90% at 85% 0%, var(--rose) 0%, transparent 55%),
    radial-gradient(110% 80% at 0% 100%, var(--nude) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream), var(--ivory));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin-top: 26px;
}
.hero h1 em { font-style: italic; }
.hero .sub {
  margin-top: 32px;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 510px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.hero-meta .stat .n {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}
.hero-meta .stat .l {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 6px;
}

.hero-visual { position: relative; }
.hero-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.hero-badge {
  position: absolute;
  bottom: 26px; left: -28px;
  background: rgba(251,246,239,.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .ring {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  color: #FBF1EC; font-weight: 600;
}
.hero-badge .t { font-family: var(--serif); font-size: 20px; line-height: 1.05; }
.hero-badge .s { font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }

.hero-deco {
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: .6;
  pointer-events: none;
}

/* ============================================================
   PLACEHOLDER (image slots)
   ============================================================ */
.ph {
  position: relative;
  width: 100%; height: 100%;
  min-height: 160px;
  background:
    repeating-linear-gradient(45deg, rgba(158,21,48,.08) 0 11px, rgba(158,21,48,.02) 11px 22px),
    linear-gradient(135deg, var(--rose), var(--cream));
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--carmine-2);
}
.ph .ph-label {
  font-family: "SF Mono", ui-monospace, "Roboto Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px dashed rgba(158,21,48,.45);
  border-radius: 100px;
  background: rgba(158,21,48,.10);
  max-width: 80%;
  line-height: 1.5;
}
.ph .ph-ico { font-size: 26px; opacity: .5; margin-bottom: 10px; }

/* ============================================================
   AUTHORITY / PILLARS
   ============================================================ */
.authority { padding-block: var(--section-y); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pillar {
  padding: 38px 30px;
  border: 1px solid rgba(158,21,48,.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(158,21,48,.1), rgba(158,21,48,.16));
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .5s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--line); }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-1);
}
.pillar .ico-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-2);
  display: grid; place-items: center;
  margin: 22px 0 22px;
  color: var(--gold-1);
}
.pillar .ico-circle svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 26px; }
.pillar p { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }

/* ============================================================
   PROCEDURES
   ============================================================ */
.procedures { padding-block: var(--section-y); background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.proc-card {
  background: linear-gradient(180deg, rgba(158,21,48,.1), rgba(158,21,48,.16));
  border: 1px solid rgba(158,21,48,.2);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s, border-color .5s;
}
.proc-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.proc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--line); }
.proc-card:hover::before { transform: scaleX(1); }
.proc-ico {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--cream), var(--nude));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold-1);
  margin-bottom: 22px;
}
.proc-ico svg { width: 30px; height: 30px; }
.proc-card h3 { font-size: 27px; }
.proc-card .desc { margin-top: 12px; color: var(--ink-soft); font-size: 15px; flex-grow: 1; }
.proc-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 22px; padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.proc-meta .dur { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.proc-meta .price { font-family: var(--serif); font-size: 15px; color: var(--ink-soft); }
.proc-meta .price b { font-size: 27px; font-weight: 600; color: var(--ink); }
.proc-card .btn { margin-top: 22px; width: 100%; }

/* ============================================================
   COMBOS
   ============================================================ */
.combos { padding-block: var(--section-y); }
.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.combo-card {
  position: relative;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(158,21,48,.2);
  background: linear-gradient(150deg, rgba(158,21,48,.1), rgba(158,21,48,.17));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 24px;
  align-items: start;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
  overflow: hidden;
}
.combo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.combo-card.featured {
  background: linear-gradient(150deg, #6E0F1F, #45101C);
  color: var(--cream);
  border-color: rgba(230,200,120,.4);
}
.combo-card.featured h3, .combo-card.featured .combo-price b { color: #fff; }
.combo-card.featured .combo-items li { color: rgba(246,237,226,.82); }
.combo-card.featured .combo-items li::before { color: var(--gold-3); }
.combo-tag {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-1);
  padding: 6px 14px;
  border: 1px solid var(--gold-2);
  border-radius: 100px;
}
.combo-card.featured .combo-tag { color: var(--gold-3); border-color: rgba(230,200,120,.5); }
.combo-card h3 { font-size: 30px; grid-column: 1 / -1; }
.combo-items { list-style: none; margin: 0; padding: 0; grid-column: 1 / 2; }
.combo-items li { position: relative; padding-left: 24px; margin: 9px 0; color: var(--ink-soft); font-size: 15px; }
.combo-items li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold-1); font-size: 12px; top: 2px;
}
.combo-price { grid-column: 1 / -1; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.combo-card.featured .combo-price { border-top-color: rgba(230,200,120,.25); }
.combo-price .pwrap .save { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--rose-deep); }
.combo-card.featured .combo-price .pwrap .save { color: var(--gold-3); }
.combo-price .pwrap b { font-family: var(--serif); font-size: 40px; font-weight: 600; display: block; line-height: 1; margin-top: 4px; }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience { padding-block: var(--section-y); background: linear-gradient(165deg, #6E0F1F, #420E1A); color: var(--cream); position: relative; overflow: hidden; }
.experience .eyebrow { color: var(--gold-3); }
.experience .eyebrow::before, .experience .eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold-3)); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.exp-copy h2 { font-size: clamp(32px, 4.6vw, 54px); color: #fff; }
.exp-copy h2 em { font-style: italic; color: var(--gold-3); }
.exp-copy .lead { margin-top: 20px; color: rgba(246,237,226,.78); font-size: 18px; max-width: 520px; }
.exp-list { list-style: none; margin: 34px 0 0; padding: 0; display: grid; gap: 2px; }
.exp-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(230,200,120,.16);
}
.exp-list li .check {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gold-3); color: var(--gold-3);
  display: grid; place-items: center; margin-top: 1px;
}
.exp-list li .check svg { width: 15px; height: 15px; }
.exp-list li .x-t { font-family: var(--serif); font-size: 21px; color: #fff; line-height: 1.2; }
.exp-list li .x-s { font-size: 14.5px; color: rgba(246,237,226,.68); margin-top: 3px; }
.exp-visual { position: relative; }
.exp-portrait { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(230,200,120,.3); }
.exp-visual .ph { background:
    repeating-linear-gradient(45deg, rgba(230,200,120,.07) 0 11px, rgba(230,200,120,.02) 11px 22px),
    linear-gradient(135deg, #3a2f25, #2c231c); color: var(--gold-3); }
.exp-visual .ph .ph-label { background: rgba(35,28,22,.6); border-color: rgba(230,200,120,.3); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.beforeafter { padding-block: var(--section-y); }
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 56px; }
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.ba-compare {
  position: relative;
  aspect-ratio: 6 / 7;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-card.ba-wide { grid-column: 1 / -1; }
.ba-card.ba-wide .ba-compare { aspect-ratio: 2 / 1; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-before .ph { background:
  repeating-linear-gradient(45deg, rgba(120,110,100,.08) 0 11px, rgba(120,110,100,.02) 11px 22px),
  linear-gradient(135deg, #ddd3c8, #cabfb2); color:#6b6056; }
.ba-tag {
  position: absolute; top: 14px; z-index: 4;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(43,34,28,.72); color: var(--cream); backdrop-filter: blur(4px);
}
.ba-tag.before { left: 14px; }
.ba-tag.after { right: 14px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3;
  width: 2px; background: var(--gold-grad); transform: translateX(-1px);
}
.ba-handle .knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad); box-shadow: 0 6px 18px -6px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.5);
  display: grid; place-items: center; color: #FBF1EC;
}
.ba-handle .knob svg { width: 20px; height: 20px; }
.ba-caption { padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ba-caption .t { font-family: var(--serif); font-size: 21px; white-space: nowrap; }
.ba-caption .drag-hint { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.ba-note { text-align: center; margin-top: 36px; color: var(--ink-faint); font-size: 14px; font-style: italic; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding-block: var(--section-y); background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.gr-widget { display: grid; grid-template-columns: 260px 1fr; gap: 26px; margin-top: 56px; align-items: stretch; }
.gr-summary {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 30px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gr-logo svg { width: 48px; height: 48px; margin-bottom: 14px; }
.gr-logo img { height: 54px; width: auto; margin-bottom: 12px; }
.gr-biz { font-family: var(--serif); font-size: 20px; line-height: 1.25; color: var(--ink); }
.gr-rating { display: flex; align-items: center; gap: 9px; margin-top: 12px; }
.gr-score { font-size: 26px; font-weight: 600; color: #E8A13C; letter-spacing: .5px; }
.gr-stars { display: inline-flex; gap: 1px; color: #F4B400; }
.gr-stars svg { width: 19px; height: 19px; }
.gr-count { font-size: 13.5px; color: var(--ink-faint); margin-top: 10px; }
.gr-g-text { font-weight: 600; color: #4285F4; }
.gr-write {
  margin-top: 20px; display: inline-block; padding: 11px 22px; border-radius: 100px;
  background: var(--gold-grad); color: #FBF1EC; font-size: 13.5px; font-weight: 600;
  letter-spacing: .3px; box-shadow: 0 6px 18px rgba(158,21,48,.28); transition: transform .35s, box-shadow .35s;
}
.gr-write:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(158,21,48,.36); }

.gr-reviews { display: flex; gap: 20px; overflow-x: auto; padding: 4px 2px 18px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gr-reviews::-webkit-scrollbar { height: 6px; }
.gr-reviews::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.gr-card {
  flex: 0 0 300px; scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 22px 22px 24px;
  transition: transform .45s, box-shadow .45s;
}
.gr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.gr-head { display: flex; align-items: center; gap: 12px; }
.gr-av { width: 42px; height: 42px; border-radius: 50%; background: var(--av, #caa06b); color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 600; flex-shrink: 0; }
.gr-meta { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.gr-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.gr-date { font-size: 12.5px; color: var(--ink-faint); }
.gr-g { flex-shrink: 0; }
.gr-g svg { width: 20px; height: 20px; display: block; }
.gr-cstars { display: flex; gap: 1px; color: #F4B400; margin: 13px 0 11px; }
.gr-cstars svg { width: 17px; height: 17px; }
.gr-text { font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.testi-disclaimer { text-align: center; margin-top: 34px; color: var(--ink-faint); font-size: 13px; font-style: italic; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { padding-block: var(--section-y); background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.loc-visual { position: relative; }
.loc-photo { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loc-badge {
  position: absolute; left: -16px; bottom: 26px;
  background: #fff; border: 1px solid var(--line-soft); border-left: 3px solid var(--gold-1);
  border-radius: 14px; padding: 13px 20px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.loc-badge-k { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.loc-badge-v { font-family: var(--serif); font-size: 20px; color: var(--gold-1); margin-top: 2px; }
.loc-copy .eyebrow { margin-bottom: 16px; }
.loc-copy h2 { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; color: var(--ink); }
.loc-copy h2 em { font-style: italic; color: var(--gold-1); }
.loc-copy > p { margin-top: 20px; color: var(--ink-soft); line-height: 1.7; max-width: 46ch; }
.loc-list { list-style: none; margin: 30px 0 0; display: flex; flex-direction: column; gap: 18px; }
.loc-list li { display: flex; gap: 15px; align-items: flex-start; }
.loc-list li strong { color: var(--ink); font-weight: 600; }
.loc-list li span:last-child { font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.loc-ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--rose); color: var(--gold-1); border: 1px solid var(--line); }
.loc-ic svg { width: 20px; height: 20px; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: var(--section-y); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-visual { position: relative; }
.about-portrait { aspect-ratio: 4/5; border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 130px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-portrait img, .exp-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-sig {
  position: absolute; right: -18px; bottom: 30px;
  background: rgba(251,246,239,.94); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-soft);
  font-family: var(--serif); font-style: italic; font-size: 26px;
}
.about-sig span { display: block; font-family: var(--sans); font-style: normal; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-1); margin-top: 4px; }
.about-copy h2 { font-size: clamp(32px, 4.6vw, 56px); margin-top: 18px; }
.about-copy h2 em { font-style: italic; }
.about-copy p { margin-top: 20px; color: var(--ink-soft); font-size: 17px; }
.about-quote { margin-top: 26px; padding-left: 22px; border-left: 2px solid var(--gold-2); font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--ink); }
.about-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { padding-block: var(--section-y); background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.ig-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 48px; }
.ig-item { aspect-ratio: 1; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--line-soft); }
.ig-item .ph { min-height: 0; }
.ig-item .ig-over {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(43,34,28,.35); opacity: 0; transition: opacity .4s; color: #fff;
}
.ig-item:hover .ig-over { opacity: 1; }
.ig-item .ig-over svg { width: 28px; height: 28px; }
.ig-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: var(--section-y); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 72px); align-items: start; margin-top: 12px; }
.faq-aside { position: sticky; top: 120px; }
.faq-aside h2 { font-size: clamp(32px, 4.4vw, 52px); margin-top: 18px; }
.faq-aside h2 em { font-style: italic; }
.faq-aside p { margin-top: 18px; color: var(--ink-soft); }
.faq-aside .btn { margin-top: 26px; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--serif); font-size: 23px; color: var(--ink);
  transition: color .3s;
}
.faq-q:hover { color: var(--gold-1); }
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-2); display: grid; place-items: center; color: var(--gold-1); transition: transform .4s, background .4s, color .4s; position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .ic::before { width: 12px; height: 1.5px; }
.faq-q .ic::after { width: 1.5px; height: 12px; transition: transform .4s; }
.faq-item.open .faq-q .ic { background: var(--gold-grad); color: #FBF1EC; border-color: transparent; }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .5s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding-bottom: 26px; color: var(--ink-soft); font-size: 16px; max-width: 620px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding-block: var(--section-y); position: relative; overflow: hidden; background:
  radial-gradient(100% 120% at 50% 0%, var(--rose) 0%, transparent 55%),
  linear-gradient(180deg, var(--cream), var(--nude)); }
.final-cta .inner { text-align: center; max-width: 760px; margin-inline: auto; position: relative; }
.final-cta .crest { width: 64px; height: 64px; margin: 0 auto 26px; border: 1px solid var(--gold-2); border-radius: 50%; display: grid; place-items: center; color: var(--gold-1); }
.final-cta .crest svg { width: 30px; height: 30px; }
.final-cta h2 { font-size: clamp(38px, 6vw, 76px); line-height: 1; }
.final-cta h2 em { font-style: italic; }
.final-cta p { margin-top: 22px; font-size: 19px; color: var(--ink-soft); max-width: 540px; margin-inline: auto; }
.final-cta .btn { margin-top: 38px; }
.final-cta .micro { margin-top: 18px; font-size: 13px; letter-spacing: .04em; color: var(--ink-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(165deg, #5E0E1B, #380A12); color: rgba(246,237,226,.7); padding-top: clamp(64px, 8vw, 96px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(230,200,120,.16); }
.footer-brand img { height: 104px; width: auto; }
.footer-lockup { display: flex; align-items: center; gap: 13px; }
.footer-lockup .brand-mark { height: 58px; width: auto; }
.footer-lockup .brand-word {
  font-family: var(--sans); font-weight: 400; font-size: 20px;
  letter-spacing: .16em; text-transform: uppercase; line-height: 1; padding-left: .16em; white-space: nowrap;
  background: linear-gradient(165deg, #F4E5BC 0%, #E6C878 26%, #C99B3F 52%, #EAD9B0 70%, #B8862E 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-brand .tag { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--cream); margin-top: 20px; max-width: 280px; line-height: 1.3; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-3); font-weight: 500; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .3s; }
.footer-col a:hover { color: var(--gold-3); }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-3); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0 34px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(230,200,120,.3); display: grid; place-items: center; color: var(--gold-3); transition: background .35s, color .35s; }
.footer-bottom .socials a:hover { background: var(--gold-grad); color: #FBF1EC; border-color: transparent; }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff;
  border-radius: 100px; padding: 0;
  box-shadow: 0 16px 36px -12px rgba(37,211,102,.6);
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); }
.wa-float .ic { width: 60px; height: 60px; display: grid; place-items: center; flex-shrink: 0; }
.wa-float .ic svg { width: 30px; height: 30px; }
.wa-float .lbl { max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 500; font-size: 14px; transition: max-width .5s, padding .5s; }
.wa-float:hover .lbl { max-width: 220px; padding-right: 24px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

/* Failsafe: snap everything visible without waiting on a transition
   (covers contexts where the animation clock is paused) */
.reveal-force .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1160px) {
  .proc-grid, .pillars, .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .gr-widget { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-badge { left: 16px; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .nav-links { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-toggle { display: flex; }
  .nav-links { display: none; }
  .header-cta .btn-text { display: none; }
  .exp-grid, .about-grid, .faq-grid, .combo-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .about-grid { gap: 40px; }
  .about-visual { order: -1; max-width: 420px; margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-meta { gap: 22px; }
}
@media (max-width: 540px) {
  .proc-grid, .pillars, .ba-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .combo-card { grid-template-columns: 1fr; }
}
