/* ─────────────────────────────────────────────────────────────────────────────
   STILLE — Stylesheet
   Order: tokens → reset → base → typography → layout helpers → sections
   ───────────────────────────────────────────────────────────────────────────── */

/* ── 1. Design tokens ────────────────────────────────────────────────────── */

:root {
  /* Colors */
  --color-alabaster: #f5f0e8;
  --color-alabaster-dark: #e8e0d0;
  --color-ash-grey: #daccbd;
  --color-brick: #9d4e28;
  --color-forest: #4a6355;
  --color-french-grey: #a09a8c;
  --color-linseed: #c58848;
  --color-onyx: #1a1a18;
  --color-onyx-60: rgba(26, 26, 24, 0.6);
  --color-onyx-80: rgba(26, 26, 24, 0.8);
  --color-white: #ffffff;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-display: "Cormorant", serif;

  /* Type scale */
  --text-label: 11px;
  --text-nav: 14px;
  --text-small: 13px;
  --text-body: 16px;
  --text-body-lg: 18px;
  --text-h4: 20px;
  --text-h3: 28px;
  --text-h2: 40px;
  --text-h1: 56px;
  --text-hero: 80px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 120px;

  /* Layout */
  --site-width: 1440px;
  --content-width: 1200px;
  --nav-h: 80px;
  --gutter: 80px;

  /* Radii */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 40px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.3s;
}

/* ── 2. Reset & base ─────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-body);
  color: var(--color-onyx);
  background: var(--color-alabaster);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}

/* ── 3. Typography ───────────────────────────────────────────────────────── */

.label {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.display {
  font-family: var(--font-display);
}

/* ── 4. Shared / utility ─────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-size: var(--text-nav);
  font-weight: 500;
  letter-spacing: 1px;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
  cursor: pointer;
}

.btn--outline {
  border: 1px solid var(--color-onyx);
  color: var(--color-onyx);
}

.btn--outline:hover {
  background: var(--color-onyx);
  color: var(--color-alabaster);
}

.btn--ghost {
  border: 1px solid rgba(245, 240, 232, 0.75);
  color: var(--color-alabaster);
  background: var(--color-onyx-60);
  padding: 16px 36px;
  font-weight: 300;
  letter-spacing: 1.5px;
}

.btn--ghost:hover {
  background: rgba(26, 26, 24, 0.8);
}

.btn--primary {
  background: var(--color-linseed);
  color: var(--color-onyx);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 3px;
  padding: 0 24px;
  border-radius: 0;
  height: 56px;
  width: 100%;
}

.btn--primary:hover {
  opacity: 0.88;
}

/* ── 5. Navigation ───────────────────────────────────────────────────────── */

#nav {
  background: var(--color-alabaster);
  color: var(--color-onyx);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: box-shadow var(--dur) var(--ease);
}

#nav.nav--scrolled {
  box-shadow: 0 1px 0 rgba(26, 26, 24, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
  max-width: var(--site-width);
  margin: 0 auto;
}

.nav__logo {
  display: block;
  flex-shrink: 0;
}

.nav__logo img {
  display: block;
  width: 110px;
  height: 32px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--text-nav);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-onyx);
  transition: opacity var(--dur) var(--ease);
}

.nav__link:hover {
  opacity: 0.6;
}

.nav__cta {
  flex-shrink: 0;
}

/* ── 6. Hero ─────────────────────────────────────────────────────────────── */

.hero {
  background: var(--color-onyx);
  color: var(--color-alabaster);
  position: relative;
  width: 100%;
  height: 800px;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.08) translate(0, 0);
  }
  33% {
    transform: scale(1.05) translate(-1%, 0.5%);
  }
  66% {
    transform: scale(1.07) translate(-1.5%, -0.5%);
  }
  100% {
    transform: scale(1.08) translate(0, 0);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenBurns 30s ease-in-out infinite;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.5);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--site-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.hero__logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60vw;
}

.hero__logo {
  display: block;
  width: 50vw;
  height: auto;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 1s var(--ease) 0.3s,
    transform 1s var(--ease) 0.3s;
}

.hero.is-loaded .hero__logo {
  opacity: 1;
  transform: translateY(0);
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding-bottom: 20px;
  overflow: hidden;
}

