@font-face {
  font-family: "HK Grotesk";
  src: url("assets/fonts/originals/hk-grotesk/WEB/HKGrotesk-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("assets/fonts/originals/hk-grotesk/WEB/HKGrotesk-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("assets/fonts/originals/hk-grotesk/WEB/HKGrotesk-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("assets/fonts/originals/hk-grotesk/WEB/HKGrotesk-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gellatio";
  src: url("assets/fonts/originals/gellatio/Gellatio-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --sand: #FBF3EA;
  --graphite: #2F2F2F;
  --blue: #7F91F0;
  --blue-light: #98A7F3;
  --rose: #D78A99;
  --rosewood: #AA5A73;
  --amethyst: #9E84BF;
  --honey: #DDA448;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-width: 82rem;
  --header-height: 5.25rem;
  --body-copy-size: 1.0625rem;
  --body-copy-leading: 1.65;
  color-scheme: light;
  font-family: "HK Grotesk", sans-serif;
  color: var(--graphite);
  background: var(--sand);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 20rem;
  background: var(--sand);
  color: var(--graphite);
  font-size: var(--body-copy-size);
  line-height: var(--body-copy-leading);
}

body.nav-open { overflow: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.2em; }
button, a { touch-action: manipulation; }
button { font: inherit; }
:focus-visible { outline: 0.1875rem solid var(--honey); outline-offset: 0.25rem; }
section, [id] { scroll-margin-top: calc(var(--header-height) + 1rem); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; line-height: 1.08; letter-spacing: -0.025em; }
h1 { max-width: 10ch; margin-bottom: 1.5rem; font-family: "Gellatio", "HK Grotesk", sans-serif; font-size: clamp(3.5rem, 7vw, 7rem); color: var(--sand); line-height: 1.08; }
h2 { max-width: 19ch; margin-bottom: 1.8rem; font-family: "Gellatio", "HK Grotesk", sans-serif; font-size: clamp(2.5rem, 4.5vw, 4.9rem); font-weight: 400; letter-spacing: 0; line-height: 1.18; }
h3 { font-size: clamp(1.85rem, 3vw, 3.2rem); }

.page-shell {
  width: min(100% - (2 * var(--page-gutter)), var(--content-width));
  margin-inline: auto;
}

.section { position: relative; padding-block: clamp(5.5rem, 10vw, 10rem); }
.prose { max-width: 42rem; }
.prose p { margin-bottom: 1.15rem; }
.prose--large { font-size: var(--body-copy-size); line-height: var(--body-copy-leading); }
.accent-line { margin-top: 2rem; padding: 1.2rem 1.4rem; border-left: 0.3rem solid var(--honey); border-radius: 0 1rem 1rem 0; background: rgba(251, 243, 234, 0.3); font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 500; line-height: 1.4; }
.short-line { padding-left: 1rem; border-left: 0.2rem solid currentColor; font-size: clamp(1.12rem, 1.55vw, 1.4rem); font-weight: 500; line-height: 1.4; }

.read-more { margin-top: 0.5rem; }
.read-more summary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.25em;
}
.read-more summary::-webkit-details-marker { display: none; }
.read-more summary::after { content: "+"; font-size: 1.25rem; text-decoration: none; }
.read-more__less { display: none; }
.read-more[open] { display: flex; flex-direction: column; }
.read-more[open] summary { order: 2; align-self: flex-start; margin-top: 0.4rem; }
.read-more[open] summary::after { content: "−"; }
.read-more[open] .read-more__more { display: none; }
.read-more[open] .read-more__less { display: inline; }
.read-more__content { order: 1; padding-top: 0.8rem; }
.read-more__content > :last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  background: var(--sand);
  color: var(--graphite);
  font-weight: 600;
}
.skip-link:focus-visible { transform: translateY(0); }

.scroll-top {
  position: fixed;
  z-index: 25;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 47, 47, 0.2);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0.75rem 2rem rgba(47, 47, 47, 0.18);
  color: var(--graphite);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}
.js .scroll-top { visibility: hidden; opacity: 0; transform: translateY(0.75rem); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms; }
.js body.is-page-scrolled .scroll-top { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem var(--page-gutter);
  color: var(--sand);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(251, 243, 234, 0.96);
  color: var(--graphite);
  box-shadow: 0 0.5rem 2rem rgba(47, 47, 47, 0.08);
}

