@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0d0a08;
  --bg-2: #15110d;
  --surface: #1c1712;
  --line: rgba(239, 231, 218, .12);
  --line-strong: rgba(239, 231, 218, .24);
  --text: #efe7da;
  --text-soft: rgba(239, 231, 218, .82);
  --muted: #a39887;
  --accent: #c19a5b;
  --accent-hi: #d9b77d;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* A touch of grain, so the flat dark surfaces read like paper rather than screen */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

::selection { background: var(--accent); color: var(--bg); }

:focus-visible { outline: 2px solid var(--accent-hi); outline-offset: 3px; }
.btn:focus-visible, .link-arrow:focus-visible { outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: #f6efe4;
  margin: 0 0 .5em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h2 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
h3 { font-size: 1.5rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font: 500 .82rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-primary:hover:not(:disabled) { background: var(--accent-hi); border-color: var(--accent-hi); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--text); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--text); }
.btn-sm { padding: 12px 20px; font-size: .74rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 500 .8rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .2s ease, color .2s ease;
}
.link-arrow::after { content: '\2192'; font-size: 1rem; transition: transform .2s ease; }
.link-arrow:hover { color: var(--accent-hi); border-color: var(--accent-hi); }
.link-arrow:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 10, 8, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, border-color .3s ease;
}
.site-header.is-overlay {
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.is-overlay.is-scrolled {
  background: rgba(13, 10, 8, .92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 50px; width: auto; filter: invert(1); }

.nav { flex: 1; display: flex; justify-content: center; }
.nav ul { display: flex; align-items: center; gap: 36px; }
.nav a {
  font: 500 .76rem/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .2s ease;
}
.nav a:hover { color: var(--accent-hi); }
.nav-mobile-only { display: none; }

.header-actions { display: flex; align-items: center; gap: 6px; }

.lang-toggle,
.icon-link,
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  color: var(--text-soft);
  cursor: pointer;
  transition: color .2s ease;
}
.lang-toggle { font: 600 .74rem/1 var(--sans); letter-spacing: .12em; }
.lang-toggle:hover, .icon-link:hover, .cart-toggle:hover { color: var(--accent-hi); }
.icon-link svg, .cart-toggle svg { width: 19px; height: 19px; }
.header-cta { margin-left: 12px; }

.cart-count {
  position: absolute; top: 3px; right: 1px;
  min-width: 17px; height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font: 600 .64rem/17px var(--sans);
  text-align: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
  margin-left: 4px;
}
.menu-toggle span { width: 22px; height: 1.5px; background: var(--text); }

.checkout-banner {
  margin: 0;
  padding: 14px 24px;
  text-align: center;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.site-header.is-overlay ~ .checkout-banner { position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99; }
.checkout-banner.success { background: #1d2a1d; color: #b5dcb5; }
.checkout-banner.cancel { background: #2c1b17; color: #e9b0a4; }

@media (max-width: 960px) {
  .nav ul { gap: 24px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .header-cta, .icon-link { display: none; }
  .header-inner { justify-content: space-between; }
  .nav {
    display: block;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 24px; }
  .nav li { border-bottom: 1px solid var(--line); }
  .nav a { display: block; padding: 18px 0; font-size: .85rem; }
  .nav-mobile-only { display: block; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13,10,8,.95) 0%, rgba(13,10,8,.78) 34%, rgba(13,10,8,.2) 70%, rgba(13,10,8,.4) 100%),
    linear-gradient(180deg, rgba(13,10,8,.6) 0%, rgba(13,10,8,0) 22%, rgba(13,10,8,0) 58%, var(--bg) 100%),
    url('../assets/masken/hero.jpg') 72% 28% / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 45%, rgba(13,10,8,0) 40%, rgba(13,10,8,.55) 100%);
}

.hero-content { width: 100%; padding-top: calc(var(--header-h) + 72px); }
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(3.1rem, 7.4vw, 6.4rem);
  line-height: .98;
  max-width: 13ch;
  overflow-wrap: normal;
  hyphens: manual;
  margin-bottom: 28px;
}
.hero-text {
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.3vw, 1.14rem);
  color: var(--text-soft);
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(56px, 9vh, 110px);
  border-top: 1px solid var(--line);
}
.hero-fact { padding: 24px 24px 32px 0; }
.hero-fact + .hero-fact { padding-left: 28px; border-left: 1px solid var(--line); }
.hero-fact dt {
  font: 500 .68rem/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.hero-fact dd { margin: 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.2; color: var(--text); }

@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2.5rem, 10.5vw, 3.6rem); }
  .hero .eyebrow { letter-spacing: .14em; font-size: .66rem; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 48px; }
  .hero-fact, .hero-fact + .hero-fact { padding: 14px 0; border-left: 0; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
  .hero-fact dt { margin: 0; }
  .hero-fact dd { font-size: 1.1rem; text-align: right; }
  .hero-fact + .hero-fact { border-top: 1px solid var(--line); }
  .hero-media {
    background:
      linear-gradient(180deg, rgba(13,10,8,.55) 0%, rgba(13,10,8,.55) 40%, rgba(13,10,8,.92) 75%, var(--bg) 100%),
      url('../assets/masken/hero.jpg') 60% 20% / cover no-repeat;
  }
}

