:root {
  color-scheme: light;
  --cream: #fff8f2;
  --beige: #f3e9dd;
  --rose: #d89ca4;
  --rose-deep: #b75f73;
  --mauve: #8b5a62;
  --brown: #5b3a32;
  --ink: #2c211d;
  --gold: #d4b483;
  --sage: #7d8b74;
  --plum: #3d1f2d;
  --clay: #b87755;
  --white: #ffffff;
  --line: rgba(91, 58, 50, 0.16);
  --line-strong: rgba(91, 58, 50, 0.28);
  --shadow: 0 24px 70px rgba(54, 33, 27, 0.12);
  --radius: 8px;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--brown);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 248, 242, 0.88);
  border-bottom: 1px solid rgba(91, 58, 50, 0.1);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  gap: 0;
  text-decoration: none;
  color: var(--brown);
  line-height: 1;
}

.brand-mark span {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand-mark small {
  color: var(--mauve);
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(44, 33, 29, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav .nav-cta {
  color: var(--cream);
  background: var(--brown);
  padding: 11px 16px;
  border-radius: 999px;
}

.site-nav .nav-cta::after {
  content: none;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--brown);
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.nav-toggle {
  display: none;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.78fr);
  column-gap: clamp(32px, 6vw, 84px);
  row-gap: clamp(18px, 3vw, 28px);
  align-items: center;
  padding: 98px clamp(18px, 6vw, 78px) 28px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 248, 242, 0.95) 0 38%, rgba(243, 233, 221, 0.84) 72%, rgba(216, 156, 164, 0.22)),
    radial-gradient(circle at 18% 20%, rgba(212, 180, 131, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(91, 58, 50, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px;
  pointer-events: none;
  z-index: -1;
}

.hero-copy,
.hero-media,
.journey-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.mini-label {
  margin: 0 0 14px;
  color: var(--rose-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-title {
  margin: 0;
  font-family: var(--serif);
  color: var(--brown);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 7.8rem);
}

.hero-copy h1 span {
  color: var(--mauve);
  font-style: italic;
}

.hero-lede {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(44, 33, 29, 0.76);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button-primary {
  background: var(--brown);
  color: var(--cream);
  box-shadow: 0 12px 26px rgba(91, 58, 50, 0.18);
}

.button-primary:hover {
  background: var(--mauve);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line-strong);
  color: var(--brown);
}

.hero-media {
  min-height: 500px;
}

.portrait-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--beige);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(44, 33, 29, 0.78);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.portrait-card-large {
  inset: 0 auto auto 8%;
  width: min(68%, 420px);
  height: 420px;
}

.portrait-card-small {
  right: 0;
  top: 54px;
  width: min(46%, 250px);
  height: 255px;
}

.portrait-card-small.second {
  top: auto;
  bottom: 20px;
  right: 15%;
  width: min(52%, 300px);
  height: 210px;
}

.journey-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  width: 100%;
  margin: -8px auto 0;
  padding: 18px;
  border: 1px solid rgba(91, 58, 50, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(91, 58, 50, 0.08);
  backdrop-filter: blur(16px);
}

.journey-panel h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.journey-card {
  min-height: 112px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.journey-card:hover,
.journey-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--rose-deep);
  background: var(--white);
}

.journey-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--beige);
  color: var(--mauve);
  font-family: var(--serif);
  font-weight: 700;
}

.journey-card strong {
  color: var(--brown);
}

.journey-card small {
  color: rgba(44, 33, 29, 0.62);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 6vw, 78px);
}

.split-layout,
.section-heading,
.lashes-layout,
.contact-card,
.girls-content {
  max-width: var(--max);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: center;
}

.split-layout.align-start {
  align-items: start;
}

