:root {
  --forest: #103c32;
  --forest-strong: #082c25;
  --gold: #d4ad2c;
  --gold-ink: #8d6b00;
  --gold-soft: #f3e5aa;
  --mint: #e8f3e7;
  --mint-strong: #cfe4cf;
  --paper: #ffffff;
  --off-white: #f7faf4;
  --ink: #173a31;
  --muted: #587069;
  --line: rgba(16, 60, 50, 0.2);
  --shadow: 0 20px 60px rgba(26, 74, 61, 0.13);
  --content: min(1240px, calc(100% - 64px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--off-white);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 42px;
  color: var(--forest-strong);
  transition: background-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  width: 92px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 52px;
  text-decoration: none;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 0.82;
}

.brand-word-gold {
  color: var(--gold-ink);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--forest-strong);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle,
.menu-toggle {
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--mint);
}

.hero-media,
.hero-video-backdrop,
.hero-stage-graphics,
.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
  overflow: hidden;
  background: var(--mint);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-backdrop {
  background: var(--off-white);
}

.hero-video-backdrop::before,
.hero-video-backdrop::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}

.hero-video-backdrop::before {
  left: 0;
  width: 32%;
  background: var(--mint);
  border-right: 1px solid var(--line);
}

.hero-video-backdrop::after {
  right: 62px;
  width: 18%;
  background: var(--gold-soft);
  border-left: 1px solid rgba(141, 107, 0, 0.18);
}

.hero-video-main {
  inset: 0 auto 0 52.5%;
  width: auto;
  height: 100%;
  aspect-ratio: 9 / 16;
  transform: translateX(-50%);
  border-right: 1px solid rgba(16, 60, 50, 0.22);
  border-left: 1px solid rgba(16, 60, 50, 0.22);
  box-shadow: 0 0 64px rgba(16, 60, 50, 0.12);
}

.hero-scrim {
  background: transparent;
  pointer-events: none;
}

.hero-stage-graphics {
  z-index: 0;
  overflow: hidden;
  color: var(--forest);
  pointer-events: none;
}

.hero-stage-kicker {
  position: absolute;
  top: 116px;
  right: 96px;
  font-size: 0.7rem;
  font-weight: 900;
  writing-mode: vertical-rl;
}

.hero-stage-word {
  position: absolute;
  top: 16%;
  right: 6.8%;
  color: transparent;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(5.4rem, 9vw, 10rem);
  font-weight: 900;
  line-height: 0.8;
  writing-mode: vertical-rl;
  -webkit-text-stroke: 2px rgba(16, 60, 50, 0.42);
}

.hero-stage-beat {
  position: absolute;
  right: 12.8%;
  bottom: 92px;
  display: flex;
  gap: 14px;
  color: var(--gold-ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
}

.hero-stage-beat b {
  min-width: 30px;
  padding-top: 9px;
  border-top: 3px solid currentColor;
}

.hero-stage-line {
  position: absolute;
  height: 1px;
  display: block;
  background: rgba(16, 60, 50, 0.24);
}

.hero-stage-line-top {
  top: 30%;
  right: 62px;
  width: 24%;
}

.hero-stage-line-bottom {
  right: 62px;
  bottom: 25%;
  width: 20%;
}

.hero-copy {
  width: var(--content);
  min-height: 94svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 150px 0 76px;
}

.hero-place,
.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--forest);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 7.2rem;
  font-weight: 900;
  line-height: 0.76;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--gold-ink);
}

.hero-lead {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--forest-strong);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--forest);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-strong);
}

.button-quiet {
  color: var(--forest);
  border-color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
}

.button-outline {
  color: var(--forest);
  border-color: var(--forest);
  background: transparent;
}

.video-controls {
  position: absolute;
  right: 92px;
  bottom: 26px;
  display: flex;
  gap: 8px;
}

.video-controls button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 60, 50, 0.35);
  border-radius: 4px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
}