/* Sections */
.section { padding: clamp(88px, 11vw, 150px) 0; }
.section-alt { background: var(--bg-2); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 500 .72rem/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.eyebrow-num { color: var(--accent); display: inline-flex; align-items: center; gap: 14px; }
.eyebrow-num::after { content: ''; width: 34px; height: 1px; background: var(--line-strong); }

.section-header { margin-bottom: clamp(44px, 6vw, 76px); }
.section-header-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: end;
}
.section-header-row h2 { margin: 0; max-width: 14ch; }
.section-lead { margin: 0; color: var(--muted); font-size: 1.02rem; max-width: 34rem; }

@media (max-width: 860px) {
  .section-header-row { grid-template-columns: 1fr; gap: 20px; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 12.5vw, 170px);
  grid-auto-flow: dense;
  gap: 12px;
}
.gallery-item {
  position: relative;
  margin: 0;
  grid-row: span 2;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
}
.gallery-item--feature { grid-column: span 2; grid-row: span 4; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), opacity .5s ease;
}
.gallery-item img.is-loaded { opacity: 1; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.04); }

/* Caption slides up on hover, so the work can be read as well as looked at */
.gallery-item::before,
.gallery-item::after {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item::before {
  content: '';
  height: 55%;
  background: linear-gradient(180deg, rgba(8,6,5,0) 0%, rgba(8,6,5,.78) 100%);
}
.gallery-item::after {
  content: attr(data-caption);
  padding: 0 16px 14px;
  font: 500 .76rem/1.4 var(--sans);
  color: var(--text);
  transform: translateY(6px);
}
.gallery-item:hover::before,
.gallery-item:hover::after,
.gallery-item:focus-visible::before,
.gallery-item:focus-visible::after { opacity: 1; transform: none; }
@media (hover: none) {
  .gallery-item::before, .gallery-item::after { display: none; }
}
.gallery-grid:not(.is-expanded) .is-extra { display: none; }

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.gallery-more { margin: 0; color: var(--muted); font-size: .92rem; }
.gallery-more a { color: var(--text); border-bottom: 1px solid var(--line-strong); }
.gallery-more a:hover { color: var(--accent-hi); border-color: var(--accent-hi); }
#gallery-more .when-expanded { display: none; }
#gallery-more[aria-expanded="true"] .when-collapsed { display: none; }
#gallery-more[aria-expanded="true"] .when-expanded { display: inline; }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(110px, 26vw, 180px); gap: 8px; }
  .gallery-item--feature { grid-row: span 3; }
}

