/* ============================================================
   KALON AGENCY – Design System & Stylesheet
   Ideal Beauty. Intentionally Crafted.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400&display=swap');

/* ─── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Colours */
  --color-bg:           #0f0e0d;
  --color-bg-elevated:  #1a1816;
  --color-surface:      #24211e;
  --color-text:         #f5f0e8;
  --color-text-muted:   #a89f94;
  --color-accent:       #c4a484;
  --color-accent-hover: #d4b896;
  --color-border:       rgba(196, 164, 132, 0.25);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Type Scale – fluid */
  --fs-xs:   clamp(0.68rem,  0.64rem + 0.2vw,  0.78rem);
  --fs-sm:   clamp(0.82rem,  0.76rem + 0.3vw,  0.94rem);
  --fs-base: clamp(0.94rem,  0.88rem + 0.3vw,  1.06rem);
  --fs-md:   clamp(1.06rem,  0.98rem + 0.4vw,  1.2rem);
  --fs-lg:   clamp(1.25rem,  1.1rem  + 0.75vw, 1.6rem);
  --fs-xl:   clamp(1.6rem,   1.3rem  + 1.5vw,  2.2rem);
  --fs-2xl:  clamp(2rem,     1.6rem  + 2vw,    3rem);
  --fs-3xl:  clamp(2.6rem,   2rem    + 3vw,    4.8rem);
  --fs-hero: clamp(3.2rem,   2.2rem  + 5vw,    7.5rem);

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  /* Layout */
  --max-width:      1340px;
  --max-width-text: 740px;
  --header-h:       80px;

  /* Motion */
  --ease-fast:   0.2s ease;
  --ease-base:   0.4s ease;
  --ease-slow:   0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease-fast);
}
a:hover { color: var(--color-accent); }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl);  }
h4 { font-size: var(--fs-lg);  }

p { max-width: 65ch; }
p + p { margin-top: var(--sp-sm); }

em { font-style: italic; }

.lead {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 58ch;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.pull-quote {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-text);
  border-left: 1px solid var(--color-accent);
  padding-left: var(--sp-lg);
  margin-block: var(--sp-xl);
  max-width: 52ch;
}

.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.container--narrow {
  width: 100%;
  max-width: var(--max-width-text);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding-block: clamp(4.5rem, 9vw, 9rem);
}

.section--elevated  { background-color: var(--color-bg-elevated); }
.section--surface   { background-color: var(--color-surface); }

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-header .label { margin-bottom: var(--sp-sm); }
.section-header h2     { margin-bottom: var(--sp-sm); }
.section-header .lead  { margin-top: var(--sp-sm); }

.divider {
  width: 56px;
  height: 1px;
  background-color: var(--color-accent);
  opacity: 0.6;
  margin-block: var(--sp-lg);
}
.divider--center { margin-inline: auto; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn,
.btn-outline {
  display: inline-block;
  padding: 0.88em 2.4em;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color var(--ease-base), color var(--ease-base), border-color var(--ease-base);
  white-space: nowrap;
}

.btn {
  background-color: var(--color-accent);
  color: var(--color-bg);
}
.btn:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-bg);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background-color var(--ease-base), backdrop-filter var(--ease-base), border-color var(--ease-base);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(15, 14, 13, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max-width);
  margin-inline: auto;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.36em;
  color: var(--color-text);
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--ease-fast);
  position: relative;
  z-index: 200;
}
.logo:hover { color: var(--color-accent); }

/* Desktop nav */
.site-nav .nav-list {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2.8rem);
  align-items: center;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width var(--ease-base);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-accent);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px 0;
  z-index: 200;
  position: relative;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--color-text);
  transition: transform var(--ease-base), opacity var(--ease-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: 0;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease-slow);
    z-index: 150;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav .nav-list {
    flex-direction: column;
    gap: 2.2rem;
    text-align: center;
  }

  .site-nav a {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    letter-spacing: 0.22em;
    color: var(--color-text);
  }

  .site-nav a::after { bottom: -6px; }
}

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: var(--sp-sm);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: none;
  margin-top: var(--sp-xs);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer-nav a:hover { color: var(--color-accent); }

