:root {
  --paper: #f6efe6;
  --paper-strong: #fffaf3;
  --ink: #263e39;
  --muted: #68736e;
  --line: rgba(38, 62, 57, 0.2);
  --coral: #d34f3d;
  --coral-dark: #a93d31;
  --blush: #e8a2aa;
  --blush-light: #f5d9da;
  --wood: #c98a5a;
  --green: #466b5e;
  --radius: 30px;
  --header-height: 78px;
  --content: min(1480px, calc(100vw - 80px));
  --display: "Prata", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; height: auto; }

:focus-visible {
  outline: 3px solid #206bff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 max(32px, calc((100vw - 1640px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: max-content;
  min-height: 44px;
  padding-block: 10px;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.brand-note {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 48px);
}

.desktop-nav a {
  min-height: 44px;
  padding-block: 13px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 2px;
  background: var(--coral);
  content: "";
  transition: width 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: flex;
  min-height: 50px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch button {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 220ms ease;
}

.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 260ms ease, opacity 200ms ease, visibility 200ms ease;
}

.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0);
}

.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.3rem;
}

.mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 600;
}

main { position: relative; }

.journey-line {
  position: absolute;
  top: 68vh;
  left: 48.6%;
  z-index: 0;
  width: 110px;
  height: calc(100% - 72vh);
  overflow: visible;
  pointer-events: none;
}

.journey-track,
.journey-progress {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
}

.journey-track { stroke: rgba(211, 79, 61, 0.1); stroke-width: 3px; }
.journey-progress { stroke: url(#journey-gradient); stroke-width: 4px; }

.hero,
.section,
.site-footer { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  grid-template-rows: 1fr auto;
  gap: 32px 7vw;
  width: var(--content);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: clamp(62px, 7vh, 110px) 0 24px;
}

.hero-copy {
  align-self: center;
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 14px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

h1, h2, h3, p { overflow-wrap: break-word; }

h1,
h2,
.direction-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(3.25rem, 5.5vw, 6.85rem); }
h2 { font-size: clamp(2.6rem, 4.7vw, 5.6rem); }

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #4c5e58;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: white; }
.button-primary:hover { background: var(--coral-dark); }

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.microcopy { margin: 18px 0 0; color: var(--muted); font-size: 0.78rem; }

.hero-media {
  position: relative;
  align-self: center;
  min-width: 0;
}

.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 48% 48% 24px 24px;
  box-shadow: 0 34px 80px rgba(83, 49, 29, 0.17);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1.43;
  object-fit: cover;
  object-position: center;
}

.sun-disc {
  position: absolute;
  top: -52px;
  right: -36px;
  z-index: 1;
  display: grid;
  width: clamp(150px, 14vw, 250px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: rgba(255,255,255,0.75);
}

.sun-disc::before,
.sun-disc::after {
  position: absolute;
  width: 58%;
  height: 1px;
  background: rgba(255,255,255,0.45);
  content: "";
}

.sun-disc::after { transform: rotate(90deg); }
.sun-disc span { font-size: 0.65rem; letter-spacing: 0.15em; }

.hero-stamp {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.hero-stamp i { width: 22px; height: 1px; background: var(--blush); }

.hero-index {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 190px) 0;
}

.section-heading { max-width: 990px; margin-bottom: 62px; }

.direction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
}

.direction-card {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: clamp(32px, 4vw, 64px);
  overflow: hidden;
  border-radius: var(--radius);
}

.movement-card {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 40px;
  background: var(--coral);
  color: white;
}

.movement-card::after {
  position: absolute;
  right: -6%;
  bottom: -28%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,0.06), 0 0 0 58px rgba(255,255,255,0.04);
  content: "";
}

.beauty-card {
  grid-template-rows: auto 1fr auto;
  background: var(--blush-light);
}

.direction-number {
  position: relative;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.direction-card > div:not(.direction-number, .beauty-orbit) { position: relative; z-index: 2; align-self: center; }
.direction-tag { margin: 0 0 16px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.direction-card h3 { max-width: 690px; font-size: clamp(3rem, 5vw, 6.4rem); }
.direction-card p:not(.direction-tag) { max-width: 540px; font-size: 1rem; }

.beauty-card h3 { max-width: 430px; font-size: clamp(2.8rem, 3.8vw, 4.9rem); }
.beauty-card p:not(.direction-tag) { max-width: 390px; }

.beauty-orbit {
  position: absolute;
  top: -60px;
  right: -50px;
  display: grid;
  width: 250px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(38,62,57,0.27);
  border-radius: 50%;
}

.beauty-orbit::before {
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(38,62,57,0.18);
  border-radius: 50%;
  content: "";
}

.beauty-orbit span { position: absolute; font-family: var(--display); font-size: 2rem; }

.card-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  min-height: 56px;
  border-top: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.movement-card .card-action { grid-column: 1 / -1; border-color: rgba(255,255,255,0.6); }
.card-action span:last-child { font-size: 1.2rem; transition: transform 180ms ease; }
.card-action:hover span:last-child { transform: translate(3px, -3px); }

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
}

.about-media { position: relative; }
.about-media::before {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 45%;
  height: 50%;
  border: 1px solid var(--coral);
  border-radius: 50% 50% 0 0;
  content: "";
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px 48% 24px 24px;
  box-shadow: 0 30px 70px rgba(83,49,29,0.14);
}

.about-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) { max-width: 640px; margin: 28px 0 0; font-size: 1.05rem; }