/* Lightbox */
.lightbox-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 6, 5, .95);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox-backdrop.is-open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop img { max-width: min(90vw, 760px); max-height: 84vh; }
.lightbox-caption { text-align: center; color: var(--muted); margin-top: 16px; font-size: .88rem; letter-spacing: .02em; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  background: rgba(13, 10, 8, .6);
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--text); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Shop */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.product { display: flex; flex-direction: column; }
.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.split-media img, .product-media > img { opacity: 0; transition: opacity .6s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.split-media img.is-loaded, .product-media > img.is-loaded { opacity: 1; }
.product:hover .product-media img { transform: scale(1.035); }
.product-info { display: flex; flex-direction: column; flex: 1; padding-top: 22px; }
.product-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.product-title-row h3 { margin: 0; font-size: 1.7rem; }
.product-price { margin: 0; font-size: 1rem; color: var(--text); white-space: nowrap; }
.product-desc { color: var(--muted); font-size: .92rem; margin: 8px 0 20px; }
.product-info .btn { margin-top: auto; }

.size-picker { border: 0; padding: 0; margin: 0 0 20px; display: flex; gap: 8px; }
.size-picker label { position: relative; cursor: pointer; }
.size-picker input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.size-picker span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 40px;
  border: 1px solid var(--line-strong);
  font: 500 .82rem/1 var(--sans);
  color: var(--text-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.size-picker label:hover span { border-color: var(--text); }
.size-picker input:checked + span { background: var(--text); color: var(--bg); border-color: var(--text); }
.size-picker input:focus-visible + span { outline: 2px solid var(--accent-hi); outline-offset: 2px; }
.size-picker input:disabled + span { opacity: .35; text-decoration: line-through; }
.size-picker input:disabled { cursor: not-allowed; }
.color-picker span { min-width: 84px; padding: 0 14px; }

/* Back print first, front on hover */
.product-media .product-alt { position: absolute; inset: 0; }
.product-media.has-alt .product-alt.is-loaded { opacity: 0; }
@media (hover: hover) {
  .product:hover .product-media.has-alt .product-alt.is-loaded { opacity: 1; }
}

.shop-note {
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Cart drawer */
.cart-backdrop {
  position: fixed; inset: 0;
  background: rgba(8, 6, 5, .7);
  z-index: 300;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  width: min(420px, 92%);
  height: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(24px);
  transition: transform .25s ease;
}
.cart-backdrop.is-open .cart-drawer { transform: none; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-header h3 { margin: 0; font-size: 1.6rem; }
.cart-close { width: 38px; height: 38px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); font-size: 1.2rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { color: var(--muted); padding: 28px 24px; text-align: center; }
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-info { display: flex; flex-direction: column; gap: 3px; }
.cart-item-info strong { font-weight: 500; font-size: .95rem; color: var(--text); }
.cart-item-info span { font-size: .82rem; color: var(--muted); }
.cart-item-controls { display: flex; align-items: center; gap: 12px; }
.cart-qty-input { width: 52px; background: transparent; border: 1px solid var(--line-strong); color: var(--text); padding: 7px; font-size: .88rem; }
.cart-item-price { font-size: .9rem; color: var(--text); white-space: nowrap; }
.cart-item-remove { background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer; line-height: 1; }
.cart-item-remove:hover { color: #e9a89c; }
.cart-footer { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-size: 1rem; }
.cart-total-row strong { font-weight: 500; font-size: 1.15rem; }
.cart-agb-row { display: flex; align-items: flex-start; gap: 10px; font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.cart-agb-row input { margin-top: 3px; accent-color: var(--accent); }
.cart-agb-row a { color: var(--text); border-bottom: 1px solid var(--line-strong); }

/* About / split */
.split-section { padding: 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(92vh, 780px);
}
.split-media { margin: 0; position: relative; min-height: 520px; overflow: hidden; }
.split-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
  padding: clamp(64px, 9vw, 130px) var(--gutter) clamp(64px, 9vw, 130px) clamp(40px, 7vw, 110px);
}
.split-content h2 { margin-bottom: 28px; }
.split-content > p { color: var(--text-soft); font-size: 1.06rem; max-width: 32rem; margin-bottom: 36px; }

.facts { margin: 0 0 40px; border-top: 1px solid var(--line); }
.facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.facts dt { font: 500 .68rem/1.6 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0; color: var(--text); }
.split-content .link-arrow { align-self: flex-start; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split-media { min-height: 0; aspect-ratio: 4 / 5; max-height: 78vh; }
  .split-content { max-width: none; padding: 64px var(--gutter) 88px; }
}
@media (max-width: 520px) {
  .facts div { grid-template-columns: 1fr; gap: 4px; }
}

/* Process */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.step { border-top: 1px solid var(--line-strong); padding-top: 28px; }
.step-num { display: block; font-family: var(--serif); font-size: 3.2rem; line-height: 1; color: var(--accent); margin-bottom: 28px; }
.step h3 { font-size: 1.55rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 130px); align-items: start; }
.contact-layout > * { min-width: 0; }
.contact-intro h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); margin-bottom: 24px; hyphens: auto; -webkit-hyphens: auto; }
.contact-intro > p { color: var(--text-soft); font-size: 1.06rem; max-width: 30rem; margin-bottom: 44px; }

.contact-list { border-top: 1px solid var(--line); }
.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-label { font: 500 .68rem/1.6 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.contact-list a { color: var(--text); transition: color .2s ease; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--accent-hi); }

.contact-form { padding-top: 8px; }
.form-row { margin-bottom: 30px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font: 500 .68rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 12px 0;
  color: var(--text);
  font: 400 1.05rem/1.5 var(--sans);
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-bottom-color: var(--accent-hi); }
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { margin-top: 8px; }

.form-status { min-height: 1.4em; font-size: .88rem; margin: 16px 0 0; }
.form-status.success { color: #9fd09f; }
.form-status.error { color: #e9a89c; }
.form-status a { color: var(--text); border-bottom: 1px solid var(--accent-hi); white-space: nowrap; }
.form-status a:hover { color: var(--accent-hi); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* Footer */
.site-footer { background: #080605; border-top: 1px solid var(--line); padding: clamp(64px, 8vw, 100px) 0 32px; color: var(--muted); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 76px; width: auto; filter: invert(1); opacity: .9; }
.footer-brand p { margin: 20px 0 0; max-width: 26ch; line-height: 1.6; }
.footer-col h4 { font: 500 .68rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--text); margin: 8px 0 22px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { transition: color .2s ease; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--accent-hi); }
.site-footer .wrap > .footer-bottom:first-child { margin-top: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { border-bottom: 1px solid var(--line); }
.footer-bottom a:hover { color: var(--accent-hi); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* 404 */
.error-page { max-width: 640px; padding-top: clamp(40px, 8vw, 90px); }
.error-page .footer-logo { margin-bottom: 40px; }
.error-page h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 24px; }
.error-page .section-lead { margin-bottom: 20px; }
.error-page .btn { margin-top: 20px; }

/* Legal pages */
.section-title { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
.legal-content { max-width: 780px; padding-top: 24px; }
.legal-content h2 { font-size: 1.6rem; color: var(--text); margin-top: 40px; }
.legal-content p, .legal-content li { color: var(--text-soft); }
.legal-content ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.legal-content a { color: var(--text); border-bottom: 1px solid var(--line-strong); }
.fill-me { color: var(--accent-hi); font-style: italic; }
.legal-note { margin-top: 48px; padding: 20px; background: var(--surface); border: 1px solid var(--line); font-size: .88rem; }
.lang-note { font-size: .88rem; color: var(--muted); margin-bottom: 32px; }
