/* ============ Design tokens — Scandinavian wellness ============ */
:root {
  --bg: #FAF9F7;
  --card: #FFFFFF;
  --ink: #1D1D1F;
  --ink-soft: rgba(29, 29, 31, 0.66);
  --accent: #8AAFA0;
  --accent-deep: #6d9384;
  --secondary: #CBB89A;
  --dark: #111317;
  --dark-soft: rgba(250, 249, 247, 0.82);
  --line: rgba(29, 29, 31, 0.13);
  --line-light: rgba(250, 249, 247, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none), (max-width: 900px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0 0 20px; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0 0 16px; color: var(--ink-soft); }
a { color: inherit; }

.wrap { max-width: 1220px; margin: 0 auto; padding: 0 15px; }
.section { padding: 130px 0; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--bg); padding: 12px 20px; z-index: 10001; }
.skip-link:focus { left: 12px; top: 12px; }

/* ============ Custom cursor ============ */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent-deep); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(138,175,160,0.7); transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease; }
.cursor-ring.is-active { width: 56px; height: 56px; background: rgba(138,175,160,0.12); border-color: var(--accent-deep); }

/* ============ Reveal-on-scroll ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Buttons ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 30px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1px solid transparent; transition: background 0.25s ease, color 0.25s ease; white-space: nowrap; }
.magnetic { will-change: transform; }
.btn-solid { background: var(--accent-deep); color: #fff; }
.btn-solid:hover { background: #5c8071; }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--bg); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { background: #fff; }

/* ============ Header ============ */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 900; background: transparent; transition: background 0.3s ease, border-color 0.3s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(250,249,247,0.92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 28px; padding: 20px 15px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--bg); }
.site-header.is-scrolled .brand { color: var(--dark); }
.brand-mark { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 6px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 18px; }
.brand-text small { font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; opacity: 0.75; }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { text-decoration: none; color: var(--bg); font-size: 13.5px; font-weight: 500; opacity: 0.9; }
.main-nav a:hover { opacity: 1; }
.site-header.is-scrolled .main-nav a { color: var(--ink); }
.header-cta { min-height: 46px; padding: 0 20px; border-color: var(--bg); color: var(--bg); }
.site-header.is-scrolled .header-cta { border-color: var(--ink); color: var(--ink); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--bg); transition: all 0.25s ease; }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.mobile-menu { display: none; }

@media (max-width: 1080px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px 15px 24px; flex-direction: column; gap: 4px; }
  .site-header.menu-open .mobile-menu { display: flex; }
  .mobile-menu a { text-decoration: none; color: var(--ink); font-size: 15px; font-weight: 600; padding: 14px 2px; border-bottom: 1px solid var(--line); }
  .mobile-menu .btn { margin-top: 12px; }
  .site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============ Hero ============ */
.hero { position: relative; min-height: 66vh; display: flex; align-items: flex-end; background: var(--dark); color: var(--bg); padding: 140px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(17,19,23,0.94) 0%, rgba(17,19,23,0.68) 42%, rgba(17,19,23,0.22) 78%, rgba(17,19,23,0.1) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; }
.btn-video { background: transparent; border: 1px solid rgba(250,249,247,0.5); color: var(--bg); gap: 10px; cursor: pointer; }
.btn-video:hover { background: rgba(250,249,247,0.1); }
.play-icon { display: inline-flex; width: 20px; height: 20px; }

.kicker { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--secondary); margin-bottom: 22px; text-wrap: balance; max-width: 90%; }
.kicker span { display: inline-block; opacity: 0; transform: translateY(10px); animation: wordIn 0.6s ease forwards; }