.brand { display: inline-flex; min-height: 2.75rem; flex-direction: column; justify-content: center; text-decoration: none; line-height: 1.05; }
.brand__script { font-family: "Gellatio", "HK Grotesk", sans-serif; font-size: 1.4rem; line-height: 1.2; }
.brand strong { font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; }
.site-nav { display: flex; align-items: center; gap: clamp(0.5rem, 1.8vw, 1.75rem); }
.site-nav a { position: relative; display: inline-flex; min-height: 2.75rem; align-items: center; padding-inline: 0.35rem; text-decoration: none; font-size: 0.94rem; font-weight: 500; }
.site-nav a:not(.nav-contact):not(.nav-instagram)::after { content: ""; position: absolute; inset: auto 0.35rem 0.4rem; height: 0.125rem; transform: scaleX(0); transform-origin: left; background: currentColor; transition: transform 180ms ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-contact { border: 1px solid currentColor; border-radius: 999px; padding-inline: 1rem !important; }
.nav-instagram { width: 2.75rem; min-width: 2.75rem; justify-content: center; border: 0; border-radius: 50%; padding: 0 !important; background: var(--rose); color: var(--graphite); transition: transform 180ms ease; }
.nav-instagram:hover, .nav-instagram:focus-visible { transform: translateY(-0.125rem); }
.nav-instagram svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.nav-instagram__dot { fill: currentColor; stroke: none; }

.nav-toggle { display: none; min-width: 2.75rem; min-height: 2.75rem; align-items: center; gap: 0.55rem; border: 0; background: transparent; color: inherit; cursor: pointer; }
.nav-toggle__label { font-size: 0.9rem; font-weight: 600; }
.nav-toggle__lines, .nav-toggle__lines::before, .nav-toggle__lines::after { display: block; width: 1.35rem; height: 0.125rem; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
.nav-toggle__lines { position: relative; }
.nav-toggle__lines::before, .nav-toggle__lines::after { content: ""; position: absolute; left: 0; }
.nav-toggle__lines::before { top: -0.4rem; }
.nav-toggle__lines::after { top: 0.4rem; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before { transform: translateY(0.4rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after { transform: translateY(-0.4rem) rotate(-45deg); }

.hero { position: relative; display: grid; min-height: 100svh; align-items: end; isolation: isolate; overflow: clip; background: var(--graphite); color: var(--sand); }
.hero__image, .hero__veil { position: absolute; inset: 0; }
.hero__image { z-index: -2; overflow: clip; }
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform-origin: center center;
  animation: hero-breathe 14s ease-in-out infinite alternate;
  will-change: auto;
}
.hero__veil { z-index: -1; background: linear-gradient(90deg, rgba(47, 47, 47, 0.84), rgba(47, 47, 47, 0.42) 50%, rgba(47, 47, 47, 0.08)); }
.hero__content { padding-block: clamp(9rem, 18vh, 13rem) clamp(4rem, 9vh, 7rem); }
.hero__title-lockup {
  --hero-r-clearance: clamp(9rem, 14.5vw, 13rem);
  display: grid;
  width: min(100%, 62rem);
  grid-template-columns: var(--hero-r-clearance) minmax(0, 1fr);
  row-gap: clamp(1.75rem, 2.4vw, 2.75rem);
}
.hero h1 {
  display: flex;
  grid-column: 1 / -1;
  max-width: min(11ch, 100%);
  flex-direction: column;
  row-gap: clamp(3rem, 4vw, 4.5rem);
  margin: 0;
  font-size: clamp(4.75rem, 9vw, 9rem);
  line-height: 0.9;
}
.hero-title__script { font-family: "Gellatio", "HK Grotesk", sans-serif; font-size: 0.68em; font-weight: 400; letter-spacing: 0; line-height: 1.08; }
.hero-title__base { margin-left: 0.32em; font-size: 0.86em; line-height: 0.94; }
.hero__tagline { grid-column: 2; justify-self: start; text-align: left; margin: 0 0 1.65rem; font-size: clamp(1.1rem, 1.6vw, 1.35rem); font-weight: 600; letter-spacing: 0.02em; }
.hero__questions { max-width: 44rem; margin-bottom: 0; font-size: clamp(1.08rem, 1.5vw, 1.35rem); line-height: 1.5; }
.hero__questions p { margin-bottom: 0.22rem; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2rem; }
.button, .text-link { display: inline-flex; min-height: 2.75rem; align-items: center; justify-content: center; font-weight: 600; }
.button { border-radius: 999px; padding: 0.85rem 1.4rem; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-0.125rem); box-shadow: 0 0.65rem 1.25rem rgba(47, 47, 47, 0.14); }
.button--rose { background: var(--rose); color: var(--graphite); }
.button--graphite { background: var(--graphite); color: var(--sand); }
.text-link--light { color: var(--sand); }
.hero__scroll { position: absolute; right: var(--page-gutter); bottom: 2rem; display: grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid rgba(251, 243, 234, 0.7); border-radius: 50%; color: var(--sand); text-decoration: none; }

@keyframes hero-breathe {
  0% { transform: scale(1.018) translate3d(-0.12%, 0.08%, 0); }
  52% { transform: scale(1.032) translate3d(0.15%, -0.12%, 0); }
  100% { transform: scale(1.022) translate3d(-0.05%, 0.04%, 0); }
}

.js.motion-ready [data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity 600ms ease, transform 600ms ease; }
.js.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