.section-title {
  max-width: 780px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.section-copy {
  margin: 24px 0 0;
  max-width: 670px;
  color: rgba(44, 33, 29, 0.72);
  font-size: 1rem;
}

.section-copy.compact {
  max-width: 460px;
}

.about-section,
.lashes-section,
.psychology-section {
  background: var(--white);
}

.about-stack {
  display: grid;
  gap: 14px;
}

.about-stack article,
.metric-card,
.services-panel,
.booking-panel,
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.about-stack article {
  padding: 24px;
}

.about-stack span {
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-stack h3,
.metric-card strong,
.services-panel h3,
.booking-panel h3,
.result-feature h3,
.event-card h3,
.note-card h3 {
  margin: 8px 0;
  color: var(--brown);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

.about-stack h3 {
  font-size: 1.8rem;
}

.about-stack p,
.metric-card p,
.event-card p,
.note-card p,
.booking-panel p,
.result-feature p {
  margin: 0;
  color: rgba(44, 33, 29, 0.68);
}

.worlds-section,
.fitness-section {
  background: var(--beige);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.world-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.world-card {
  min-height: 468px;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(91, 58, 50, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.world-card:hover,
.world-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(91, 58, 50, 0.13);
}

.world-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-card div {
  display: grid;
  align-content: start;
  padding: 20px;
}

.world-card span {
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.world-card h3 {
  margin: 12px 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.06;
  font-weight: 500;
}

.world-card p {
  margin: 0;
  color: rgba(44, 33, 29, 0.66);
  font-size: 0.94rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 0 0 0 30px;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--rose-deep);
  box-shadow: 0 0 0 7px rgba(216, 156, 164, 0.18);
}

.timeline article::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 26px;
  bottom: -24px;
  width: 1px;
  background: var(--line-strong);
}

.timeline article:last-child::after {
  content: none;
}

.timeline time {
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.timeline h3 {
  margin: 4px 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.05;
}

.timeline p {
  margin: 0;
  color: rgba(44, 33, 29, 0.68);
}

.metric-grid {
  max-width: var(--max);
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.metric-card span {
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-size: 2.3rem;
}

.wide-image-strip {
  max-width: var(--max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 14px;
}

.wide-image-strip img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.lashes-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.services-panel,
.booking-panel {
  padding: clamp(20px, 3vw, 32px);
}

.services-panel h3,
.booking-panel h3 {
  margin-top: 0;
  font-size: 2rem;
}

.price-category {
  margin-top: 26px;
}

.price-category h4 {
  margin: 0 0 8px;
  color: var(--rose-deep);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-strong);
}

.price-row span:first-child {
  color: rgba(44, 33, 29, 0.84);
}

.price-row::before {
  content: "";
  order: 2;
  border-bottom: 1px dashed rgba(91, 58, 50, 0.28);
}

.price-row strong {
  order: 3;
  color: var(--mauve);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.booking-panel {
  position: sticky;
  top: 92px;
  background: var(--brown);
  color: var(--cream);
}

.booking-panel h3 {
  color: var(--cream);
}

.booking-panel p {
  color: rgba(255, 248, 242, 0.7);
}

.booking-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form span {
  color: rgba(255, 248, 242, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 248, 242, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 248, 242, 0.08);
  color: var(--cream);
  padding: 11px 12px;
  outline: none;
}

.booking-form select option,
.booking-form select optgroup {
  color: var(--ink);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255, 248, 242, 0.42);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(216, 156, 164, 0.2);
}

.booking-form textarea {
  min-height: 94px;
  resize: vertical;
}

.booking-form .button-primary {
  width: 100%;
  margin-top: 4px;
  border: 0;
  background: var(--rose);
  color: var(--brown);
}

.result-feature {
  max-width: var(--max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
}

.result-feature > div {
  padding: clamp(22px, 4vw, 42px);
}

.result-feature h3 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.result-feature img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.girls-section {
  background:
    linear-gradient(135deg, rgba(61, 31, 45, 0.96), rgba(91, 58, 50, 0.96)),
    var(--plum);
  color: var(--cream);
}

.girls-content {
  text-align: center;
}

.girls-section .section-title {
  margin-inline: auto;
  color: var(--cream);
}

.girls-section .section-kicker {
  color: var(--rose);
}

.girls-mission {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 248, 242, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.4vw, 2rem);
  font-style: italic;
}

.event-grid {
  max-width: var(--max);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-card {
  display: grid;
  align-content: start;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 248, 242, 0.06);
}

.event-card span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card h3 {
  color: var(--cream);
  font-size: 2rem;
}

.event-card p {
  color: rgba(255, 248, 242, 0.68);
}

.event-card strong {
  display: block;
  margin-top: 22px;
  color: var(--gold);
}

.event-card a,
.event-card button {
  justify-self: start;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--rose);
  color: var(--brown);
  padding: 12px 16px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card button:disabled {
  cursor: not-allowed;
  background: rgba(255, 248, 242, 0.16);
  color: rgba(255, 248, 242, 0.52);
}

.gallery-grid {
  max-width: var(--max);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid rgba(255, 248, 242, 0.16);
  border-radius: var(--radius);
}

.notes-grid {
  max-width: var(--max);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.note-card {
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.note-card:hover,
.note-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(91, 58, 50, 0.12);
}

.note-card span {
  justify-self: start;
  border-radius: 999px;
  background: rgba(216, 156, 164, 0.22);
  color: var(--mauve);
  padding: 7px 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.note-card button {
  justify-self: start;
  margin-top: 6px;
  border: 0;
  border-bottom: 1px solid var(--mauve);
  background: transparent;
  color: var(--mauve);
  padding: 0 0 3px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--beige);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-grid a {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-decoration: none;
}

.social-grid span {
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-grid strong {
  color: var(--brown);
}

.note-dialog {
  width: min(720px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow);
}

.note-dialog::backdrop {
  background: rgba(44, 33, 29, 0.48);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.note-dialog span {
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.note-dialog h3 {
  margin: 14px 46px 18px 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.note-dialog p {
  margin: 0;
  color: rgba(44, 33, 29, 0.72);
  font-size: 1.02rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1f9d5a;
  color: var(--white);
  box-shadow: 0 16px 36px rgba(31, 157, 90, 0.28);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.site-footer {
  padding: 28px;
  background: var(--brown);
  color: rgba(255, 248, 242, 0.76);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1120px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    min-height: 460px;
  }

  .portrait-card-large {
    left: 0;
    width: min(70%, 560px);
    height: 420px;
  }

  .portrait-card-small {
    right: 4%;
    width: min(42%, 300px);
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    display: block;
    padding: 14px;
    border-radius: var(--radius);
    background: transparent;
    color: var(--brown);
  }

  .site-nav a::after {
    content: none;
  }

  .hero-section {
    padding-top: 96px;
  }

  .journey-panel,
  .split-layout,
  .section-heading,
  .lashes-layout,
  .result-feature,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .metric-grid,
  .event-grid,
  .notes-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .booking-panel {
    position: static;
  }

  .wide-image-strip {
    grid-template-columns: 1fr;
  }

  .wide-image-strip img,
  .result-feature img,
  .gallery-grid img {
    height: 330px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
  }

  .hero-section {
    padding-top: 86px;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 420px;
  }

  .portrait-card {
    border-width: 7px;
  }

  .portrait-card-large {
    width: 82%;
    height: 330px;
  }

  .portrait-card-small {
    top: 42px;
    width: 46%;
    height: 190px;
  }

  .portrait-card-small.second {
    right: 7%;
    width: 60%;
    height: 168px;
  }

  .journey-grid,
  .world-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .world-card {
    min-height: auto;
  }

  .section {
    padding-block: 72px;
  }
}
