/* =========================================================
   POLAR LIFE HAUS — Luxury Architecture Website
   ========================================================= */

:root {
  --bg:            #0a0b0c;
  --bg-elev:       #101113;
  --bg-soft:       #151618;
  --ink:           #f2efe8;
  --ink-soft:      #d6d2c8;
  --ink-muted:     #a8a296;
  --ink-faint:     #6a6660;
  --line:          rgba(242, 239, 232, 0.16);
  --line-strong:   rgba(242, 239, 232, 0.32);
  --accent:        #b79163;
  --accent-soft:   #d4b58a;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans:  "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --ease:        cubic-bezier(0.65, 0, 0.15, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --container:   1480px;
  --gutter:      clamp(22px, 4vw, 64px);

  --h-nav:       84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 1024px) { body { cursor: auto; } }

img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; background: none; border: 0; outline: none; }
::selection { background: var(--accent); color: #0a0b0c; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.display em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 300;
}
h1, h2, h3, h4 { font-weight: 400; }
p { max-width: 62ch; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.eyebrow .line {
  width: 42px; height: 1px;
  background: var(--line-strong);
  display: inline-block;
}
.eyebrow--light { color: var(--ink-soft); }
.eyebrow--light .line { background: rgba(242,239,232, 0.35); }
.eyebrow--center { display: flex; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 18px;
  --pad-x: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color .6s var(--ease), background .6s var(--ease), border-color .6s var(--ease);
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .6s var(--ease); }
.btn:hover svg { transform: translateX(6px); }

.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
}
.btn--primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .7s var(--ease);
  z-index: -1;
  border-radius: 999px;
}
.btn--primary:hover { color: var(--bg); }
.btn--primary:hover::before { transform: translateY(0); }

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  border-radius: 999px;
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}