.kinetic-heading { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.08; color: #fff; font-weight: 400; margin-bottom: 24px; }
.kinetic-heading .line { display: block; overflow: hidden; }
.kinetic-heading .word { display: inline-block; opacity: 0; transform: translateY(120%) rotate(3deg); animation: wordIn 0.7s cubic-bezier(.2,.7,.2,1) forwards; }
.kinetic-heading .word-accent { color: var(--accent); }
@keyframes wordIn { to { opacity: 1; transform: translateY(0) rotate(0); } }

.lede { font-size: 19px; line-height: 1.75; color: var(--dark-soft); max-width: 560px; }
.split-in, .split-in-delay { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.split-in-delay { animation-delay: 1.1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 10px 0 26px; }
.hero-actions .btn-line { border-color: rgba(250,249,247,0.6); color: var(--bg); }
.hero-actions .btn-line:hover { background: rgba(250,249,247,0.12); color: var(--bg); }
.hero-rating { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dark-soft); }
.hero-rating.center { justify-content: center; margin-top: 14px; }
.stars { color: var(--secondary); letter-spacing: 2px; }

.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 22px; height: 36px; border: 1px solid rgba(250,249,247,0.35); border-radius: 12px; z-index: 2; }
.scroll-cue span { position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--accent); border-radius: 2px; transform: translateX(-50%); animation: cueDrop 1.8s ease infinite; }
@keyframes cueDrop { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 20px; } 100% { opacity: 0; top: 6px; } }

/* ============ Video modal ============ */
.video-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.video-modal.is-open { opacity: 1; pointer-events: auto; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(17,19,23,0.94); }
.video-modal-inner { position: relative; z-index: 1; width: min(92vw, 920px); }
.video-modal-inner video { width: 100%; display: block; background: #000; }
.video-modal-close { position: absolute; top: -46px; right: 0; width: 36px; height: 36px; background: transparent; border: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }

/* ============ Section headers ============ */
.eyebrow { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--accent-deep); margin-bottom: 16px; }
.eyebrow-light { color: var(--accent); }
.center-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.center-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.sub { font-size: 17px; }
.text-block h2 { font-size: clamp(26px, 3vw, 38px); color: var(--ink); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.align-center { align-items: center; }

/* ============ Scenes (illustrated placeholders) ============ */
.scene { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 40px; background: var(--card); border: 1px solid var(--line); color: var(--accent-deep); text-align: center; }
.scene svg { width: 100%; max-width: 240px; }
.scene-tag { font-size: 12.5px; font-style: italic; color: var(--ink-soft); padding: 6px 14px; border: 1px dashed var(--line); border-radius: 20px; }

.sobre-photo { border: 1px solid var(--line); overflow: hidden; }
.sobre-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ============ Interactive Body Map ============ */
.body-map { background: var(--card); }
.body-map-center { display: flex; flex-direction: column; align-items: center; }
.body-map-figure { position: relative; max-width: 340px; width: 100%; margin: 0 auto; color: var(--ink); }
.body-map-figure img { width: 100%; height: auto; display: block; }
.hotspot { position: absolute; transform: translate(-50%,-50%); width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--accent-deep); background: rgba(138,175,160,0.12); padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color 0.25s ease, background 0.25s ease; }
.hotspot span { position: relative; width: 13px; height: 13px; border-radius: 50%; background: var(--accent-deep); box-shadow: 0 0 0 0 rgba(138,175,160,0.55); animation: hotspotPulse 2.2s ease infinite; }
.hotspot span::after { content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; line-height: 1; color: #fff; font-weight: 700; }
.hotspot:hover, .hotspot.is-active { border-color: var(--secondary); background: rgba(203,184,154,0.18); }
.hotspot:hover span, .hotspot.is-active span { background: var(--secondary); transform: scale(1.15); }
@keyframes hotspotPulse { 0% { box-shadow: 0 0 0 0 rgba(138,175,160,0.5); } 70% { box-shadow: 0 0 0 16px rgba(138,175,160,0); } 100% { box-shadow: 0 0 0 0 rgba(138,175,160,0); } }
.body-map-caption { text-align: center; margin-top: 22px; font-size: 13px; font-style: italic; color: var(--ink-soft); }

/* ---- Region modal (body map result) ---- */
.region-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.region-modal.is-open { opacity: 1; pointer-events: auto; }
.region-modal-backdrop { position: absolute; inset: 0; background: rgba(17,19,23,0.6); }
.region-modal-inner { position: relative; z-index: 1; width: min(92vw, 560px); max-height: 82vh; overflow-y: auto; background: var(--card); border: 1px solid var(--line); padding: 44px; }
.region-modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; background: transparent; border: none; color: var(--ink); font-size: 26px; line-height: 1; cursor: pointer; }
.region-panel { display: none; }
.region-panel.is-active { display: block; animation: fadeUp 0.5s ease; }
.region-panel h3 { font-size: 26px; color: var(--ink); }
.region-panel p { font-size: 15px; }