.fact-list { margin-top: 46px; }
.fact {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.fact:last-child { border-bottom: 1px solid var(--line); }
.fact-index { color: var(--coral); font-size: 0.75rem; font-weight: 600; }
.fact strong { font-size: 0.86rem; }
.fact p { margin: 4px 0 0; color: var(--muted); font-size: 0.83rem; }

.start {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 70px;
  padding-inline: clamp(36px, 5vw, 78px);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.start-intro { align-self: center; }
.start-intro p:last-child { max-width: 540px; margin: 26px 0 0; color: rgba(255,255,255,0.7); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 64px minmax(0,1fr);
  gap: 16px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,0.2); }
.steps > li > span { color: var(--blush); font-size: 0.75rem; font-weight: 600; }
.steps h3 { margin: 0; font-family: var(--display); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 400; }
.steps p { margin: 7px 0 0; color: rgba(255,255,255,0.68); font-size: 0.88rem; }
.start-button { grid-column: 2; justify-self: start; background: var(--blush); color: var(--ink); }
.start-button:hover { background: #f2bbc0; }

.faq { display: grid; grid-template-columns: minmax(330px, 0.75fr) minmax(0, 1.25fr); gap: 8vw; }
.faq .section-heading { margin: 0; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px 0;
  cursor: pointer;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 500;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; flex: 0 0 30px; width: 30px; height: 30px; margin-left: 18px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary i::before,
.faq-list summary i::after { position: absolute; top: 14px; left: 8px; width: 12px; height: 1px; background: var(--ink); content: ""; transition: transform 180ms ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 700px; margin: 0; padding: 0 58px 26px 0; color: var(--muted); }

.contacts {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding-top: 80px;
}

.contact-panel,
.map-shell { min-height: 650px; border-radius: var(--radius); overflow: hidden; }
.contact-panel { display: flex; flex-direction: column; padding: clamp(36px, 5vw, 72px); background: var(--blush-light); }
.contact-panel h2 { font-size: clamp(2.5rem, 4vw, 4.8rem); }
.contact-links { margin-top: auto; padding-top: 60px; }
.contact-links a {
  display: grid;
  grid-template-columns: 135px minmax(0,1fr);
  gap: 20px;
  min-height: 70px;
  padding: 18px 0;
  border-top: 1px solid rgba(38,62,57,0.24);
}
.contact-links a:last-child { border-bottom: 1px solid rgba(38,62,57,0.24); }
.contact-links span { color: var(--muted); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-links strong { font-size: 0.95rem; font-weight: 500; }
.location-note { max-width: 560px; margin: 18px 0 0; color: var(--muted); font-size: 0.78rem; }

.map-shell { position: relative; background: #e8e1d8; }
.map-shell iframe { width: 100%; height: 100%; min-height: 650px; border: 0; filter: saturate(0.78) sepia(0.08); }
.map-route {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--paper-strong);
  box-shadow: 0 15px 40px rgba(38,62,57,0.16);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  align-items: end;
  gap: 40px;
  width: var(--content);
  margin: 0 auto;
  padding: 50px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
}
.site-footer > div { display: grid; gap: 5px; }
.footer-name { color: var(--ink); font-family: var(--display); font-size: 1rem; letter-spacing: 0.08em; }
.site-footer p { max-width: 650px; margin: 0; }

.floating-whatsapp,
.back-to-top {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(38,62,57,0.22);
}

.floating-whatsapp { left: max(18px, env(safe-area-inset-left)); background: #257d5c; color: white; }
.floating-whatsapp svg { width: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.back-to-top { right: max(18px, env(safe-area-inset-right)); background: var(--coral); color: white; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 800ms cubic-bezier(.22,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --content: min(100% - 48px, 1120px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .desktop-nav { display: none; }
  .menu-toggle { position: relative; display: block; }
  .mobile-menu { display: block; }
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr); gap: 40px; }
  .sun-disc { right: 0; }
  h1 { font-size: clamp(3.35rem, 6vw, 5.2rem); }
  .direction-grid { grid-template-columns: 1fr 1fr; }
  .movement-card { grid-template-columns: 1fr; gap: 18px; }
  .movement-card .card-action { grid-column: 1; }
  .direction-card { min-height: 480px; }
  .about { gap: 54px; }
  .start { grid-template-columns: 1fr 1fr; gap: 44px; }
  .contacts { grid-template-columns: 1fr 1fr; }
  .contact-links a { grid-template-columns: 110px minmax(0,1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; --content: calc(100% - 40px); }
  .header-phone { display: none; }
  .brand-note { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }
  .hero-copy { max-width: 760px; }
  .hero-lead { max-width: 650px; }
  .hero-media { width: min(780px, 92%); margin: 32px auto 0; }
  .hero-index { margin-top: 24px; }
  .sun-disc { right: -28px; }
  .journey-line { left: auto; right: 2%; width: 70px; opacity: 0.58; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: 450px; }
  .movement-card { grid-template-columns: 58px minmax(0,1fr); }
  .movement-card .card-action { grid-column: 1 / -1; }
  .about { grid-template-columns: 1fr; }
  .about-media { width: min(720px, 94%); }
  .about-copy { max-width: 760px; margin-left: auto; }
  .about-copy { width: 100%; min-width: 0; margin-left: 0; }
  .start { grid-template-columns: 1fr; }
  .start-button { grid-column: 1; }
  .faq { grid-template-columns: 1fr; }
  .faq .section-heading { margin-bottom: 44px; }
  .contacts { grid-template-columns: 1fr; }
  .contact-panel, .map-shell, .map-shell iframe { min-height: 560px; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  :root { --content: calc(100% - 32px); --radius: 22px; }
  .site-header { padding-inline: 16px; }
  .brand-name { font-size: 1.06rem; }
  .header-actions { gap: 7px; }
  .language-switch button { width: 44px; min-height: 44px; }
  .hero { gap: 18px; padding-top: 44px; }
  .eyebrow { margin-bottom: 18px; font-size: 0.64rem; letter-spacing: 0.13em; }
  .eyebrow::before { width: 22px; margin-right: 9px; }
  h1 { font-size: clamp(2.65rem, 13.1vw, 4.25rem); line-height: 1.04; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.55rem); line-height: 1.07; }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions { display: grid; gap: 8px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .microcopy { margin-top: 14px; }
  .hero-media { width: 100%; margin-top: 22px; }
  .hero-photo { border-radius: 46% 46% 18px 18px; }
  .hero-photo img { aspect-ratio: 1.44; object-fit: cover; }
  .sun-disc { top: -28px; right: 0; width: 118px; }
  .hero-stamp { right: 8px; bottom: 12px; }
  .hero-index { font-size: 0.58rem; }
  .section { padding-block: 88px; }
  .section-heading { margin-bottom: 34px; }
  .direction-card { min-height: 420px; padding: 28px; }
  .movement-card { grid-template-columns: 40px minmax(0,1fr); gap: 12px; }
  .direction-card h3, .beauty-card h3 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .direction-card p:not(.direction-tag) { font-size: 0.94rem; }
  .beauty-orbit { width: 180px; }
  .about-media { width: calc(100% - 8px); }
  .about-media::before { top: -14px; left: -14px; }
  .about-media img { border-radius: 18px 45% 18px 18px; }
  .about-copy { margin-top: 22px; }
  .about-copy > p:not(.eyebrow) { margin-top: 22px; font-size: 0.96rem; }
  .fact-list { margin-top: 30px; }
  .start { width: 100%; padding: 72px 24px; border-radius: 0; }
  .steps li { grid-template-columns: 42px minmax(0,1fr); padding: 24px 0; }
  .start-button { width: 100%; }
  .faq-list summary { min-height: 70px; font-size: 1rem; }
  .faq-list details p { padding-right: 20px; font-size: 0.9rem; }
  .contact-panel { padding: 32px 24px; }
  .contact-panel, .map-shell, .map-shell iframe { min-height: 520px; }
  .contact-links { padding-top: 42px; }
  .contact-links a { grid-template-columns: 1fr; gap: 5px; min-height: 72px; }
  .map-route { right: 12px; bottom: 12px; left: 12px; padding-inline: 18px; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; padding-bottom: 92px; }
  .site-footer p { grid-column: 1; grid-row: auto; }
  .floating-whatsapp, .back-to-top { width: 50px; height: 50px; }
  .journey-line { right: 0; width: 46px; opacity: 0.45; }
}

@media (max-width: 360px) {
  :root { --content: calc(100% - 28px); }
  .site-header { padding-inline: 14px; }
  .brand-name { font-size: 0.98rem; }
  .language-switch { min-height: 48px; }
  .language-switch button { width: 44px; min-height: 44px; }
  .menu-toggle { width: 44px; height: 44px; }
  h1 { font-size: clamp(2.5rem, 12.8vw, 3rem); }
  h2 { font-size: clamp(2.12rem, 10.5vw, 2.65rem); }
  .direction-card { padding: 24px; }
  .direction-card h3, .beauty-card h3 { font-size: 2.55rem; }
  .hero-stamp { font-size: 0.56rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .journey-progress { stroke-dashoffset: 0 !important; }
}
