/* ============================================================
   Antony Berbert Fotografie — Cinematic Portfolio
   Design tokens + global styles
   ============================================================ */

:root {
  /* Warm cinematic dark palette */
  --bg: #0F0D0C;
  --bg-2: #141110;
  --surface: #191512;
  --surface-2: #211B18;
  --text: #F3EDE7;
  --text-muted: #B4A79C;
  --text-dim: #8A7E74;
  --accent: #B13124;         /* brick red */
  --accent-bright: #C93A2B;
  --accent-deep: #8F2417;
  --accent-soft: rgba(177, 49, 36, 0.14);
  --accent-line: rgba(177, 49, 36, 0.42);
  --border: rgba(243, 237, 231, 0.10);
  --border-strong: rgba(243, 237, 231, 0.18);
  --scrim: rgba(9, 7, 6, 0.72);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.no-scroll { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

button { font-family: inherit; cursor: pointer; }

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

:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; }

.serif { font-family: var(--font-serif); }
.serif-i { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent-line);
}
.eyebrow.center::before { display: none; }

.lead { color: var(--text-muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(4.5rem, 11vw, 9rem);
  position: relative;
}
.section--tight { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin-top: 1rem;
}
.section-head p { margin-top: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); box-shadow: 0 12px 30px -12px var(--accent); }
.btn-primary:hover svg { transform: translate(3px, -3px); }
.btn-ghost { background: rgba(243,237,231,0.04); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(243,237,231,0.09); border-color: var(--text-dim); transform: translateY(-2px); }
.btn-lg { padding: 1.05em 1.9em; font-size: 0.98rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(15, 13, 12, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand b { font-weight: 600; font-size: 1.02rem; letter-spacing: 0.04em; }
.brand span {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.35em;
}
.brand b em { color: var(--accent-bright); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  padding-block: 0.3em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent-bright);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.1rem; }

/* In-menu CTA only shows inside the mobile dropdown */
.nav-links .mobile-cta { display: none; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(243,237,231,0.03);
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.5em 0.85em;
  transition: all 0.25s var(--ease);
}
.lang-toggle button.active { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px; height: 42px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.6px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,12,0.94) 0%, rgba(15,13,12,0.72) 32%, rgba(15,13,12,0.15) 62%, rgba(15,13,12,0.30) 100%),
    linear-gradient(0deg, rgba(15,13,12,0.95) 2%, rgba(15,13,12,0) 42%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  padding-top: 120px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7.4vw, 6.4rem);
  font-weight: 600;
  max-width: 15ch;
  margin-top: 1.6rem;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-bright);
}
.hero p {
  margin-top: 1.8rem;
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #EDE5DD;
  text-shadow: 0 1px 24px rgba(9, 7, 6, 0.85), 0 1px 4px rgba(9, 7, 6, 0.6);
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
  max-width: 640px;
}
.hero-meta div b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
}
.hero-meta div span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-cue {
  position: absolute;
  bottom: 1.6rem; right: var(--pad);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 54px;
  background: linear-gradient(var(--accent-bright), transparent);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0%,100%{opacity:.3; transform:scaleY(.6);} 50%{opacity:1; transform:scaleY(1);} }