@media (max-width: 640px) {
  .region-modal-inner { padding: 34px 26px; }
}

/* ============ Paths ("Eu quero...") ============ */
.paths { background: var(--bg); }
.paths-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: start; }
.paths-hint { font-size: 13.5px; font-style: italic; color: var(--ink-soft); margin-bottom: 10px; }
.paths-list { display: flex; flex-direction: column; gap: 4px; }
.path-option { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; text-align: left; background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 20px 4px; font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: color 0.25s ease, padding-left 0.25s ease; }
.path-option i { font-style: normal; opacity: 0; transform: translateX(-6px); transition: opacity 0.25s ease, transform 0.25s ease; color: var(--accent-deep); }
.path-option:hover { color: var(--ink); }
.path-option:hover i { opacity: 0.6; transform: translateX(0); }
.path-option.is-active { color: var(--accent-deep); font-weight: 600; padding-left: 14px; }
.path-option.is-active i { opacity: 1; transform: translateX(0); }
.paths-panel { background: var(--card); border: 1px solid var(--line); padding: 44px; min-height: 300px; }
.path-content { display: none; }
.path-content.is-active { display: block; animation: fadeUp 0.5s ease; }
.path-content h3 { font-size: 26px; }

@media (max-width: 900px) { .paths-grid { grid-template-columns: 1fr; } }

/* ============ Check list (shared) ============ */
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 24px 0 30px; }
.check-list li { border: 1px solid var(--line); padding: 14px 16px; font-size: 14px; position: relative; padding-left: 36px; }
.check-list li::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent-deep); }
@media (max-width: 640px) { .check-list { grid-template-columns: 1fr; } }

/* ============ Body scan (dark) ============ */
.body-scan { background: var(--dark); color: var(--bg); padding: 130px 0; }
.body-scan-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; }
.body-scan-figure { position: relative; display: flex; justify-content: center; }
.body-scan-figure img { width: 100%; height: auto; max-width: 260px; opacity: 0.94; }
.scan-line { position: absolute; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); top: 90%; animation: scanSweep 4.5s ease-in-out infinite; box-shadow: 0 0 16px 2px rgba(138,175,160,0.6); }
@keyframes scanSweep { 0% { top: 92%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 4%; opacity: 0; } }
.scan-heading { font-size: clamp(24px, 2.8vw, 34px); color: #fff; max-width: 560px; }
.scan-description { font-size: 15.5px; color: var(--dark-soft); max-width: 520px; margin-top: 8px; }
.scan-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.scan-list li { border: 1px solid var(--line-light); padding: 12px 20px; font-size: 14px; opacity: 0; transform: translateY(10px); animation: scanLabelIn 0.6s ease forwards; animation-delay: calc(var(--d) * 0.15s + 0.3s); }
@keyframes scanLabelIn { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  .body-scan-grid { grid-template-columns: 1fr; row-gap: 34px; }
  .body-scan-figure { order: 2; }
  .body-scan-labels { order: 1; }
  .body-scan-figure img { max-width: 150px; max-height: 320px; }
}

/* ============ Timeline ============ */
.timeline { background: var(--card); }
.timeline-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.timeline-track::before { content: ""; position: absolute; top: 7px; left: 4%; right: 4%; height: 1px; background: var(--line); }
.timeline-step { position: relative; padding-top: 30px; }
.timeline-dot { position: absolute; top: 0; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--accent-deep); border: 3px solid var(--card); box-shadow: 0 0 0 1px var(--line); }
.timeline-when { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.timeline-what { font-size: 14.5px; margin: 0; }
@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr; gap: 36px; }
  .timeline-track::before { left: 7px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .timeline-step { padding-top: 0; padding-left: 34px; }
  .timeline-dot { top: 4px; }
}