.btn--small { --pad-y: 12px; --pad-x: 22px; font-size: 10.5px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 90;
  padding: 26px 0;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 11, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 0;
  border-bottom-color: var(--line);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.header__logo {
  display: flex; align-items: center;
}
.header__logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.nav { justify-self: center; }
.nav ul { display: flex; list-style: none; gap: 36px; }
.nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color .4s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .6s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__meta {
  display: flex; align-items: center; gap: 22px;
}
.header__locale {
  font-size: 12px; letter-spacing: 0.28em;
  color: var(--ink-muted); text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px;
  height: 1px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 85;
  padding: 120px var(--gutter) 40px;
  transform: translateY(-101%);
  transition: transform .8s var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__nav ul { list-style: none; }
.mobile-menu__nav li { overflow: hidden; border-bottom: 1px solid var(--line); }
.mobile-menu__nav a {
  display: block;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 40px);
  color: var(--ink);
}
.mobile-menu__foot p {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  padding: 6px 0;
}

/* ---------- Cursor ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 40px; height: 40px;
  border: 1px solid rgba(242,239,232, 0.6);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .4s var(--ease);
}
.cursor.is-hover { width: 70px; height: 70px; border-color: var(--accent); }
.cursor-dot { width: 4px; height: 4px; background: var(--ink); }
@media (max-width: 1024px) { .cursor, .cursor-dot { display: none; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; width: min(340px, 70vw); }
.loader__mark {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.loader__bar {
  height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.loader__bar span {
  position: absolute; inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  animation: loader 1.6s var(--ease) forwards;
}
@keyframes loader { to { transform: scaleX(1); } }
.loader__label {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* =========================================================
   REVEAL ANIMATIONS (base states)
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-reveal-line] { display: block; overflow: hidden; }
[data-reveal-line] > * { display: inline-block; }

.reveal-word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}
.reveal-word-wrap { display: inline-block; overflow: hidden; padding-bottom: 0.05em; }
[data-reveal-words].is-visible .reveal-word { transform: translateY(0); opacity: 1; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--h-nav) + 40px) 0 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  color: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__image {
  position: absolute; inset: -10% -4% -4% -4%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(183, 145, 99, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(30, 50, 70, 0.45), transparent 60%),
    linear-gradient(135deg, #0a0b0c 0%, #1a1c1f 40%, #0c0d0f 100%);
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__image::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/aava8.jpg") center/cover no-repeat;
  opacity: 1;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,12, 0.55) 0%, rgba(10,11,12, 0.2) 40%, rgba(10,11,12, 0.85) 100%),
    linear-gradient(90deg, rgba(10,11,12, 0.55) 0%, transparent 50%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px;
}
.hero__title {
  font-size: clamp(44px, 7.6vw, 128px);
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 28px 0 40px;
  max-width: 18ch;
}
.hero__title span { display: block; }
.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 48px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__foot {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: end;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero__foot-item { display: flex; flex-direction: column; gap: 4px; }
.hero__foot-item .num {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}
.hero__foot-item .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero__scroll {
  justify-self: end;
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__scroll-line {
  width: 64px; height: 1px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.hero__scroll-line i {
  position: absolute; inset: 0;
  background: var(--accent);
  animation: scrollLine 2.4s var(--ease) infinite;
  transform-origin: left;
}
@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.philosophy {
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0;
  overflow: hidden;
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(40px, 6vw, 80px);
}
.philosophy__title {
  grid-column: 2 / -1;
  font-size: clamp(36px, 4.5vw, 72px);
  max-width: 22ch;
  margin-bottom: 48px;
}
.philosophy__copy {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
}
.philosophy__copy p { color: var(--ink-soft); font-size: 16px; }
.philosophy__pillars {
  grid-column: 1 / -1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.philosophy__pillars li {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 36px);
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
}
.philosophy__pillars li::before {
  content: "";
  position: absolute; top: 50%; left: -16px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}
.philosophy__glow {
  position: absolute;
  width: 80vw; height: 80vw;
  right: -20vw; bottom: -40vw;
  background: radial-gradient(circle, rgba(183,145,99, 0.08), transparent 60%);
  pointer-events: none;
}

/* =========================================================
   PROJECTS (Horizontal scroll)
   ========================================================= */
.projects {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0 clamp(60px, 8vw, 120px);
  background: var(--bg-elev);
  overflow: hidden;
}
.projects__head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.projects__head h2 {
  font-size: clamp(34px, 4.5vw, 72px);
  max-width: 16ch;
  margin-top: 24px;
}
.projects__intro {
  color: var(--ink-soft);
  font-size: 15px;
}

.projects__track-wrap {
  overflow: hidden;
  padding-left: var(--gutter);
  cursor: grab;
}
.projects__track-wrap:active { cursor: grabbing; }
.projects__track {
  display: flex;
  gap: 40px;
  will-change: transform;
}
.project {
  flex: 0 0 auto;
  width: clamp(320px, 32vw, 520px);
  display: flex; flex-direction: column;
}
.project__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}
.project__img {
  position: absolute; inset: -5%;
  background-size: cover; background-position: center;
  will-change: transform;
  transition: transform 1.4s var(--ease);
}
.project:hover .project__img { transform: scale(1.06); }
.project__img--1 {
  background-image:
    url("../images/auroralodge4.jpg"),
    linear-gradient(135deg, #1a1d20 0%, #262a2e 50%, #0f1113 100%);
  background-color: #1a1d20;
}
.project__img--2 {
  background-image:
    url("../images/hirsitalo_saksa5-5.jpg"),
    linear-gradient(160deg, #23272c 0%, #3c3128 60%, #151618 100%);
  background-color: #23272c;
}
.project__img--3 {
  background-image:
    url("../images/Jankaresort-03.jpg"),
    linear-gradient(120deg, #1a1a1d 0%, #2a2420 55%, #0f0f11 100%);
  background-color: #1a1a1d;
}
.project__img--4 {
  background-image:
    url("../images/H-modernesholzhaus1.jpg"),
    linear-gradient(150deg, #1c1f22 0%, #302924 50%, #11121a 100%);
  background-color: #1c1f22;
}
.project__img--5 {
  background-image:
    url("../images/Jankaresort-07.jpg"),
    linear-gradient(140deg, #17191c 0%, #2a2f34 60%, #0d0e10 100%);
  background-color: #17191c;
}

.project__info {
  padding: 26px 0 0;
  display: flex; flex-direction: column; gap: 4px;
}
.project__loc {
  font-size: 12px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-muted);
}
.project__info h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  color: var(--ink);
  margin-top: 4px;
}
.project__info p {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

.project--cta {
  width: clamp(320px, 26vw, 420px);
  display: flex; align-items: center;
  padding: 40px;
  border: 1px solid var(--line-strong);
}
.project__cta { display: flex; flex-direction: column; gap: 24px; }
.project__cta h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.1;
}

.projects__progress {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.progress-track {
  height: 1px;
  background: var(--line);
  position: relative;
}
.progress-bar {
  position: absolute; inset: 0 auto 0 0;
  background: var(--accent);
  width: 20%;
  transition: width .2s linear;
}
.projects__hint {
  font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-muted);
}

/* =========================================================
   SPLIT / ARCHITECTURE
   ========================================================= */
.split {
  padding: clamp(100px, 12vw, 180px) 0;
  position: relative;
}
.split__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elev);
}
.split__img {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.split__img--arch {
  background-image:
    url("../images/hybriditalo_CF029352.jpg"),
    linear-gradient(135deg, #1a1d22 0%, #2b2520 50%, #0e0f11 100%);
  background-color: #1a1d22;
}
.split__frame {
  position: absolute;
  left: 24px; bottom: 24px;
  right: 24px;
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 22px;
  border: 1px solid rgba(242,239,232, 0.25);
  background: rgba(10,11,12, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.split__frame strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 400;
}
.split__copy h2 {
  font-size: clamp(34px, 4.5vw, 68px);
  max-width: 16ch;
  margin: 24px 0 32px;
}
.split__copy p {
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 52ch;
}
.split__list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 48px;
}
.split__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .5s var(--ease), padding .5s var(--ease);
}
.split__list li span {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent-soft);
}
.split__list li:hover { padding-left: 12px; color: var(--ink); }

/* =========================================================
   MATERIAL / TECHNOLOGIE
   ========================================================= */
.material {
  position: relative;
  padding: clamp(120px, 16vw, 220px) 0;
  overflow: hidden;
  color: var(--ink);
  background: #070809;
}
.material__bg {
  position: absolute; inset: -10%;
  background:
    url("../images/hybriditalo_CF029237.jpg") center/cover no-repeat,
    radial-gradient(ellipse at 70% 20%, rgba(183,145,99, 0.18), transparent 50%),
    linear-gradient(135deg, #090a0b 0%, #161618 50%, #060708 100%);
  background-color: #090a0b;
  will-change: transform;
}
.material__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,9, 0.65) 0%, rgba(7,8,9, 0.85) 100%);
}
.material__content { position: relative; z-index: 2; }
.material__title {
  font-size: clamp(36px, 5vw, 84px);
  max-width: 20ch;
  margin: 28px 0 80px;
}
.material__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.mat-card {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .6s var(--ease);
}
.mat-card:last-child { border-right: 0; }
.mat-card:hover { background: rgba(242,239,232, 0.015); }
.mat-card__num {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent-soft);
  letter-spacing: 0.05em;
}
.mat-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  margin: 18px 0 14px;
}
.mat-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* =========================================================
   SUSTAINABILITY
   ========================================================= */