.booking-rail {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 34px;
  color: var(--gold-soft);
  background: var(--forest);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pulse-strip {
  min-height: 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--forest);
  background: var(--gold-soft);
  border-bottom: 1px solid rgba(16, 60, 50, 0.16);
}

.pulse-track {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pulse-track > span {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-right: 1px solid rgba(16, 60, 50, 0.16);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.pulse-track strong {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 132px 0;
}

.section-heading,
.results-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.55fr);
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow,
.results-heading .eyebrow {
  grid-column: 1 / -1;
}

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--forest-strong);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
  white-space: pre-line;
}

.section-heading > p:last-child,
.results-heading > p:last-child,
.studio-copy > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 72px;
}

.age-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.age-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.age-card-mint {
  background: var(--mint);
}

.age-card-gold {
  background: var(--gold-soft);
}

.age-number {
  margin: 0;
  color: var(--gold-ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 1;
}

.age-number span {
  color: var(--forest);
}

.age-card h3 {
  margin-bottom: 10px;
  color: var(--forest-strong);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.age-card div p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.method-section {
  width: 100%;
  padding-right: max(32px, calc((100% - 1240px) / 2));
  padding-left: max(32px, calc((100% - 1240px) / 2));
  background: var(--mint);
}

.method-intro {
  max-width: 880px;
}

.method-list {
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-list li {
  display: grid;
  grid-template-columns: 72px minmax(190px, 0.45fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: var(--gold-ink);
  font-weight: 900;
}

.method-list h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.method-list p {
  margin: 0;
  color: var(--muted);
}

.results-section {
  padding-bottom: 58px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 72px;
}

.result-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(16, 60, 50, 0.09);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.result-photo-wide {
  grid-column: 1 / 8;
}

.result-photo-tall {
  grid-column: 8 / 13;
}

.result-photo:nth-child(3) {
  grid-column: 1 / 7;
}

.result-photo:nth-child(4) {
  grid-column: 7 / 13;
}

.result-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.result-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(16, 60, 50, 0.14);
}


.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 88px;
  align-items: center;
}

.studio-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.studio-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  background: var(--forest);
  border-radius: 50%;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.studio-copy h2 {
  max-width: 760px;
  margin-bottom: 28px;
}

.studio-copy > p {
  max-width: 620px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--forest);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.contact-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  padding-right: max(32px, calc((100% - 1240px) / 2));
  padding-left: max(32px, calc((100% - 1240px) / 2));
  background: var(--mint-strong);
}

.contact-copy h2 {
  max-width: 720px;
  margin-bottom: 32px;
}

.contact-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  min-height: 76px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1.02rem;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.social-button {
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--forest-strong);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 60, 50, 0.28);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(16, 60, 50, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-ink);
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(16, 60, 50, 0.13);
}

.social-button-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--forest-strong);
  background: var(--gold-soft);
  border: 1px solid rgba(141, 107, 0, 0.22);
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.social-button small,
.social-button strong {
  display: block;
}

.social-button small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-button strong {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
}

.map-wrap {
  min-height: 560px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.75) hue-rotate(62deg);
}

.site-footer {
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding: 58px max(32px, calc((100% - 1240px) / 2));
  color: var(--forest);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--forest);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.78;
}

.footer-brand span {
  display: block;
}

.footer-brand span:last-child {
  color: var(--gold-ink);
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: right;
}

.floating-whatsapp,
.back-top {
  position: fixed;
  bottom: 18px;
  z-index: 70;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(16, 60, 50, 0.2);
  text-decoration: none;
  font-weight: 900;
}

.floating-whatsapp {
  left: 18px;
  background: #168f5f;
}