/* ============ Before / after ============ */
.before-after { background: var(--bg); }
.ba-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.ba-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.ba-before { color: var(--ink-soft); font-style: italic; text-align: right; font-size: 16px; }
.ba-after { color: var(--ink); font-family: var(--font-display); font-size: 19px; }
.ba-arrow { color: var(--accent-deep); font-size: 18px; }
@media (max-width: 640px) {
  .ba-row {
    grid-template-columns: auto 1fr;
    grid-template-areas: "before before" "arrow after";
    align-items: start;
    row-gap: 8px; column-gap: 10px;
    text-align: left;
  }
  .ba-before { grid-area: before; text-align: left; }
  .ba-arrow { grid-area: arrow; transform: rotate(90deg); }
  .ba-after { grid-area: after; }
}

/* ============ Studio walkthrough ============ */
.studio { background: var(--card); }
.studio-walk { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.studio-stop { text-align: center; padding: 20px 12px; }
.studio-icon { width: 64px; height: 64px; margin: 0 auto 18px; color: var(--accent-deep); }
.studio-stop h3 { font-size: 18px; margin-bottom: 8px; }
.studio-stop p { font-size: 13.5px; margin: 0; }
@media (max-width: 900px) { .studio-walk { grid-template-columns: repeat(2, 1fr); } }

/* ============ Testimonials ============ */
.testimonials { background: var(--dark); color: var(--bg); padding: 120px 0; overflow: hidden; }
.testimonials .eyebrow { color: var(--secondary); }
.testimonials h2 { color: #fff; }
.testimonials .center-head { padding: 0 15px; }

.google-profile-card {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  max-width: 980px; margin: 56px auto 0; padding: 26px 30px;
  background: rgba(250,249,247,0.05); border: 1px solid var(--line-light);
  text-decoration: none; color: var(--bg); transition: border-color 0.25s ease, background 0.25s ease;
}
.google-profile-card:hover { background: rgba(250,249,247,0.08); border-color: rgba(203,184,154,0.6); }
.google-profile-badge {
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
  background: rgba(203,184,154,0.14); border: 1px solid rgba(203,184,154,0.35);
  padding: 8px 14px; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; color: var(--secondary);
}
.google-g { width: 16px; height: 16px; flex: 0 0 16px; }
.google-profile-main { display: flex; flex-direction: column; gap: 6px; flex: 1 1 260px; }
.google-profile-main strong { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: #fff; }
.google-profile-meta { font-size: 13.5px; color: var(--dark-soft); }
.google-profile-meta i { font-style: normal; margin: 0 6px; opacity: 0.5; }
.google-profile-cta { flex: 0 0 auto; border-color: rgba(250,249,247,0.5); color: var(--bg); }
.google-profile-card:hover .google-profile-cta { background: rgba(250,249,247,0.12); }
@media (max-width: 640px) { .google-profile-card { padding: 22px; gap: 18px; } .google-profile-cta { width: 100%; text-align: center; } }
.hero-quote { max-width: 780px; margin: 0 auto 60px; padding: 0 15px; text-align: center; }
.hero-quote p { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-style: italic; color: #fff; line-height: 1.4; }
.hero-quote footer { font-size: 14px; color: var(--secondary); font-weight: 600; margin-top: 16px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.testimonial-card { margin: 0; border: 1px solid var(--line-light); padding: 32px 28px; background: rgba(250,249,247,0.04); }
.testimonial-card p { color: var(--dark-soft); font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.65; }
.testimonial-card footer { font-size: 13px; color: var(--secondary); font-weight: 600; }
@media (max-width: 767px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============ Instructor ============ */
.instructor .text-block h2 { font-size: clamp(30px, 4vw, 46px); }
.scene-instructor { position: relative; overflow: hidden; max-width: 380px; margin: 0 auto; border: 1px solid var(--line); }
.scene-instructor img { width: 100%; height: auto; display: block; object-fit: cover; }

/* ============ CTA band ============ */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: var(--bg); padding: 100px 0; }
.cta-band-mesh { position: absolute; inset: -20%; background: radial-gradient(circle at 15% 20%, rgba(138,175,160,0.2), transparent 45%), radial-gradient(circle at 85% 85%, rgba(203,184,154,0.16), transparent 45%); animation: meshDrift 20s ease-in-out infinite alternate; z-index: 0; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); }
.cta-band p { color: var(--dark-soft); }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.cta-band-rating { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 14px; color: var(--dark-soft); }
.cta-band-action { display: flex; justify-content: flex-end; }
.cta-band-btn { position: relative; gap: 10px; animation: ctaPulse 2.8s ease infinite; }
.cta-band-btn svg { width: 20px; height: 20px; fill: currentColor; }
@keyframes ctaPulse { 0% { box-shadow: 0 0 0 0 rgba(250,249,247,0.25); } 70% { box-shadow: 0 0 0 14px rgba(250,249,247,0); } 100% { box-shadow: 0 0 0 0 rgba(250,249,247,0); } }

/* ============ FAQ ============ */
.faq { background: var(--card); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 18px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; font-size: 22px; color: var(--accent-deep); transition: transform 0.25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 16px 0 0; font-size: 15px; }

/* ============ Location ============ */
.location-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 30px; }
.map-wrap { border: 1px solid var(--line); filter: grayscale(100%) sepia(28%) hue-rotate(115deg) saturate(220%) brightness(0.96) contrast(105%); overflow: hidden; }
.hours-card { background: var(--card); border: 1px solid var(--line); padding: 36px 30px; align-self: start; }
.hours-card h3 { font-size: 19px; margin-bottom: 20px; }
.hours-list { margin: 0 0 26px; }
.hours-list > div { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours-list dt { color: var(--ink); font-weight: 600; }
.hours-list dd { margin: 0; color: var(--ink-soft); }

/* ============ Footer ============ */
.site-footer { background: var(--ink); color: var(--bg); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; padding: 80px 15px; }
.footer-left strong { font-family: var(--font-display); font-size: 22px; display: block; margin-bottom: 6px; }
.footer-left span { font-size: 13px; color: rgba(250,249,247,0.6); }
.footer-left p { max-width: 400px; font-size: 14px; margin-top: 18px; color: rgba(250,249,247,0.7); }
.footer-left p.footer-legal { font-size: 12px; margin-top: 8px; color: rgba(250,249,247,0.45); }
.footer-social { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--bg); font-size: 14px; margin-top: 16px; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-right { display: flex; flex-direction: column; gap: 12px; }
.footer-right a { text-decoration: none; font-size: 14px; color: rgba(250,249,247,0.75); }
.footer-right a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(250,249,247,0.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; padding: 20px 15px; font-size: 12.5px; color: rgba(250,249,247,0.55); }
.footer-credit a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* ============ WhatsApp float ============ */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 899; text-decoration: none; }
.whatsapp-icon { width: 62px; height: 62px; border-radius: 50%; background: #1ebe5d; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,0.22); animation: waPulse 2.6s infinite; }
.whatsapp-icon svg { width: 27px; height: 27px; fill: #fff; }
.whatsapp-tooltip { position: absolute; right: 74px; top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff; font-size: 13px; padding: 9px 14px; white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateY(-50%) translateX(-4px); }
@keyframes waPulse { 0% { box-shadow: 0 10px 30px rgba(0,0,0,0.22), 0 0 0 0 rgba(30,190,93,0.4); } 70% { box-shadow: 0 10px 30px rgba(0,0,0,0.22), 0 0 0 14px rgba(30,190,93,0); } 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.22), 0 0 0 0 rgba(30,190,93,0); } }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .grid-2, .cta-band-inner, .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .hero { min-height: 56vh; padding: 120px 0 60px; align-items: flex-end; }
  .footer-inner { grid-template-columns: 1fr; padding: 60px 20px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .cta-band-inner { text-align: center; }
  .cta-band-rating, .cta-band-action { justify-content: center; }
  .hero-actions .btn, .mobile-menu .btn { width: 100%; }
  .studio-walk { grid-template-columns: 1fr; }
  .kinetic-heading { text-wrap: balance; }
  .kinetic-heading .line { display: inline; }
  .paths-panel { padding: 28px 22px; }
  .hours-card { padding: 26px 22px; }
  .testimonial-card { padding: 26px 22px; }
  .region-modal-inner .region-panel a.btn { width: 100%; }
  .body-scan-figure img { max-width: 120px; max-height: 260px; }
  .body-map-figure { max-width: 220px; }
  .scan-list { gap: 8px; }
  .scan-list li { padding: 10px 14px; font-size: 13px; }
}