.sustain {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg);
}
.sustain__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.sustain__text h2 {
  font-size: clamp(36px, 5vw, 80px);
  max-width: 12ch;
  margin: 24px 0 32px;
}
.sustain__text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 48ch;
}
.sustain__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 200px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "num  unit"
    "desc desc";
  column-gap: 10px;
  row-gap: 24px;
}
.stat__num {
  grid-area: num;
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1;
  color: var(--ink);
}
.stat__unit {
  grid-area: unit;
  align-self: end;
  padding-bottom: 0.15em;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--accent-soft);
  text-transform: uppercase;
}
.stat p {
  grid-area: desc;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   COLLECTIONS
   ========================================================= */
.collections {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-elev);
}
.collections__head {
  max-width: 900px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.collections__head h2 {
  font-size: clamp(36px, 5vw, 80px);
  margin: 24px 0 24px;
  max-width: 16ch;
}
.collections__head p {
  color: var(--ink-soft);
  font-size: 16px;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.coll {
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .6s var(--ease);
}
.coll:hover { transform: translateY(-6px); }
.coll__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-soft);
}
.coll__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease);
}
.coll:hover .coll__img { transform: scale(1.05); }
.coll__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,11,12, 0.6) 100%);
  opacity: 0; transition: opacity .6s var(--ease);
}
.coll:hover .coll__media::after { opacity: 1; }