.hero__subtitle {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.8s var(--ease) 0.6s,
    transform 0.8s var(--ease) 0.6s;
}

.hero.is-loaded .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero__subtitle-part {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, 0.82);
}

.hero__subtitle-dot {
  font-size: 15px;
  color: var(--color-linseed);
  padding: 0 8px;
}

.hero__register {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.8s var(--ease) 0.75s,
    transform 0.8s var(--ease) 0.75s;
}

.hero.is-loaded .hero__register {
  opacity: 1;
  transform: translateY(0);
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--md) 0;
  opacity: 0;
  transition: opacity 1s var(--ease) 1.1s;
}

.hero.is-loaded .hero__scroll {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: #9a948c;
}

.hero__scroll-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #b4aea8;
}

/* ── 7. Introduction ─────────────────────────────────────────────────────── */

.intro {
  background: var(--color-alabaster-dark);
  color: var(--color-onyx);
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 719px;
  overflow: hidden;
}

.intro__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
  width: 620px;
  padding: var(--space-3xl) 0;
  padding-left: var(--gutter);
  padding-right: 0;
  flex-shrink: 0;
}

.intro__left > *:not(.intro__logo-bg) {
  position: relative;
  z-index: 1;
}

.intro__label {
  color: var(--color-french-grey);
}

.intro__headline {
  font-family: var(--font-primary);
  font-size: 86px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -2px;
  white-space: pre-line;
}

.intro__divider {
  width: 40px;
  height: 1px;
  background: var(--color-linseed);
  flex-shrink: 0;
}

.intro__accent-quote {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: var(--color-forest);
}

.intro__vert-rule {
  width: 1px;
  align-self: center;
  height: 360px;
  background: var(--color-linseed);
  flex-shrink: 0;
}

.intro__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  width: 520px;
  padding: 100px 60px 100px 60px;
  flex-shrink: 0;
}

.intro__pull-quote {
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -6px;
  color: #d0c8b8; /* onyx at 8% on alabaster-dark */
  width: 160px;
  user-select: none;
}

.intro__lead {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.3px;
  width: 380px;
  white-space: pre-line;
}

.intro__divider-right {
  width: 32px;
  height: 1px;
  background: var(--color-linseed);
  flex-shrink: 0;
}

.intro__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-french-grey);
  width: 380px;
}

.intro__tagline {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-forest);
  line-height: 1.5;
}

.intro__logo-bg {
  position: absolute;
  left: -50%;
  top: 39%;
  transform: translateY(-50%);
  width: 130%;
  aspect-ratio: 1;
  background: url("../images/sketch-logo.png") no-repeat center / contain;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

/* ── 8. Architecture ─────────────────────────────────────────────────────── */

.arch {
  background: var(--color-alabaster);
  color: var(--color-onyx);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.arch__hero-bleed {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.arch__hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.arch__hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(245, 240, 232, 0) 0%,
    rgba(245, 240, 232, 0.8) 100%
  );
}

.arch__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 72px var(--gutter) 48px;
  width: 100%;
}

.arch__title-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arch__label {
  color: var(--color-forest);
}

.arch__title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  white-space: pre-line;
  width: 500px;
}

.arch__intro {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
  color: #676561;
  width: 400px;
}

.arch__material {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: #3d3830;
  margin: 0 var(--gutter) 80px;
  max-width: 760px;
  border-left: 2px solid var(--color-linseed);
  padding-left: 32px;
}

.arch__bottom-grid {
  display: flex;
  width: 100%;
  height: 520px;
}

.arch__left-img {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.arch__left-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease);
}

.arch__left-img:hover .arch__left-img-inner {
  transform: scale(1.03);
}

.arch__right-panel {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 80px;
  justify-content: center;
}

.arch__feat-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arch__feat-label {
  color: var(--color-forest);
  font-size: 10px;
  letter-spacing: 4px;
}

.arch__feat-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.3px;
  white-space: pre-line;
  width: 360px;
}

.arch__feat-divider {
  width: 32px;
  height: 1px;
  background: var(--color-linseed);
}

.arch__feat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.arch__feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.arch__feat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-linseed);
  flex-shrink: 0;
}