.back-top {
  right: 18px;
  background: var(--forest);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  :root {
    --content: min(100% - 48px, 960px);
  }

  .site-header {
    padding-right: 28px;
    padding-left: 28px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero h1 {
    font-size: 6rem;
  }

  .hero-lead,
  .hero-actions {
    max-width: 260px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-stage-word {
    right: 6.4%;
    font-size: 5.4rem;
  }

  .hero-stage-beat {
    right: 10%;
    gap: 8px;
  }

  .hero-stage-beat b {
    min-width: 24px;
  }

  h2 {
    font-size: 3.5rem;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-photo-wide,
  .result-photo-tall {
    grid-column: auto;
  }

  .result-photo:nth-child(3),
  .result-photo:nth-child(4) {
    grid-column: auto;
  }

  .studio-section,
  .contact-section {
    gap: 48px;
  }
}

@media (max-width: 800px) {
  :root {
    --content: calc(100% - 32px);
  }

  .site-header {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    padding: 8px 16px;
  }

  .brand {
    min-height: 48px;
    font-size: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    width: 100%;
    justify-self: stretch;
    display: grid;
    gap: 0;
    padding: 18px 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .hero-copy {
    min-height: 92svh;
  }

  .hero-video-backdrop {
    display: none;
  }

  .hero-stage-graphics {
    display: none;
  }

  .hero-video-main {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    transform: none;
    object-position: center;
  }

  .hero-scrim {
    background: linear-gradient(0deg, rgba(8, 44, 37, 0.72) 0%, rgba(8, 44, 37, 0.3) 38%, rgba(8, 44, 37, 0) 62%);
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 112px 0 110px;
  }

  .hero h1 {
    font-size: 4.1rem;
    color: var(--paper);
    text-shadow: 0 2px 20px rgba(8, 44, 37, 0.28);
  }

  .hero h1 span:last-child {
    color: var(--gold-soft);
  }

  .hero-place,
  .hero-lead {
    color: var(--paper);
    text-shadow: 0 2px 14px rgba(8, 44, 37, 0.34);
  }

  .hero-lead {
    max-width: 360px;
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .video-controls {
    right: 16px;
    bottom: 18px;
  }

  .video-controls button {
    padding: 0 10px;
    font-size: 0.7rem;
  }

  .booking-rail {
    display: none;
  }

  .pulse-track {
    display: flex;
    width: max-content;
  }

  .pulse-track > span {
    min-width: 220px;
  }

  .pulse-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pulse-strip::-webkit-scrollbar {
    display: none;
  }

  .pulse-track > span:first-child {
    padding-left: 78px;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading,
  .results-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h2 {
    font-size: 2.8rem;
  }

  .age-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 48px;
  }

  .age-card {
    min-height: 250px;
  }

  .method-section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .method-list {
    margin-top: 48px;
  }

  .method-list li {
    grid-template-columns: 46px 1fr;
    gap: 10px 16px;
    padding: 24px 0;
  }

  .method-list li p {
    grid-column: 2;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }

  .result-photo-wide {
    grid-column: 1 / -1;
  }

  .studio-section {
    grid-template-columns: 1fr;
  }

  .studio-photo {
    max-height: 720px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .hero,
  .hero-copy {
    min-height: 91svh;
  }

  .hero-copy {
    padding-bottom: 126px;
  }

  .hero-place {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero-actions {
    width: 100%;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .video-controls {
    right: auto;
    bottom: 66px;
    left: 16px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h2 {
    font-size: 2.28rem;
  }

  .age-number {
    font-size: 3.8rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-photo,
  .result-photo-wide,
  .result-photo-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .studio-section {
    gap: 44px;
  }

  .studio-stamp {
    width: 86px;
    height: 86px;
    font-size: 0.9rem;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .contact-actions {
    display: grid;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 48px 24px 92px;
  }

  .site-footer p {
    text-align: left;
  }

  .floating-whatsapp,
  .back-top {
    bottom: 14px;
    width: 48px;
    height: 48px;
  }

  .floating-whatsapp {
    left: 14px;
  }

  .back-top {
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