.coll__img--1 { background-image: url("../images/H-modernesholzhaus2.jpg"), linear-gradient(145deg, #1a1d20, #252014); background-color: #1a1d20; }
.coll__img--2 { background-image: url("../images/aava3-1.jpg"), linear-gradient(145deg, #1f1b17, #31281d); background-color: #1f1b17; }
.coll__img--3 { background-image: url("../images/H-modernesholzhaus3.jpg"), linear-gradient(145deg, #1a1e21, #272220); background-color: #1a1e21; }
.coll__img--4 { background-image: url("../images/H-modernesholzhaus5.jpg"), linear-gradient(145deg, #14161a, #212225); background-color: #14161a; }
.coll__img--5 { background-image: url("../images/Jankaresort-09.jpg"), linear-gradient(145deg, #1b1816, #2e241c); background-color: #1b1816; }
.coll__img--6 { background-image: url("../images/hybriditalo_CF029288.jpg"), linear-gradient(145deg, #141517, #292320); background-color: #141517; }

.coll__meta {
  padding: 24px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.coll__meta span {
  font-family: var(--serif);
  font-size: 14px; color: var(--accent-soft);
  letter-spacing: 0.06em;
}
.coll__meta h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 36px);
  color: var(--ink);
  line-height: 1;
}
.coll__meta p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* =========================================================
   ORIGIN
   ========================================================= */
.origin {
  padding: clamp(100px, 14vw, 200px) 0;
  position: relative;
}
.origin__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.origin__text h2 {
  font-size: clamp(36px, 5vw, 80px);
  max-width: 14ch;
  margin: 24px 0 32px;
}
.origin__text p { color: var(--ink-soft); margin-bottom: 48px; max-width: 48ch; }
.origin__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.origin__facts strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.origin__facts span {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-muted);
}
.origin__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elev);
}
.origin__img {
  position: absolute; inset: -6%;
  background:
    url("../images/hirsitalo_saksa6-5.jpg") center/cover no-repeat,
    linear-gradient(135deg, #1a1d22, #241e17 50%, #0e0f11);
  background-color: #1a1d22;
  will-change: transform;
}
.origin__badge {
  position: absolute;
  left: 24px; top: 24px;
  padding: 16px 22px;
  border: 1px solid rgba(242,239,232, 0.25);
  background: rgba(10,11,12, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
  line-height: 1;
}
.origin__badge span {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 6px;
}
.origin__badge strong {
  font-family: var(--serif);
  font-size: 22px; letter-spacing: 0.05em;
  font-weight: 400; color: var(--ink);
}

/* =========================================================
   VOICES / TESTIMONIALS
   ========================================================= */
.voices {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-elev);
  text-align: center;
}
.voices__stack {
  margin-top: 80px;
  display: flex; flex-direction: column; gap: clamp(80px, 10vw, 140px);
  max-width: 1000px; margin-inline: auto;
}
.voice blockquote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 52px);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.005em;
}
.voice blockquote span {
  color: var(--accent-soft);
  font-style: italic;
  opacity: 0.6;
}
.voice figcaption {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-muted);
}
.voice figcaption strong {
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
}

/* =========================================================
   CATALOG
   ========================================================= */
.catalog {
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(183,145,99, 0.08), transparent 50%),
    var(--bg);
}
.catalog__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.catalog__visual {
  display: flex; justify-content: center;
  perspective: 1800px;
}
.catalog__book {
  width: clamp(260px, 28vw, 380px);
  aspect-ratio: 3 / 4;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(4deg);
  transition: transform 1.6s var(--ease);
}
.catalog__book:hover { transform: rotateY(-8deg) rotateX(2deg); }
.catalog__cover {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #1c1d1f 0%, #2a2622 60%, #14151a 100%);
  border: 1px solid rgba(242,239,232, 0.08);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  box-shadow:
    -30px 20px 80px rgba(0,0,0, 0.6),
    inset 1px 0 0 rgba(255,255,255, 0.04),
    inset -1px 0 0 rgba(0,0,0, 0.4);
}
.catalog__cover::before {
  content: "";
  position: absolute;
  top: 28px; bottom: 28px;
  left: 12px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(183,145,99, 0.4), transparent);
}
.catalog__tag {
  font-family: var(--serif);
  font-size: 14px; color: var(--accent-soft);
  letter-spacing: 0.16em;
}
.catalog__mark {
  font-family: var(--serif);
  font-size: 28px;
  align-self: center; margin-top: 20px;
  color: var(--ink);
  letter-spacing: 0.14em;
}
.catalog__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  color: var(--ink);
  text-align: center;
}
.catalog__year {
  font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ink-muted);
  text-align: center;
}
.catalog__shadow {
  position: absolute;
  left: 10%; right: 10%; bottom: -40px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,0,0, 0.5), transparent 70%);
  filter: blur(8px);
}