.footer-legal {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 2;
}
.footer-legal p { max-width: none; }
.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(168,159,148, 0.3);
}
.footer-legal a:hover { color: var(--color-accent); }

@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-xl); }
}

/* ─── Age Gate ────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
  transition: opacity var(--ease-slow);
}

.age-gate.dismissed {
  opacity: 0;
  pointer-events: none;
}

.age-gate-inner {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.age-gate-logo {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--color-text);
}

img.age-gate-logo {
  width: 240px;
  max-width: 72%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 1.8rem 2.6rem;
  background-color: var(--color-text); /* logo has light bg — match it */
  letter-spacing: 0;
  font-size: 0;
}

.age-gate-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--color-accent);
  margin-top: 0.4rem;
  max-width: none;
}

.age-gate-line {
  width: 56px;
  height: 1px;
  background: var(--color-border);
  margin: var(--sp-lg) auto;
}

.age-gate-text {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--sp-xl);
  max-width: none;
}

.age-gate-actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background-color: rgba(8, 7, 6, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-base);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(85vw, 900px);
  max-height: 88vh;
  width: 100%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 8px 80px rgba(0,0,0,0.7);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: calc(-2.5rem - 0.5rem);
  right: 0;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--ease-fast);
  padding: 0.5rem 0;
}
.lightbox-close:hover { color: var(--color-accent); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-text-muted);
  padding: 1rem;
  transition: color var(--ease-fast);
  line-height: 1;
}
.lightbox-prev { left: calc(-3.5rem - 0.5rem); }
.lightbox-next { right: calc(-3.5rem - 0.5rem); }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--color-accent); }

.lightbox-caption {
  position: absolute;
  bottom: -2.2rem;
  left: 0; right: 0;
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

.lightbox-no-image {
  width: 400px;
  max-width: 80vw;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-surface) 50%, var(--color-bg-elevated) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-no-image p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  max-width: none;
}

@media (max-width: 600px) {
  .lightbox-prev { left: -2.5rem; }
  .lightbox-next { right: -2.5rem; }
}

/* ─── Image Placeholder ───────────────────────────────────── */
.img-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #1e1b18 0%, #2c2722 48%, #1a1714 100%);
  position: relative;
}

.img-placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.3;
  white-space: nowrap;
  pointer-events: none;
}

/* ─── Page Header ─────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(4rem, 9vw, 8rem));
  padding-bottom: clamp(4rem, 9vw, 8rem);
  text-align: center;
}
.page-hero .label  { margin-bottom: var(--sp-sm); }
.page-hero h1      { margin-bottom: var(--sp-md); }
.page-hero .lead   { margin-inline: auto; }

/* ─── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.40) 0%,
    rgba(10, 9, 8, 0.58) 45%,
    rgba(10, 9, 8, 0.88) 100%
  );
  z-index: 1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  padding-top: var(--header-h);
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-md);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--color-text);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
  line-height: 1.8;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(168,159,148,0.5), transparent);
}

/* ─── Model Cards ─────────────────────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.8rem);
}

.model-card {
  display: block;
  overflow: hidden;
  transition: opacity var(--ease-base);
}
.model-card:hover { opacity: 0.92; }

.model-card-img {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background-color: var(--color-surface);
}

.model-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--ease-slow);
}

.model-card-img .img-placeholder {
  width: 100%; height: 100%;
  transition: transform var(--ease-slow);
}

.model-card:hover .model-card-img img,
.model-card:hover .model-card-img .img-placeholder {
  transform: scale(1.05);
}

.model-card-info {
  padding: var(--sp-md) 0 0;
}

.model-card-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.3rem;
}

.model-card-type {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ─── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: clamp(0.75rem, 1.5vw, 1.4rem);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.4rem);
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background-color: var(--color-surface);
}

.gallery-item img,
.gallery-item .img-placeholder {
  display: block;
  width: 100%;
  transition: transform var(--ease-slow);
}

.gallery-item:hover img,
.gallery-item:hover .img-placeholder {
  transform: scale(1.04);
}

@media (max-width: 960px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }

/* Portrait grid (for index preview) */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.preview-grid .gallery-item {
  aspect-ratio: 3/4;
}

