:root {
  --cream: #f7edda;
  --cream-light: #fffaf0;
  --paper: #fffdf8;
  --sand: #e9d8bc;
  --gold: #b8862f;
  --gold-light: #e5c66f;
  --gold-dark: #825b20;
  --brown: #4a3826;
  --brown-soft: #6b5436;
  --olive: #667347;
  --olive-dark: #3f4d31;
  --ink: #2d261e;
  --muted: #746a5f;
  --white: #fff;
  --shadow: 0 24px 60px rgba(68, 49, 27, .13);
  --shadow-soft: 0 14px 34px rgba(68, 49, 27, .09);
  --container: 1180px;
  --radius-xl: 36px;
  --radius-lg: 25px;
  --radius-md: 17px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-space { padding: 100px 0; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 13px 0;
  background: rgba(255,253,248,.93);
  border-bottom: 1px solid rgba(107,84,54,.08);
  box-shadow: 0 9px 25px rgba(68,49,27,.06);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; text-decoration: none; }
.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff8df, #ead299);
  box-shadow: inset 0 0 0 1px rgba(184,134,47,.28), 0 8px 19px rgba(130,91,32,.13);
}
.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 2px;
  border-radius: 4px;
  background: var(--gold);
}
.brand-symbol::after { transform: rotate(90deg); }
.brand-sun {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 7px rgba(229,198,111,.25);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { color: var(--brown); font-size: 1.32rem; font-style: italic; font-weight: 600; }
.brand-text small { margin-top: 5px; color: var(--muted); font-family: Arial, sans-serif; font-size: .66rem; letter-spacing: .07em; white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 28px; font-family: Arial, sans-serif; }
.main-nav a { color: var(--brown); font-size: .9rem; font-weight: 700; text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-dark); }
.main-nav .nav-button { padding: 11px 18px; border-radius: 999px; color: var(--white); background: var(--brown-soft); box-shadow: 0 8px 17px rgba(74,56,38,.16); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 50%; background: var(--cream); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 5px; background: var(--brown); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px 0 98px;
  background:
    radial-gradient(circle at 82% 18%, rgba(229,198,111,.24), transparent 29%),
    radial-gradient(circle at 7% 82%, rgba(102,115,71,.12), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f7ecd8 58%, #ead8b9 100%);
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 80px; background: linear-gradient(to top, var(--paper), transparent); }
.hero-decoration { position: absolute; border-radius: 50%; border: 1px solid rgba(184,134,47,.16); }
.hero-decoration-one { width: 460px; height: 460px; left: -250px; top: -180px; box-shadow: 0 0 0 55px rgba(255,255,255,.14); }
.hero-decoration-two { width: 380px; height: 380px; right: -210px; bottom: -150px; box-shadow: 0 0 0 46px rgba(255,255,255,.13); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.overline { margin: 0 0 13px; color: var(--gold-dark); font-family: Arial, sans-serif; font-size: .76rem; font-weight: 800; line-height: 1.35; letter-spacing: .17em; text-transform: uppercase; }
.hero h1 { margin: 0; color: var(--brown); font-size: clamp(4.6rem, 8.6vw, 8.1rem); font-style: italic; font-weight: 500; line-height: .88; letter-spacing: -.065em; }
.hero h1 span { color: var(--gold-dark); }
.hero-subtitle { max-width: 620px; margin: 28px 0 0; color: var(--brown-soft); font-size: clamp(1.18rem, 2.1vw, 1.62rem); line-height: 1.48; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 51px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: .89rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--brown-soft), var(--gold-dark)); box-shadow: 0 14px 28px rgba(107,84,54,.22); }
.button-secondary { color: var(--brown); background: rgba(255,255,255,.45); border-color: rgba(107,84,54,.24); }
.button-light { color: var(--brown); background: var(--cream-light); box-shadow: 0 12px 25px rgba(45,38,30,.16); }
.button-outline { width: 100%; color: var(--brown); border-color: rgba(107,84,54,.24); background: transparent; }
.button-large { min-height: 58px; padding-inline: 27px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-facts > div { display: flex; align-items: center; gap: 10px; min-width: 220px; padding: 12px 15px; border: 1px solid rgba(107,84,54,.1); border-radius: 15px; background: rgba(255,255,255,.42); }
.hero-facts > div > span { color: var(--gold); font-size: 1.2rem; }
.hero-facts p { display: flex; flex-direction: column; margin: 0; font-family: Arial, sans-serif; line-height: 1.3; }
.hero-facts strong { color: var(--brown); font-size: .82rem; }
.hero-facts small { margin-top: 3px; color: var(--muted); font-size: .69rem; }

.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(184,134,47,.2); }
.orbit-one { width: 430px; height: 430px; box-shadow: 0 0 0 28px rgba(255,255,255,.21), 0 0 0 58px rgba(184,134,47,.05); }
.orbit-two { width: 320px; height: 320px; border-style: dashed; transform: rotate(20deg); }
.hero-medallion {
  position: relative;
  z-index: 2;
  width: min(390px, 84%);
  aspect-ratio: 1 / 1.08;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 37px;
  overflow: hidden;
  border-radius: 50% 50% 47% 47% / 44% 44% 56% 56%;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(60,45,28,.96), rgba(132,99,45,.56)),
    radial-gradient(circle at 50% 21%, rgba(255,226,157,.64), transparent 33%),
    #82643d;
  box-shadow: 0 35px 70px rgba(75,54,29,.29), inset 0 0 0 1px rgba(255,255,255,.25);
}
.hero-medallion::before { content: ""; position: absolute; width: 180px; height: 180px; right: -35px; top: -38px; border-radius: 50%; background: rgba(255,255,255,.08); }
.crescent { position: absolute; left: 50%; top: 54px; width: 104px; height: 104px; transform: translateX(-50%); border-radius: 50%; background: linear-gradient(145deg, #ffe59b, #d7a64e); box-shadow: 0 0 34px rgba(255,221,139,.43); }
.crescent::after { content: ""; position: absolute; width: 100px; height: 100px; left: 31px; top: -12px; border-radius: 50%; background: #8b6b41; }
.medallion-sparkles { position: absolute; left: 0; right: 0; top: 173px; color: #ffe7a5; text-align: center; font-size: 1.4rem; }
.hero-medallion p { position: relative; z-index: 2; margin: 0; font-size: 1.4rem; line-height: 1.35; text-align: center; }
.hero-medallion span { position: relative; z-index: 2; margin-top: 11px; color: #f2d999; font-family: Arial, sans-serif; font-size: .74rem; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.floating-note { position: absolute; z-index: 4; min-width: 205px; padding: 14px 17px; border: 1px solid rgba(184,134,47,.18); border-radius: 17px; background: rgba(255,253,248,.91); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.floating-note strong, .floating-note span { display: block; }
.floating-note strong { color: var(--brown); font-size: .98rem; }
.floating-note span { color: var(--muted); font-family: Arial, sans-serif; font-size: .7rem; }
.note-one { left: -8px; bottom: 72px; }
.note-two { right: -7px; top: 74px; }

.section-heading h2, .prices-intro h2, .location-copy h2 { margin: 0; color: var(--brown); font-size: clamp(2.65rem, 5vw, 4.8rem); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; }
.section-heading > p:not(.overline) { max-width: 650px; margin: 20px auto 0; color: var(--muted); font-family: Arial, sans-serif; }
.section-heading-center { max-width: 830px; margin: 0 auto 52px; text-align: center; }
.welcome { background: var(--paper); }
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.welcome-copy { color: var(--muted); font-family: Arial, sans-serif; font-size: 1rem; }
.location-chip { display: inline-flex; align-items: center; gap: 9px; margin-top: 12px; padding: 13px 17px; border-radius: 999px; color: var(--olive-dark); background: rgba(102,115,71,.1); font-size: .83rem; font-weight: 800; }
.location-chip span { color: var(--gold); font-size: 1.1rem; }

.services { background: linear-gradient(180deg, var(--cream-light), var(--cream)); }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 19px; }
.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 405px;
  padding: 30px 27px 80px;
  overflow: hidden;
  border: 1px solid rgba(107,84,54,.09);
  border-radius: var(--radius-lg);
  background: rgba(255,253,248,.88);
  box-shadow: var(--shadow-soft);
}
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card-featured { background: linear-gradient(150deg, #fffdf7, #f5e6c9); border-color: rgba(184,134,47,.19); }
.service-card::after { content: ""; position: absolute; width: 155px; height: 155px; right: -70px; top: -73px; border-radius: 50%; background: rgba(229,198,111,.14); }
.service-number { position: absolute; right: 23px; top: 19px; color: rgba(74,56,38,.13); font-family: Arial, sans-serif; font-size: 2.55rem; font-weight: 900; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 25px; border-radius: 50%; color: var(--gold-dark); background: linear-gradient(145deg, #fff5d7, #ead39b); box-shadow: inset 0 0 0 1px rgba(184,134,47,.18); font-size: 1.55rem; }
.service-card h3 { margin: 0 0 12px; color: var(--brown); font-size: 1.48rem; font-weight: 500; line-height: 1.2; }
.service-card > p { min-height: 59px; margin: 0 0 17px; color: var(--muted); font-family: Arial, sans-serif; font-size: .84rem; line-height: 1.55; }
.service-data { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(107,84,54,.09); font-family: Arial, sans-serif; }
.service-data span { color: var(--muted); font-size: .76rem; }
.service-data strong { color: var(--gold-dark); font-size: 1.03rem; }
.duration-badge { display: inline-flex; margin-top: 15px; padding: 7px 11px; border-radius: 999px; color: var(--olive-dark); background: rgba(102,115,71,.1); font-family: Arial, sans-serif; font-size: .72rem; font-weight: 800; }
.service-card > a { position: absolute; left: 27px; right: 27px; bottom: 24px; display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(107,84,54,.12); color: var(--gold-dark); font-family: Arial, sans-serif; font-size: .78rem; font-weight: 800; text-decoration: none; }

.prices { background: var(--paper); }
.prices-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: center; }
.prices-intro > p:not(.overline) { max-width: 470px; margin: 21px 0 29px; color: var(--muted); font-family: Arial, sans-serif; }
.price-list { padding: 17px; border-radius: var(--radius-xl); background: var(--cream); box-shadow: var(--shadow); }
.price-row { display: grid; grid-template-columns: 1.45fr .78fr .62fr; gap: 13px; align-items: center; min-height: 65px; padding: 13px 20px; border-bottom: 1px solid rgba(107,84,54,.1); background: var(--paper); font-family: Arial, sans-serif; font-size: .83rem; }
.price-row:first-child { border-radius: 20px 20px 0 0; }
.price-row:last-child { border: 0; border-radius: 0 0 20px 20px; }
.price-row strong { color: var(--gold-dark); }
.price-row-head { min-height: 48px; color: var(--white); background: var(--brown-soft); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.duo { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #55412c, #8b642c); }
.duo::before { content: ""; position: absolute; width: 500px; height: 500px; right: -160px; top: -180px; border-radius: 50%; background: rgba(229,198,111,.12); }
.duo-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: center; }
.duo .overline { color: #f3d889; }
.duo h2 { margin: 0; font-size: clamp(3rem, 6vw, 5.9rem); font-weight: 400; line-height: .96; }
.duo h2 strong { display: block; color: #ffe39b; }
.duo p:last-child { color: rgba(255,255,255,.75); font-family: Arial, sans-serif; }
.duo-options { display: grid; gap: 13px; }
.duo-options > div { display: flex; justify-content: space-between; gap: 18px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(255,255,255,.08); font-family: Arial, sans-serif; }
.duo-options strong { color: #ffe39b; }

.massages { background: var(--paper); }
.poster-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 31px; align-items: start; }
.poster-card { padding: 15px; border: 1px solid rgba(107,84,54,.1); border-radius: var(--radius-xl); background: var(--cream-light); box-shadow: var(--shadow-soft); }
.poster-frame { position: relative; overflow: hidden; border-radius: 24px; background: var(--sand); }
.poster-landscape { aspect-ratio: 1220 / 777; }
.poster-landscape img { height: 100%; object-fit: cover; }
.poster-portrait { aspect-ratio: 1070 / 1600; max-height: 790px; }
.poster-portrait img { height: 100%; object-fit: cover; object-position: top center; }
.updated-contact { position: absolute; left: 0; right: 0; bottom: 0; min-height: 27%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; color: var(--brown); text-align: center; background: linear-gradient(180deg, rgba(255,250,240,.97), #fffaf0 19%); border-top: 1px solid rgba(184,134,47,.22); }
.updated-contact small { color: var(--gold-dark); font-family: Arial, sans-serif; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.updated-contact strong { margin-top: 4px; font-size: 1.28rem; }
.updated-contact span { color: var(--muted); font-family: Arial, sans-serif; font-size: .76rem; }
.poster-info { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 22px 5px 17px; }
.poster-info .overline { margin-bottom: 4px; }
.poster-info h3 { margin: 0; color: var(--brown); font-size: 1.55rem; font-weight: 500; }
.poster-info > strong { color: var(--gold-dark); font-size: 2.12rem; line-height: 1; }

.process { background: linear-gradient(180deg, var(--cream-light), var(--paper)); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-grid article { padding: 33px 27px; border-radius: var(--radius-lg); text-align: center; background: var(--white); box-shadow: var(--shadow-soft); }
.process-grid article > span { display: grid; place-items: center; width: 47px; height: 47px; margin: 0 auto 18px; border-radius: 50%; color: var(--white); background: var(--gold); font-family: Arial, sans-serif; font-weight: 900; }
.process-grid h3 { margin: 0 0 7px; color: var(--brown); font-size: 1.3rem; font-weight: 500; }
.process-grid p { margin: 0; color: var(--muted); font-family: Arial, sans-serif; font-size: .83rem; }

.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.location-art { position: relative; min-height: 470px; overflow: hidden; border-radius: 40px; background: linear-gradient(145deg, #f9f0dc, #ddc6a4); box-shadow: var(--shadow); }
.location-art::before, .location-art::after { content: ""; position: absolute; border: 25px solid rgba(255,255,255,.42); border-radius: 50%; }
.location-art::before { width: 390px; height: 390px; left: -155px; top: -95px; }
.location-art::after { width: 315px; height: 315px; right: -125px; bottom: -105px; }
.line { position: absolute; height: 15px; border-radius: 20px; background: rgba(102,115,71,.39); transform-origin: left center; }
.line-a { width: 620px; left: -80px; top: 44%; transform: rotate(27deg); }
.line-b { width: 520px; left: 45px; top: 27%; background: rgba(184,134,47,.35); transform: rotate(98deg); }
.line-c { width: 470px; left: 10px; top: 72%; background: rgba(255,255,255,.64); transform: rotate(-18deg); }
.line-badge { position: absolute; z-index: 3; left: 31px; top: 29px; padding: 9px 15px; border-radius: 999px; color: var(--white); background: var(--olive-dark); font-family: Arial, sans-serif; font-size: .78rem; font-weight: 800; }
.map-pin { position: absolute; z-index: 4; left: 55%; top: 43%; width: 85px; height: 85px; transform: translate(-50%,-50%) rotate(45deg); border-radius: 50% 50% 50% 0; background: linear-gradient(145deg, var(--gold-light), var(--gold)); box-shadow: 0 20px 34px rgba(117,81,29,.25); }
.map-pin span { position: absolute; left: 27px; top: 27px; width: 31px; height: 31px; border-radius: 50%; background: var(--cream-light); }
.station-label { position: absolute; z-index: 5; left: 55%; top: 66%; min-width: 180px; padding: 13px 21px; transform: translateX(-50%); border-radius: 15px; text-align: center; background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.station-label strong, .station-label small { display: block; }
.station-label strong { color: var(--brown); font-size: 1.18rem; }
.station-label small { color: var(--muted); font-family: Arial, sans-serif; }
.location-copy > p:not(.overline) { max-width: 520px; margin: 21px 0 25px; color: var(--muted); font-family: Arial, sans-serif; }
.location-detail { display: flex; align-items: flex-start; gap: 13px; margin: 13px 0; }
.location-detail > span { display: grid; place-items: center; width: 39px; height: 39px; flex: 0 0 39px; border-radius: 50%; color: var(--gold-dark); background: rgba(184,134,47,.13); }
.location-detail strong { color: var(--brown); }
.location-detail p { margin: 1px 0 0; color: var(--muted); font-family: Arial, sans-serif; font-size: .83rem; }
.location-copy .button { margin-top: 17px; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 75px; align-items: start; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { border: 1px solid rgba(107,84,54,.1); border-radius: 17px; background: var(--cream-light); box-shadow: var(--shadow-soft); }
.faq-list summary { position: relative; padding: 19px 52px 19px 20px; color: var(--brown); font-family: Arial, sans-serif; font-size: .9rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold-dark); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-family: Arial, sans-serif; font-size: .84rem; }

.notice { padding: 21px 0; background: #f3ead8; border-top: 1px solid rgba(107,84,54,.08); }
.notice-inner { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.notice-inner span { color: var(--gold); }
.notice-inner p { margin: 0; color: var(--muted); font-family: Arial, sans-serif; font-size: .74rem; }

.final-cta { padding: 83px 0; color: var(--white); background: linear-gradient(135deg, var(--brown), var(--brown-soft)); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta .overline { color: var(--gold-light); }
.final-cta h2 { max-width: 690px; margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 400; line-height: 1; }
.final-cta p:last-child { margin-bottom: 0; color: rgba(255,255,255,.72); font-family: Arial, sans-serif; }

.site-footer { padding: 46px 0 22px; color: #e9dcc8; background: #292218; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .6fr 1fr; gap: 38px; align-items: center; }
.footer-brand .brand-text strong { color: #f2dfbc; }
.footer-brand .brand-text small { color: rgba(255,255,255,.58); }
.footer-grid > div { display: flex; flex-direction: column; font-family: Arial, sans-serif; font-size: .8rem; }
.footer-grid > div strong { color: #f2dfbc; }
.footer-grid > div a, .footer-grid > div span { color: rgba(255,255,255,.62); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.5); font-family: Arial, sans-serif; font-size: .72rem; }
.footer-bottom a { text-decoration: none; }

.whatsapp-float { position: fixed; right: 21px; bottom: 20px; z-index: 900; display: inline-flex; align-items: center; gap: 9px; min-height: 53px; padding: 12px 17px; border-radius: 999px; color: var(--white); background: #168c67; box-shadow: 0 16px 34px rgba(16,100,74,.3); font-family: Arial, sans-serif; font-size: .84rem; font-weight: 800; text-decoration: none; }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }
.back-top { position: fixed; right: 27px; bottom: 85px; z-index: 850; width: 44px; height: 44px; border: 0; border-radius: 50%; opacity: 0; pointer-events: none; transform: translateY(10px); color: var(--white); background: var(--brown-soft); box-shadow: var(--shadow-soft); cursor: pointer; transition: opacity .2s ease, transform .2s ease; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: enter-left .75s ease both; }
  .hero-art { animation: enter-right .85s .08s ease both; }
  .service-card, .process-grid article { transition: transform .22s ease, box-shadow .22s ease; }
  .service-card:hover, .process-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
  @keyframes enter-left { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
  @keyframes enter-right { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
}

@media (max-width: 1040px) {
  .hero-grid { gap: 35px; }
  .hero-art { min-height: 450px; transform: scale(.94); }
  .floating-note { min-width: 180px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card:nth-child(4) { grid-column: auto; }
  .service-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 10px); width: 100%; justify-self: center; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .section-space { padding: 78px 0; }
  .hero { min-height: auto; padding: 70px 0 82px; }
  .hero-grid, .welcome-grid, .prices-grid, .duo-inner, .poster-grid, .location-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-art { min-height: 470px; }
  .welcome-grid, .prices-grid, .duo-inner, .location-grid, .faq-grid { gap: 43px; }
  .welcome-copy { text-align: center; }
  .prices-intro { text-align: center; }
  .prices-intro > p:not(.overline) { margin-inline: auto; }
  .duo-inner { text-align: center; }
  .poster-grid { max-width: 680px; margin-inline: auto; }
  .poster-portrait { max-height: none; }
  .process-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .location-art { min-height: 410px; order: 2; }
  .location-copy { text-align: center; }
  .location-copy > p:not(.overline) { margin-inline: auto; }
  .location-detail { max-width: 360px; margin-inline: auto; text-align: left; }
  .faq-grid > .section-heading { text-align: center; }
  .final-cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-grid > div { align-items: center; }
}

@media (max-width: 720px) {
  .header-inner { position: relative; }
  .main-nav { width: 100%; flex-wrap: wrap; justify-content: center; gap: 13px 21px; padding: 13px 0 2px; }
  .header-inner { flex-wrap: wrap; }
  .js-ready .header-inner { flex-wrap: nowrap; }
  .js-ready .menu-toggle { display: block; }
  .js-ready .main-nav {
    position: absolute;
    top: calc(100% + 13px);
    left: 0;
    right: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-radius: 0 0 22px 22px;
    opacity: 0;
    background: rgba(255,253,248,.98);
    box-shadow: 0 20px 32px rgba(68,49,27,.12);
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
  }
  .js-ready .main-nav.open { max-height: 420px; padding: 18px 20px 22px; opacity: 1; }
  .js-ready .main-nav a { padding: 8px 4px; text-align: center; }
  .js-ready .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .js-ready .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .js-ready .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand-text small { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; max-width: none; }
  .price-row { grid-template-columns: 1.25fr .78fr .62fr; padding-inline: 13px; font-size: .76rem; }
  .final-cta .button { width: 100%; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-space { padding: 65px 0; }
  .brand-symbol { width: 45px; height: 45px; flex-basis: 45px; }
  .brand-text strong { font-size: 1.15rem; }
  .hero { padding-top: 57px; }
  .hero h1 { font-size: clamp(4.05rem, 21vw, 5.7rem); }
  .hero-subtitle { font-size: 1.08rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts > div { width: 100%; min-width: 0; text-align: left; }
  .hero-art { min-height: 385px; margin-top: 6px; }
  .hero-medallion { width: min(315px, 88%); padding: 28px; }
  .crescent { top: 42px; width: 84px; height: 84px; }
  .crescent::after { width: 82px; height: 82px; left: 25px; }
  .medallion-sparkles { top: 140px; }
  .hero-medallion p { font-size: 1.15rem; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 260px; height: 260px; }
  .floating-note { min-width: 150px; padding: 10px 12px; }
  .floating-note strong { font-size: .84rem; }
  .floating-note span { font-size: .62rem; }
  .note-one { left: 0; bottom: 38px; }
  .note-two { right: 0; top: 50px; }
  .section-heading h2, .prices-intro h2, .location-copy h2 { font-size: 2.45rem; }
  .service-card { min-height: 390px; padding: 27px 23px 77px; }
  .service-card > a { left: 23px; right: 23px; }
  .price-list { padding: 8px; border-radius: 24px; overflow-x: auto; }
  .price-row { min-width: 510px; }
  .duo h2 { font-size: 3.35rem; }
  .duo-options > div { flex-direction: column; gap: 3px; }
  .poster-card { padding: 10px; border-radius: 25px; }
  .poster-frame { border-radius: 18px; }
  .updated-contact { min-height: 29%; padding: 15px 10px; }
  .updated-contact strong { font-size: 1rem; }
  .updated-contact span { font-size: .64rem; }
  .poster-info h3 { font-size: 1.28rem; }
  .poster-info > strong { font-size: 1.75rem; }
  .location-art { min-height: 340px; border-radius: 28px; }
  .map-pin { width: 72px; height: 72px; }
  .map-pin span { width: 25px; height: 25px; left: 23px; top: 23px; }
  .station-label { top: 67%; }
  .notice-inner { align-items: flex-start; text-align: left; }
  .footer-bottom { flex-direction: column; align-items: center; }
  .whatsapp-float { width: 55px; height: 55px; justify-content: center; padding: 0; }
  .whatsapp-float span { display: none; }
  .back-top { right: 26px; bottom: 83px; }
}