.catalog__copy h2 {
  font-size: clamp(34px, 4.5vw, 68px);
  max-width: 16ch;
  margin: 24px 0 28px;
}
.catalog__copy p {
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 46ch;
}

/* =========================================================
   FORMS
   ========================================================= */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form label {
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color .5s var(--ease);
}
.form label:focus-within { border-bottom-color: var(--accent); }
.form label span {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-muted);
}
.form input, .form textarea {
  padding: 10px 0 14px;
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-faint); }
.form__full { grid-column: 1 / -1; }
.form__submit { grid-column: 1 / -1; justify-self: start; margin-top: 14px; }
.form small {
  grid-column: 1 / -1;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: clamp(100px, 14vw, 200px) 0;
  background: #070809;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -30%; left: -20%;
  width: 90vw; height: 90vw;
  background: radial-gradient(circle, rgba(183,145,99, 0.08), transparent 55%);
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
  position: relative; z-index: 2;
}
.contact__head { grid-column: 1 / -1; max-width: 800px; }
.contact__title {
  font-size: clamp(38px, 5.6vw, 96px);
  max-width: 14ch;
  margin: 24px 0 24px;
}
.contact__head p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 20px;
}
.contact__meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  grid-column: 1 / -1;
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.contact__meta strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.contact__meta p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  padding: 80px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
}
.footer__mark {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.04em;
}
.footer__brand p {
  margin-top: 20px;
  font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft);
  line-height: 1.8;
}
.footer__brand em { font-style: italic; color: var(--accent-soft); }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__nav div { display: flex; flex-direction: column; gap: 12px; }
.footer__nav strong {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  font-weight: 500;
  margin-bottom: 8px;
}
.footer__nav a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .4s var(--ease);
}
.footer__nav a:hover { color: var(--ink); }