.preview-grid .gallery-item img,
.preview-grid .gallery-item .img-placeholder {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── Model Page Layout ───────────────────────────────────── */
.model-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: var(--header-h);
}

.model-hero-media {
  position: relative;
  background-color: var(--color-surface);
  overflow: hidden;
  min-height: 600px;
}

.model-hero-media img,
.model-hero-media .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.model-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(2.5rem, 6vw, 6rem);
  background-color: var(--color-bg-elevated);
}

.model-hero-label { margin-bottom: var(--sp-sm); }

.model-name {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 300;
  margin-bottom: var(--sp-sm);
}

.model-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-lg);
  color: var(--color-accent);
  margin-bottom: var(--sp-xl);
  line-height: 1.4;
}

.model-bio p {
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
}
.model-bio p + p { margin-top: var(--sp-sm); }

.model-specs {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--color-border);
}

.model-specs h4 {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: var(--sp-md);
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.specs-list li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  padding-left: var(--sp-sm);
  position: relative;
}

.specs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  opacity: 0.6;
}

.model-cta {
  margin-top: var(--sp-xl);
}

@media (max-width: 920px) {
  .model-hero { grid-template-columns: 1fr; }
  .model-hero-media { min-height: 70vw; }
}

/* ─── Full-bleed Image Break ──────────────────────────────── */
.full-bleed {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.full-bleed--wide   { aspect-ratio: 21/9; }
.full-bleed--medium { aspect-ratio: 16/7; }
.full-bleed--tall   { aspect-ratio: 16/9; }

.full-bleed img,
.full-bleed .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .full-bleed--wide,
  .full-bleed--medium { aspect-ratio: 16/9; }
}

/* ─── Process / Steps ─────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-xl);
  counter-reset: process;
}

.process-step { counter-increment: process; }

.process-step-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  color: var(--color-accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.process-step h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-xs);
}

.process-step p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ─── Values / Features list ──────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-xl) var(--sp-2xl);
}

.value-item h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-xs);
  color: var(--color-text);
}

.value-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ─── Contact Form ────────────────────────────────────────── */
.contact-form {
  max-width: 620px;
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.55rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.9rem 1.1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.5;
  outline: none;
  appearance: none;
  border-radius: 0;
  transition: border-color var(--ease-fast);
}

.form-control:focus { border-color: var(--color-accent); }

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.45;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M0.5 0.5L6 6L11.5 0.5' stroke='%23a89f94' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}

textarea.form-control {
  min-height: 170px;
  resize: vertical;
}

/* ─── Journal ─────────────────────────────────────────────── */
.journal-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-entry {
  padding-block: var(--sp-xl);
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.journal-date {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  padding-top: 0.2em;
}

.journal-entry h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-sm);
}

.journal-entry p {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.journal-entry a.read-more {
  display: inline-block;
  margin-top: var(--sp-md);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  transition: border-color var(--ease-fast);
}
.journal-entry a.read-more:hover {
  color: var(--color-accent-hover);
  border-color: var(--color-accent);
}

@media (max-width: 680px) {
  .journal-entry { grid-template-columns: 1fr; gap: var(--sp-sm); }
}

/* ─── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-group.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-group.visible > * {
  opacity: 1;
  transform: none;
}

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: var(--color-bg); }
::-webkit-scrollbar-thumb    { background: var(--color-surface); }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ─── Selection ───────────────────────────────────────────── */
::selection {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

/* ─── Focus ───────────────────────────────────────────────── */
:focus-visible {
  outline: 1px solid var(--color-accent);
  outline-offset: 3px;
}