.arch__feat-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #51504c;
}

/* ── 9. The Homes ────────────────────────────────────────────────────────── */

.homes {
  background: var(--color-alabaster-dark);
  color: var(--color-onyx);
  width: 100%;
  min-height: 960px;
}

.homes__body {
  display: flex;
  width: 100%;
  min-height: 960px;
  align-items: stretch;
}

.homes__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: 100px 100px 100px 80px;
  justify-content: center;
  order: 1;
}

.homes__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.homes__label {
  color: var(--color-forest);
  font-size: 10px;
  letter-spacing: 4px;
}

.homes__title {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  white-space: pre-line;
}

.homes__desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #626059;
}

/* Homes table */
.homes__table {
  display: flex;
  flex-direction: column;
}

.homes__table-top {
  height: 1px;
  background: #cfc8ba;
}

.homes__row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: space-between;
  min-height: 72px;
  padding: 16px 0;
  border-bottom: 1px solid #cfc8ba;
}

.homes__row-key {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #8b847a;
  width: 20px;
  flex-shrink: 0;
}

.homes__row-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.homes__row-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.homes__row-detail {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #8b877d;
}

.homes__row-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.homes__row-size {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.2px;
}

.homes__row-count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-forest);
}

.homes__table-bot {
  height: 1px;
  background: #cfc8ba;
}

/* Homes CTA row */
.homes__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.homes__cta-note {
  font-size: 13px;
  font-weight: 400;
  color: #8b877d;
}

.homes__cta-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-onyx);
  border-bottom: 1px solid var(--color-onyx);
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease);
}

.homes__cta-link:hover {
  color: var(--color-forest);
  border-color: var(--color-forest);
}

/* Homes image panel */
.homes__right {
  position: relative;
  width: 50%;
  min-height: 500px;
  overflow: hidden;
  order: 2;
}

.homes__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease);
}

.homes__right:hover .homes__img {
  transform: scale(1.03);
}

.homes__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(26, 26, 24, 0.8) 0%,
    rgba(26, 26, 24, 0) 60%
  );
}

.homes__img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.homes__img-label {
  color: #9a6a38;
  font-size: 10px;
  letter-spacing: 4px;
}

.homes__img-title {
  font-family: var(--font-primary);
  font-size: 44px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--color-alabaster);
  white-space: pre-line;
  width: 460px;
}

/* ── 10. The Story ───────────────────────────────────────────────────────── */

.story {
  background: var(--color-linseed);
  color: var(--color-onyx);
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  width: 100%;
  min-height: 720px;
  padding: 100px var(--gutter);
}

.story__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 480px;
  flex-shrink: 0;
}

.story__label {
  color: #705130;
  font-size: 11px;
  letter-spacing: 4px;
}

.story__title {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  width: 480px;
}

.story__dev {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid rgba(112, 81, 48, 0.25);
  border-bottom: 1px solid rgba(112, 81, 48, 0.25);
}

.story__dev-name {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--color-onyx);
}

.story__dev-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #4a3826;
}

.story__dev-url {
  font-size: 13px;
  font-weight: 400;
  color: #705130;
  text-decoration: none;
}

.story__dev-url:hover {
  text-decoration: underline;
}

.story__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 52px;
}

.story__body {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

.story__team-grid {
  display: flex;
  gap: 48px;
  padding-top: 0;
}

.story__team-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story__team-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.story__team-members {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story__team-member {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.story__team-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #785733;
}

.story__team-name {
  font-size: 18px;
  font-weight: 500;
}

.story__team-url {
  font-size: 14px;
  font-weight: 400;
  color: #705130;
  text-decoration: none;
}

.story__team-url:hover {
  text-decoration: underline;
}

/* ── 11. Neighbourhood ───────────────────────────────────────────────────── */

.nbhd {
  background: var(--color-forest);
  color: var(--color-alabaster);
  display: flex;
  width: 100%;
  height: 820px;
  overflow: hidden;
}

.nbhd__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 50%;
  padding: 100px 80px;
}

.nbhd__label {
  color: var(--color-linseed);
  font-size: 11px;
  letter-spacing: 4px;
}

.nbhd__title {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-alabaster);
  white-space: pre-line;
}