.footer__bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.footer__bottom small { display: inline-block; }
.footer__bottom a { color: var(--ink-soft); transition: color .4s var(--ease); }
.footer__bottom a:hover { color: var(--ink); }
.footer__credit {
  width: 100%;
  text-align: center;
  padding-top: 18px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer__credit a { color: var(--ink-soft); text-decoration: none; transition: color .4s var(--ease); }
.footer__credit a:hover { color: var(--accent-soft); }

.footer__hero {
  font-family: var(--serif);
  font-size: clamp(60px, 16vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-align: center;
  padding: 40px var(--gutter) 60px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242,239,232, 0.12);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header__meta { display: none; }
  .menu-toggle { display: block; }
  .header__inner { grid-template-columns: auto 1fr; }
  .menu-toggle { justify-self: end; }
}

@media (max-width: 960px) {
  .hero__title { font-size: clamp(42px, 11vw, 72px); }
  .hero__foot { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__scroll { grid-column: 1 / -1; justify-self: start; }

  .philosophy__grid { grid-template-columns: 1fr; }
  .philosophy__title, .philosophy__copy { grid-column: 1 / -1; }
  .philosophy__copy { grid-template-columns: 1fr; gap: 20px; }
  .philosophy__pillars { grid-template-columns: 1fr 1fr; }

  .projects__head { grid-template-columns: 1fr; gap: 24px; }

  .split__inner { grid-template-columns: 1fr; }

  .material__grid { grid-template-columns: 1fr 1fr; }
  .mat-card { padding: 36px 20px 36px 0; }
  .mat-card:nth-child(2) { border-right: 0; }

  .sustain__inner { grid-template-columns: 1fr; }

  .collections__grid { grid-template-columns: 1fr 1fr; }

  .origin__inner { grid-template-columns: 1fr; }
  .origin__media { aspect-ratio: 4/3; order: -1; }

  .catalog__inner { grid-template-columns: 1fr; gap: 60px; }
  .catalog__visual { order: -1; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__meta { grid-template-columns: 1fr; gap: 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
}

@media (max-width: 640px) {
  .eyebrow { font-size: 11px; letter-spacing: 0.2em; }
  .btn { font-size: 12px; padding: 16px 22px; }
  .display em { display: inline; }

  .header { padding: 18px 0; }
  .header.is-scrolled { padding: 12px 0; }
  .header__logo-img { height: 44px; }

  .hero { padding-top: calc(var(--h-nav) + 10px); }
  .hero__title { font-size: clamp(38px, 11vw, 56px); margin: 22px 0 28px; }
  .hero__sub { font-size: 15px; margin-bottom: 32px; }
  .hero__foot { grid-template-columns: 1fr 1fr; padding-top: 28px; gap: 20px; }
  .hero__foot-item .num { font-size: 28px; }

  .philosophy__pillars { grid-template-columns: 1fr; }

  .project { width: 80vw; }
  .project--cta { width: 80vw; padding: 32px; }

  .material__grid { grid-template-columns: 1fr; border-top: 0; }
  .mat-card { border-right: 0; border-top: 1px solid var(--line); padding: 30px 0; }

  .sustain__stats { grid-template-columns: 1fr; border-left: 0; }
  .stat { border-right: 0; padding: 30px 0; min-height: auto; }

  .collections__grid { grid-template-columns: 1fr; }

  .origin__facts { grid-template-columns: 1fr; gap: 20px; }

  .form { grid-template-columns: 1fr; }

  .contact__meta { margin-top: 48px; }

  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__hero { font-size: 20vw; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .reveal-word { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   SUBPAGES
   ========================================================= */

/* ---------- Page Hero (not fullscreen) ---------- */
.page-hero {
  position: relative;
  min-height: 78vh;
  padding: calc(var(--h-nav) + 80px) 0 64px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  color: var(--ink);
}
.page-hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero__image {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,11,12, 0.55) 0%, rgba(10,11,12, 0.2) 30%, rgba(10,11,12, 0.9) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding-bottom: 40px;
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 116px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 24px 0 28px;
  max-width: 18ch;
}
.page-hero__title em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.page-hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-soft);
  max-width: 54ch;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--ink-soft); transition: color .4s var(--ease); }
.breadcrumb a:hover { color: var(--accent-soft); }
.breadcrumb .sep {
  width: 22px; height: 1px;
  background: var(--line-strong);
}

/* ---------- Active nav state ---------- */
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Intro block ---------- */
.intro {
  padding: clamp(80px, 10vw, 140px) 0;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro__meta {
  display: flex; flex-direction: column; gap: 28px;
}
.intro__meta-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.intro__meta-item:last-child { border-bottom: 1px solid var(--line); }
.intro__meta-item span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.intro__meta-item strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.intro__copy h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: 32px;
  max-width: 20ch;
  letter-spacing: -0.015em;
}
.intro__copy h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.intro__copy p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 60ch;
  font-size: 16px;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(60px, 8vw, 120px) 0;
}
.gallery__grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}
.gallery__grid--3 {
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-auto-rows: minmax(260px, auto);
}
.gallery__grid--3 .gallery__item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery__grid--3 .gallery__item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.gallery__grid--3 .gallery__item:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; }
.gallery__grid--3 .gallery__item:nth-child(4) { grid-column: 2 / 4; grid-row: 2 / 3; }

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
  min-height: 340px;
}
.gallery__item > div {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.gallery__item:hover > div { transform: scale(1.05); }

/* ---------- Big image (fullbleed) ---------- */
.bigshot {
  height: 84vh;
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
}
.bigshot__img {
  position: absolute; inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.bigshot__caption {
  position: absolute;
  left: var(--gutter); bottom: 32px;
  z-index: 2;
  padding: 14px 20px;
  background: rgba(10,11,12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(242,239,232, 0.18);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Specs ---------- */
.specs {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-elev);
}
.specs__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.specs__head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  max-width: 18ch;
  letter-spacing: -0.015em;
}
.specs__head h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.specs__head p {
  color: var(--ink-soft);
  max-width: 52ch;
  align-self: end;
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
}
.spec {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec:nth-child(4n) { border-right: 0; }
.spec__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.spec__value {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.1;
  color: var(--ink);
}
.spec__value small {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  display: block;
  margin-top: 8px;
}

/* ---------- Narrative / story ---------- */
.narrative {
  padding: clamp(100px, 12vw, 180px) 0;
}
.narrative__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}
.narrative__text { grid-column: 2 / 3; }
.narrative__text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  max-width: 22ch;
}
.narrative__text h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.narrative__text p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.75;
  max-width: 58ch;
}
.narrative__text blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3;
  color: var(--ink);
  font-style: italic;
  padding: 40px 0;
  margin: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.narrative__text blockquote cite {
  display: block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Feature list ---------- */
.feature-list {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.feature-list__head {
  margin-bottom: 60px;
}
.feature-list__head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.08;
  max-width: 18ch;
  margin-top: 24px;
  letter-spacing: -0.015em;
}
.feature-list__head h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.feature-list__items {
  border-top: 1px solid var(--line);
}
.feature-list__items > li {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .5s var(--ease);
  list-style: none;
  align-items: start;
}
.feature-list__items > li:hover { padding-left: 16px; }
.feature-list__items > li .num {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent-soft);
  letter-spacing: 0.05em;
}
.feature-list__items > li h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.feature-list__items > li p {
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.7;
}

