:root {
  --accent-hue: 80;
  --accent-chroma: 0.09;
  --bg-warmth: 80;
  --display-font: "Cormorant Garamond", "Times New Roman", serif;
  --body-font: "Inter", system-ui, sans-serif;

  --bg: oklch(0.98 0.005 var(--bg-warmth));
  --bg-2: oklch(0.96 0.008 var(--bg-warmth));
  --bg-3: oklch(0.93 0.01 var(--bg-warmth));
  --ink: oklch(0.18 0.005 60);
  --ink-2: oklch(0.32 0.005 60);
  --ink-3: oklch(0.55 0.005 60);
  --line: oklch(0.86 0.008 var(--bg-warmth));
  --line-2: oklch(0.78 0.012 var(--bg-warmth));

  --accent: oklch(0.72 var(--accent-chroma) var(--accent-hue));
  --accent-deep: oklch(0.55 calc(var(--accent-chroma) * 1.1) calc(var(--accent-hue) - 5));
  --accent-soft: oklch(0.92 calc(var(--accent-chroma) * 0.4) var(--accent-hue));
  --accent-glow: oklch(0.85 var(--accent-chroma) var(--accent-hue));
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */
.display {
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.display.italic { font-style: italic; }

.eyebrow {
  font-family: var(--body-font);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-3);
}

.gold-text {
  background: linear-gradient(120deg, var(--accent-deep) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

section { position: relative; }

.hairline {
  height: 1px;
  background: var(--line);
  border: 0;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(0);
}
.nav:not(.scrolled) .nav-logo { color: #fff; }
.nav:not(.scrolled) .nav-logo .mark { border-color: oklch(0.95 0 0 / 0.8); color: #fff; }
.nav:not(.scrolled) .nav-links a { color: oklch(0.95 0 0 / 0.85); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .lang-toggle { border-color: oklch(0.95 0 0 / 0.3); }
.nav:not(.scrolled) .lang-toggle button { color: oklch(0.95 0 0 / 0.7); }
.nav:not(.scrolled) .lang-toggle button.active { background: #fff; color: var(--ink); }
.nav.scrolled {
  background: oklch(0.98 0.005 var(--bg-warmth) / 0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--display-font);
  font-size: 22px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo:hover { color: var(--accent-deep); }
.nav-logo .mark {
  width: 28px; height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display-font);
  font-style: italic;
  font-size: 16px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.lang-toggle {
  display: flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-3);
  font-family: inherit;
  letter-spacing: inherit;
  transition: all 0.25s;
}
.lang-toggle button.active {
  background: var(--ink);
  color: var(--bg);
}

.cta-pill, .nav-links a.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg) !important;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}
.cta-pill::after, .nav-links a.cta-pill::after { display: none !important; }
.cta-pill:hover, .nav-links a.cta-pill:hover {
  background: var(--accent-deep);
  color: var(--bg) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--accent-deep);
}
.cta-pill:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}
.cta-pill .arrow { transition: transform 0.3s; }
.cta-pill:hover .arrow { transform: translateX(4px); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}
.cta-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  padding: 0;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      oklch(0.12 0.005 60 / 0.35) 0%,
      oklch(0.12 0.005 60 / 0.15) 35%,
      oklch(0.12 0.005 60 / 0.55) 75%,
      oklch(0.10 0.005 60 / 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line {
  width: 48px; height: 1px;
  background: var(--accent);
}
.hero-eyebrow .eyebrow {
  color: oklch(0.92 0.02 80);
}
.hero-title {
  font-size: clamp(56px, 9vw, 148px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 30px oklch(0.1 0.005 60 / 0.4);
  max-width: 1100px;
}
.hero-title .line2 {
  font-style: italic;
  font-weight: 400;
}
.hero-tagline {
  margin-top: 28px;
  font-size: 19px;
  max-width: 520px;
  color: oklch(0.95 0.005 80 / 0.92);
  line-height: 1.6;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .cta-ghost {
  color: #fff;
  border-color: oklch(0.95 0 0 / 0.5);
}
.hero .cta-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid oklch(0.95 0 0 / 0.18);
  max-width: 720px;
}
.hero-meta .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta .num {
  font-family: var(--display-font);
  font-size: 42px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}
.hero-meta .eyebrow {
  color: oklch(0.85 0 0 / 0.7);
}
.hero-credit {
  position: absolute;
  bottom: 24px; right: 32px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: oklch(0.95 0 0 / 0.55);
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: oklch(0.95 0 0 / 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll .line-anim {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-photo-legacy { display: none; }

/* gold particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow);
  opacity: 0;
  animation: drift linear infinite;
}
@keyframes drift {
  0% { transform: translateY(110vh) translateX(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(40px) scale(1); opacity: 0; }
}

/* ---------- Quote marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display-font);
  font-size: 22px;
  font-style: italic;
  color: var(--ink-2);
}
.marquee-item .star {
  color: var(--accent-deep);
  font-style: normal;
  font-size: 14px;
}
.marquee-item .src {
  font-family: var(--body-font);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--display-font);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.section-head h2 em { font-weight: 400; }
.section-head .num {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 22px;
  color: var(--accent-deep);
}
.section-head .desc {
  max-width: 460px;
  color: var(--ink-2);
  font-size: 16px;
  justify-self: end;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .desc { justify-self: start; }
}

section.padded { padding: 130px 0; }
section.padded-sm { padding: 90px 0; }

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) {
  .services { grid-template-columns: 1fr; }
}
.service {
  padding: 48px 32px 56px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: background 0.5s;
  overflow: hidden;
}
.service:nth-child(2n) { border-right: 0; }
@media (max-width: 880px) {
  .service { border-right: 0; }
}
.service:hover { background: var(--bg-2); }
.service .roman {
  font-family: var(--display-font);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.service h3 {
  font-family: var(--display-font);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service p {
  color: var(--ink-2);
  font-size: 15.5px;
  max-width: 560px;
  line-height: 1.7;
}
.service .meta {
  margin-top: 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 24px;
  align-items: center;
}
.service .meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-deep);
}
.service .arrow-circle {
  position: absolute;
  top: 48px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.4s;
  color: var(--ink-2);
}
.service:hover .arrow-circle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; gap: 48px; }
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  position: sticky;
  top: 100px;
}
.about-photos .ph {
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px -30px oklch(0.18 0.005 60 / 0.3);
}
.about-photos .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-photos .ph:hover img { transform: scale(1.05); }
.about-photos .ph-1 { aspect-ratio: 3/4; }
.about-photos .ph-2 { aspect-ratio: 3/4; }
.about-photos .ph-3 { aspect-ratio: 4/3; grid-column: 1 / -1; }

.about-text h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.reveal.about-text {
  background-color: var(--bg-2);
}
.about-text p {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 18px;
  line-height: 1.75;
  max-width: 580px;
}
.about-text p.lead {
  font-size: 22px;
  font-family: var(--display-font);
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.4;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-stats .stat .n {
  font-family: var(--display-font);
  font-size: 44px;
  font-weight: 400;
  color: var(--accent-deep);
  line-height: 1;
}
.about-stats .stat .l {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Video ---------- */
.video-section {
  background: var(--ink);
  color: var(--bg);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.video-section .section-head { border-bottom-color: oklch(0.3 0.005 60); }
.video-section .section-head h2 { color: var(--bg); }
.video-section .section-head .desc { color: oklch(0.7 0.005 60); }
.video-section .section-head .num { color: var(--accent); }
.video-section .eyebrow { color: oklch(0.7 0.005 60); }
.video-wrap {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: oklch(0.12 0.005 60);
  box-shadow: 0 40px 100px -40px oklch(0.5 0.1 80 / 0.5);
}
/* Absolut fyllning: vissa webbläsare ritar annars ingen videoyta (kvar: bara mörk bakgrund + ljud) */
.video-wrap video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateZ(0);
}
.video-wrap .play-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, oklch(0.1 0.005 60 / 0.5), transparent 60%);
  transition: opacity 0.4s;
}
/* dölja overlay helt: opacity:0 räckte i vissa motorer inte för att visa videon ovanför mörk bakgrund */
.video-wrap.playing .play-overlay {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.play-btn {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: oklch(0.98 0.005 80 / 0.95);
  display: grid; place-items: center;
  color: var(--ink);
  border: 0;
  cursor: pointer;
  transition: transform 0.4s;
  position: relative;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { margin-left: 4px; }
.video-caption {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.65 0.005 60);
}

/* ---------- Logos ---------- */
.logos-section { padding: 110px 0; }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}
@media (max-width: 880px) {
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}
.logos-grid .logo-cell {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  padding: 36px;
  border-right: 1px solid var(--line);
  filter: grayscale(1);
  opacity: 0.55;
  transition: all 0.5s;
}
.logos-grid .logo-cell:last-child { border-right: 0; }
.logos-grid .logo-cell:hover {
  opacity: 1;
  filter: grayscale(0);
  background: var(--bg-2);
}
.logos-grid .logo-cell img {
  max-height: 70%;
  max-width: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 130px 0;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 880px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial {
  background: var(--bg);
  padding: 44px 36px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px oklch(0.18 0.005 60 / 0.2);
}
.testimonial .qmark {
  font-family: var(--display-font);
  font-size: 80px;
  line-height: 0.4;
  color: var(--accent-deep);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial blockquote {
  font-family: var(--display-font);
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
}
.testimonial cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
}
.testimonial cite strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 130px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.contact-aside h2 {
  font-family: var(--display-font);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.contact-aside p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.contact-aside .info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-aside .info .row {
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.contact-aside .info .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  width: 90px;
}
.contact-aside .info .value {
  font-family: var(--display-font);
  font-size: 20px;
  color: var(--ink);
}
.contact-aside .info .value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.3s;
}
.contact-aside .info .value a:hover { border-color: var(--accent-deep); }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg);
}
.field {
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px 16px;
  transition: background 0.3s;
}
.field:focus-within { background: var(--bg-2); }
.field:nth-child(2n) { border-right: 0; }
.field.full { grid-column: 1 / -1; border-right: 0; }
.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  padding: 0;
}
.field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-3);
  opacity: 0.5;
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}
.field .underline {
  position: absolute;
  left: 24px; right: 24px;
  bottom: 14px;
  height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.field:focus-within .underline { transform: scaleX(1); }

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  grid-column: 1 / -1;
  padding: 16px 24px;
  color: oklch(0.42 0.16 25);
  background: oklch(0.96 0.03 25);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
}

.form-submit {
  grid-column: 1 / -1;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-2);
  flex-wrap: wrap;
  gap: 12px;
}
.form-note {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

.form-success {
  grid-column: 1 / -1;
  padding: 80px 40px;
  text-align: center;
}
.form-success .check {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--accent-deep);
  margin: 0 auto 24px;
  display: grid; place-items: center;
  color: var(--accent-deep);
  animation: popIn 0.6s cubic-bezier(0.2, 1.4, 0.5, 1);
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } }
.form-success h3 {
  font-family: var(--display-font);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 12px;
}
.form-success p { color: var(--ink-2); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  background: var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-top h3 {
  font-family: var(--display-font);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  margin-left: 24px;
}
.footer-bottom a:hover { color: var(--accent-deep); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Mobile nav ---------- */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media (max-width: 880px) {
  .nav-links a { display: none; }
  .nav-links .lang-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .mobile-toggle { display: inline-block; }
}