/* Marquee strip under hero */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.1rem;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-track span::after { content: "✦"; color: var(--accent); font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   INTRO / POSITIONING
   ============================================================ */
.intro-statement {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.015em;
  max-width: 20ch;
}
.intro-statement em { font-style: italic; color: var(--accent-bright); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.intro-grid .col-text p { color: var(--text-muted); margin-top: 1.5rem; max-width: 46ch; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-bar button {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 100px;
  padding: 0.55em 1.15em;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all 0.28s var(--ease);
}
.filter-bar button:hover { color: var(--text); border-color: var(--text-dim); }
.filter-bar button.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.gallery {
  columns: 3;
  column-gap: 16px;
}
.shot {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.shot.hide { display: none; }
.shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.96) brightness(0.94);
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,7,6,0.75), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.shot-cap {
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.2rem;
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease);
}
.shot-cap b { display: block; font-size: 0.95rem; font-weight: 600; }
.shot-cap span { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); }
.shot:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.shot:hover::after { opacity: 1; }
.shot:hover .shot-cap { transform: translateY(0); opacity: 1; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.services-grid.services-3 { grid-template-columns: repeat(3, 1fr); }
.service {
  background: var(--bg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  transition: background 0.4s var(--ease);
  position: relative;
}
.service:hover { background: var(--surface); }
.service .num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}
.service h3 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin-top: 1.4rem; font-weight: 600; }
.service p { color: var(--text-muted); margin-top: 0.9rem; font-size: 0.96rem; }
.service .tags {
  margin-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.service .tags span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 0.3em 0.75em;
  border-radius: 100px;
}

/* Service pricing + inclusions */
.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.service-price .price-from {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.service-price .price-amount {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
}
.service-incl {
  list-style: none;
  padding: 0;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.service-incl li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.88rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.service-incl li:last-child { border-bottom: 0; }
.service-incl .incl-label { color: var(--text-dim); }
.service-incl .incl-value { color: var(--text-muted); text-align: right; }
.service-note {
  margin-top: 2rem;
  font-size: 0.86rem;
  color: var(--text-dim);
  max-width: 60ch;
}

/* Fill-in placeholder marker (legal pages) */
.placeholder {
  color: var(--accent-bright);
  background: var(--accent-soft);
  padding: 0.05em 0.45em;
  border-radius: 3px;
  font-style: normal;
  white-space: nowrap;
}

/* --- Pricing cards (3-up) --- */
.services-grid.services-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
  align-items: start;
}
.services-grid.services-3 .service {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.services-grid.services-3 .service:hover { background: var(--surface); }
.services-grid.services-3 .service-price {
  border-top: 0;
  padding-top: 0;
  margin-top: 1rem;
}
.service-desc { color: var(--text-muted); margin-top: 1.1rem; font-size: 0.94rem; }
.service-for {
  color: var(--text-dim);
  margin-top: 0.9rem;
  font-size: 0.85rem;
  line-height: 1.55;
}
.service-scope {
  margin-top: 1.2rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  padding: 0.7em 0.9em;
  border-radius: 0 4px 4px 0;
}
.incl-toggle {
  width: 100%;
  background: none;
  border: 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 1.2rem 0 0;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s var(--ease);
}
.service > .incl-toggle { margin-top: 1.6rem; }
.incl-toggle:hover { color: var(--accent-bright); }
.incl-toggle .faq-icon { width: 18px; height: 18px; }
.incl-toggle.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.incl-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.incl-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.incl-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.incl-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.52em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.incl-note {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 4rem; border-top: 1px solid var(--border); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.1rem; left: 0;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-line);
  line-height: 1;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.7rem; font-weight: 600; }
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 90px 10px rgba(9,7,6,0.6);
}
.about-text h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 1rem 0 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.15rem; }
.about-text p strong { color: var(--text); font-weight: 600; }
.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 1.8rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-2); }
.tst-viewport { position: relative; max-width: 900px; margin-inline: auto; text-align: center; }
.tst-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.5;
}
.tst-slide { display: none; }
.tst-slide.active { display: block; animation: fadeUp 0.6s var(--ease); }
.tst-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 1.5rem 0 2rem;
}
.tst-author b { display: block; font-weight: 600; letter-spacing: 0.02em; }
.tst-author span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); }
.tst-nav { display: flex; justify-content: center; gap: 0.7rem; margin-top: 2.2rem; }
.tst-nav button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border-strong);
  transition: all 0.3s var(--ease);
  padding: 0;
}
.tst-nav button.active { background: var(--accent); width: 26px; border-radius: 100px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 1.5rem 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--accent-bright); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--accent-bright);
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p { color: var(--text-muted); padding-bottom: 1.5rem; max-width: 68ch; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.contact-left h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 1rem 0 1.4rem; }
.contact-left p { color: var(--text-muted); max-width: 42ch; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.3rem; }
.contact-details a, .contact-details div { display: flex; align-items: center; gap: 0.9rem; color: var(--text-muted); }
.contact-details a:hover { color: var(--text); }
.contact-details svg { width: 18px; height: 18px; color: var(--accent-bright); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.9em 1em;
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B4A79C' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  padding-right: 2.4em;
}
.field select option { background: var(--surface); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--surface-2);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-dim); }