/* ---------- Related (next projects / collections) ---------- */
.related {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-elev);
}
.related__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.related__head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  max-width: 18ch;
  margin-top: 24px;
  letter-spacing: -0.015em;
}
.related__head h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.related__card {
  display: block;
  position: relative;
}
.related__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
}
.related__media > div {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease);
}
.related__card:hover .related__media > div { transform: scale(1.04); }
.related__meta {
  padding: 24px 0 0;
}
.related__meta span {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.related__meta h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  margin-top: 8px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- Archive grid (projekte / kollektionen overview) ---------- */
.archive {
  padding: clamp(60px, 8vw, 120px) 0 clamp(100px, 12vw, 180px);
}
.archive__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.archive__head h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin-top: 24px;
}
.archive__head h1 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.archive__head p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 52ch;
  align-self: end;
}
.archive__filters {
  display: flex; flex-wrap: wrap; gap: 12px 8px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}
.archive__filters button {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.archive__filters button:hover, .archive__filters button.is-active {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}

.archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 60px) clamp(20px, 3vw, 48px);
}
.archive__card {
  display: block;
  position: relative;
  transition: transform .6s var(--ease);
}
.archive__card:hover { transform: translateY(-4px); }
.archive__card:nth-child(3n+1) { grid-column: span 2; }
.archive__card--wide { grid-column: span 2; }
.archive__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elev);
}
.archive__card--wide .archive__media { aspect-ratio: 16 / 9; }
.archive__media > div {
  position: absolute; inset: -4%;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease);
}
.archive__card:hover .archive__media > div { transform: scale(1.06); }
.archive__info {
  padding: 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.archive__info h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.archive__info h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.archive__info .loc {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 6px;
}
.archive__info .meta {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: right;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ---------- CTA block ---------- */
.cta-block {
  padding: clamp(100px, 12vw, 180px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 120vw; height: 120vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(183,145,99, 0.06), transparent 50%);
  pointer-events: none;
}
.cta-block__inner { position: relative; z-index: 2; }
.cta-block h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.02;
  margin: 24px auto 32px;
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.cta-block h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.cta-block p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 48px;
}
.cta-block .btn-group {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ---------- Two-column text ---------- */
.twocol {
  padding: clamp(80px, 10vw, 140px) 0;
}
.twocol__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.twocol__inner h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.twocol__inner h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.twocol__body p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 56ch;
}

/* ---------- Process (for architecture page) ---------- */
.process {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--bg-elev);
}
.process__head { margin-bottom: 80px; }
.process__head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.08;
  margin-top: 24px;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.process__head h2 em { font-style: italic; color: var(--accent-soft); font-weight: 300; }