.nbhd__body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-french-grey);
  white-space: pre-line;
}

.nbhd__places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}

.nbhd__place {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nbhd__place-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-alabaster);
}

.nbhd__place-dist {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-linseed);
}

.nbhd__map {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.nbhd__map-inner {
  position: absolute;
  inset: -4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(0.042deg);
  transform-origin: center;
}

/* ── 12. Register ────────────────────────────────────────────────────────── */

.register {
  background: var(--color-onyx);
  color: var(--color-alabaster);
  position: relative;
  width: 100%;
  height: 860px;
  overflow: hidden;
}

.register__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
}

.register__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 24, 0.93) 0%,
    rgba(26, 26, 24, 0.53) 100%
  );
}

.register__cols {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
}

.register__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  width: 50%;
  padding: 0 96px 0 var(--gutter);
}

.register__eyebrow {
  color: var(--color-linseed);
  font-size: 10px;
  letter-spacing: 4px;
}

.register__divider {
  width: 40px;
  height: 1px;
  background: #7a5030;
}

.register__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.register__heading-line {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -1px;
}

.register__body {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.75;
  color: #b4b0aa;
}

.register__contact {
  font-size: 13px;
  font-weight: 400;
  color: #9a6d3d;
}

/* Form */
.register__right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 64px;
  border-left: 1px solid rgba(245, 240, 232, 0.08);
}

.register__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 480px;
}

.register__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register__row {
  display: flex;
  gap: 16px;
}

.register__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.register__field--full {
  flex: 100%;
}

.register__field-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9e9b96;
}

.register__field-input,
.register__field-select {
  height: 48px;
  background: rgba(255, 255, 255, 0.031);
  border: 1px solid rgba(245, 240, 232, 0.25);
  color: var(--color-alabaster);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  transition: border-color var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.register__field-input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.register__field-input:focus,
.register__field-select:focus {
  border-color: rgba(245, 240, 232, 0.55);
}

.register__field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5F0E8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.register__field-select option {
  background: var(--color-onyx);
  color: var(--color-alabaster);
}

.register__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.register__checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(245, 240, 232, 0.38);
  background: rgba(255, 255, 255, 0.031);
  flex-shrink: 0;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
  position: relative;
  margin-top: 2px;
}

.register__checkbox[aria-checked="true"] {
  background: var(--color-linseed);
  border-color: var(--color-linseed);
}

.register__checkbox[aria-checked="true"]::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%231A1A18' stroke-width='1.5' fill='none'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.register__consent-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
  color: #888581;
}

/* ── 13. Footer ──────────────────────────────────────────────────────────── */

.footer {
  background: var(--color-onyx);
  color: var(--color-french-grey);
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  padding: 80px var(--gutter);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__wordmark-link {
  display: block;
}

.footer__wordmark-img {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer__address {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-french-grey);
  white-space: pre-line;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.footer__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-ash-grey);
  transition: color var(--dur) var(--ease);
}

.footer__link:hover {
  color: var(--color-alabaster);
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__logo-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease);
}

.footer__logo-link:hover {
  opacity: 0.9;
}

.footer__logo-img {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer__logo-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-french-grey);
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: #3a3a36;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-lg);
}

.footer__disclaimer {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b6560;
  max-width: 473px;
}

.footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: #6b6560;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── 14. Scroll reveal animations ────────────────────────────────────────── */

/* Elements start visible. Only become animated once JS marks them ready. */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

.reveal-ready.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal-ready.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal-ready.reveal--delay-3 {
  transition-delay: 0.3s;
}
.reveal-ready.reveal--delay-4 {
  transition-delay: 0.4s;
}
.reveal-ready.reveal--delay-5 {
  transition-delay: 0.5s;
}

/* ── 15. Form success state ──────────────────────────────────────────────── */

.register__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px;
  color: var(--color-alabaster);
}

.register__success.is-visible {
  display: flex;
}

.register__form.is-submitted {
  display: none;
}

.register__success-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-linseed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register__success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-alabaster);
}

.register__success-body {
  font-size: 14px;
  line-height: 1.6;
  color: #a09a8c;
}