/* Honeypot — visually hidden, off-screen (bots fill it, humans don't) */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Contact form status message */
.form-status { font-size: 0.9rem; min-height: 1.2em; margin: -0.2rem 0 0; }
.form-status.is-sending { color: var(--text-muted); }
.form-status.is-ok { color: #7FC08A; }
.form-status.is-err { color: #E58370; }

/* ============================================================
   COOKIE CONSENT BAR
   ============================================================ */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 150;
  width: min(700px, calc(100% - 2rem));
  background: rgba(25, 21, 18, 0.97);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.8);
  animation: cookieIn 0.55s var(--ease) both;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translate(-50%, 22px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-bar p { flex: 1; margin: 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.cookie-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.cookie-link { font-size: 0.82rem; color: var(--text-dim); white-space: nowrap; }
.cookie-link:hover { color: var(--accent-bright); }
.cookie-bar .btn { padding: 0.62em 1.15em; font-size: 0.85rem; width: auto; }
@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; gap: 0.9rem; bottom: 0.7rem; }
  .cookie-actions { justify-content: flex-end; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
  background: var(--bg-2);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand b { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; }
.footer-brand p { color: var(--text-muted); margin-top: 1rem; max-width: 34ch; font-size: 0.92rem; }
.footer-col h4 { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--text); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(9, 7, 6, 0.96);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.lb-cap {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.lb-cap b { color: var(--accent-bright); }
.lb-btn {
  position: absolute;
  background: rgba(243,237,231,0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.lb-btn:hover { background: var(--accent); border-color: var(--accent); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding-top: 140px; }
.legal-page .wrap { max-width: 820px; }
.legal-page h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }
.legal-page h1 + p { color: var(--text-dim); margin-bottom: 3rem; }
.legal-page h2 { font-size: 1.35rem; margin: 2.5rem 0 0.9rem; color: var(--text); }
.legal-page p, .legal-page li { color: var(--text-muted); margin-bottom: 0.8rem; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page a { color: var(--accent-bright); }
.legal-page a:hover { text-decoration: underline; }
.legal-page .placeholder {
  color: var(--accent-bright);
  background: var(--accent-soft);
  padding: 0.05em 0.4em;
  border-radius: 3px;
  font-size: 0.92em;
}
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 3rem; color: var(--text-muted); }
.back-link:hover { color: var(--accent-bright); }
.legal-notice {
  border: 1px solid var(--accent-line);
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.legal-page address { font-style: normal; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.8rem; }
.legal-page .legal-meta { color: var(--text-dim); font-size: 0.85rem; margin-top: 2.5rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px);} to { opacity:1; transform:none;} }

/* i18n visibility handled via JS text swap; helper for lang-only blocks */
[data-lang-only] { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .gallery { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav .btn.desktop-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(15,13,12,0.98);
    backdrop-filter: blur(14px);
    padding: 1rem var(--pad) 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.45s var(--ease);
    display: flex;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1.1rem 0; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 1.4rem; width: 100%; }
  .nav-links .mobile-cta .btn { width: 100%; justify-content: center; }
  .intro-grid { grid-template-columns: 1fr; align-items: start; }
  .services-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .gallery { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem 2rem; }
  .process { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .lb-prev { left: 0.6rem; }
  .lb-next { right: 0.6rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media img { animation: none; }
}