.process__steps {
  display: grid;
  gap: 0;
}
.process__step {
  display: grid;
  grid-template-columns: 80px 240px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--line-strong);
  align-items: start;
}
.process__step:last-child { border-bottom: 1px solid var(--line-strong); }
.process__step .phase {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent-soft);
  letter-spacing: 0.05em;
}
.process__step h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.process__step p {
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.7;
}

/* ---------- Single big quote ---------- */
.bigquote {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
}
.bigquote blockquote {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 68px);
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
}
.bigquote blockquote em { font-style: italic; color: var(--accent-soft); }
.bigquote cite {
  display: block;
  margin-top: 40px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Responsive overrides for subpages ---------- */
@media (max-width: 960px) {
  .intro__grid { grid-template-columns: 1fr; }
  .gallery__grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__grid--3 .gallery__item:nth-child(1),
  .gallery__grid--3 .gallery__item:nth-child(2),
  .gallery__grid--3 .gallery__item:nth-child(3),
  .gallery__grid--3 .gallery__item:nth-child(4) {
    grid-column: auto; grid-row: auto;
  }
  .specs__head { grid-template-columns: 1fr; gap: 24px; }
  .specs__grid { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(2n) { border-right: 0; }
  .spec:nth-child(4n) { border-right: 1px solid var(--line); }
  .narrative__inner { grid-template-columns: 1fr; }
  .narrative__text { grid-column: 1 / -1; }
  .feature-list__items > li { grid-template-columns: 40px 1fr; gap: 16px; }
  .feature-list__items > li p { grid-column: 2 / -1; }
  .related__grid { grid-template-columns: 1fr; }
  .archive__head { grid-template-columns: 1fr; gap: 24px; }
  .archive__grid { grid-template-columns: 1fr; }
  .archive__card:nth-child(3n+1), .archive__card--wide { grid-column: span 1; }
  .twocol__inner { grid-template-columns: 1fr; }
  .process__step { grid-template-columns: 40px 1fr; gap: 16px; }
  .process__step p { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  .page-hero { min-height: 70vh; padding-top: calc(var(--h-nav) + 40px); }
  .specs__grid { grid-template-columns: 1fr 1fr; }
  .spec { padding: 24px 16px 24px 0; }
}

