/* ─── FONTS (self-hosted, latin subset) ────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 400 600;
  font-display: swap;
  src: url('fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic; font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal; font-weight: 400 500;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Unified dark palette — sections differ by ~4-6% lightness only */
  --s0:  #072836;   /* base      */
  --s1:  #0A3040;   /* about     */
  --s2:  #0C3344;   /* archiv    */
  --s3:  #082D3D;   /* services  */
  --s4:  #072836;   /* contact   */
  --s5:  #051E2D;   /* footer    */

  --text:        rgba(255,255,255,.86);
  --text-mid:    rgba(255,255,255,.55);
  --text-muted:  rgba(255,255,255,.38);
  --text-ghost:  rgba(255,255,255,.18);
  --border:      rgba(255,255,255,.07);
  --border-soft: rgba(255,255,255,.05);

  --bg-darker: #051E2D;

  --bronze:  #A89268;

  /* Mikro-Typo-Skala */
  --fs-2xs: .6rem;    /* feinste Captions: ci-label, footer-bottom, scroll-cue */
  --fs-xs:  .65rem;   /* Eyebrow-Labels, Meta, Nummern */
  --fs-sm:  .7rem;    /* Buttons, Nav-Links */
  --ls-base: .12em;
  --ls-mid:  .16em;
  --ls-wide: .22em;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

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

/* ─── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .45s ease, box-shadow .45s ease;
}
.nav.scrolled {
  background: rgba(7,40,54,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600;
  color: rgba(255,255,255,.82); text-decoration: none;
  letter-spacing: .02em;
  transition: color .4s ease;
}
.nav.scrolled .nav-logo { color: var(--text); }

.nav-links { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-links a {
  font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: var(--ls-base); text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  transition: color .3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s ease;
}
.nav-links a:hover { color: rgba(255,255,255,.9); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.7);
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; background: var(--bg-darker);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
/* Cinematic gradient atmosphere */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 50%, rgba(42,74,107,.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 75% 85%, rgba(168,146,104,.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 55% 0%,  rgba(20,40,65,.3) 0%, transparent 60%);
}
/* Diagonal divider */
.hero-divider {
  position: absolute; top: 0; bottom: 0; left: 52%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,.18) 25%, rgba(255,255,255,.18) 75%, transparent 100%);
  transform: skewX(-7deg);
}
/* Photo panel right of the diagonal — same skew as the divider,
   so its left edge runs exactly along the hairline */
.hero-photo {
  position: absolute; top: 0; bottom: 0; left: 52%; right: -12vw;
  transform: skewX(-7deg);
  overflow: hidden;
}
.hero-photo-img {
  position: absolute; inset: -5% -10%;
  transform: skewX(7deg);
  background: url("assets/img/hero-bg.jpg") center 86% / cover no-repeat;
  filter: grayscale(1) brightness(.62) contrast(1.05);
}
/* Colorize the grayscale photo into the site's navy */
.hero-photo-tint {
  position: absolute; inset: 0;
  background: #2B4A66;
  mix-blend-mode: color;
}
/* Feather the photo into the background: toward divider, top and bottom */
.hero-photo-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, #051E2D 0%, rgba(5,30,45,.45) 35%, rgba(5,30,45,0) 70%),
    linear-gradient(to bottom, rgba(5,30,45,.7) 0%, rgba(5,30,45,0) 30%),
    linear-gradient(to top, rgba(5,30,45,.85) 0%, rgba(5,30,45,.2) 38%, rgba(5,30,45,0) 62%);
}
/* Subtle stadium-arc geometry */
.hero-arc-1 {
  position: absolute; top: -15%; right: -8%; width: 58%; height: 75%;
  border: 1px solid rgba(255,255,255,.04); border-radius: 50%;
  transform: rotate(-12deg); pointer-events: none;
}
.hero-arc-2 {
  position: absolute; bottom: -28%; right: 3%; width: 42%; height: 55%;
  border: 1px solid rgba(255,255,255,.05); border-radius: 50%;
  transform: rotate(8deg); pointer-events: none;
}
/* Subtle grain texture overlay */
.hero-grain {
  position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 48px 100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--bronze); margin-bottom: 36px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--bronze); opacity: .65; }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
  font-weight: 400; line-height: 1.06;
  color: white; margin-bottom: 28px;
  letter-spacing: -.015em;
}
.hero-headline em { font-style: italic; color: var(--bronze); }

.hero-sub {
  max-width: 42ch;
  font-size: .95rem; line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 44px;
}

.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-link {
  font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: var(--ls-mid); text-transform: uppercase;
  color: var(--text-mid); text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: color .3s ease, border-color .3s ease;
}
.hero-link:hover { color: white; border-color: var(--bronze); }

/* Right column: quote over the photo panel */
.hero-right {
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-end;
  height: 100%; padding-top: 60px;
}
.hero-quote {
  text-align: right; max-width: 320px;
}
.hero-quote p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: rgba(255,255,255,.55);
  line-height: 1.7;
  text-shadow: 0 2px 28px rgba(5,30,45,.8);
}
.hero-quote cite {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 18px;
  font-family: var(--sans); font-style: normal;
  font-size: var(--fs-2xs); font-weight: 500;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--bronze);
}
.hero-quote cite::before { content: ''; width: 24px; height: 1px; background: var(--bronze); opacity: .65; }

/* Scroll cue — Hairline-Pfeil nach unten */
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  color: rgba(255,255,255,.35);
  animation: pulse 2.2s ease infinite;
}
.hero-scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, currentColor);
}
.hero-scroll-arrow { width: 12px; height: 7px; margin-top: -6px; }
@keyframes pulse { 0%,100% { opacity:.25; } 50% { opacity:.7; } }

/* Hero entrance — staggered reveal on page load */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-tag, .hero-headline, .hero-sub, .hero-actions, .hero-quote {
  opacity: 0;
  animation: hero-up .9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-tag      { animation-delay: .15s; }
.hero-headline { animation-delay: .3s; }
.hero-sub      { animation-delay: .45s; }
.hero-actions  { animation-delay: .6s; }
.hero-quote    { animation-delay: .9s; animation-duration: 1.1s; }
.hero-photo, .hero-divider {
  opacity: 0;
  animation: hero-in 1.5s ease .25s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-tag, .hero-headline, .hero-sub, .hero-actions, .hero-quote,
  .hero-photo, .hero-divider { animation: none; opacity: 1; }
}

/* ─── SECTION UTILITIES ────────────────────────────────── */
.section { padding: 128px 48px; }
.container { max-width: 1200px; margin: 0 auto; }

.label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--bronze); margin-bottom: 24px;
}
.label::after { content: ''; width: 28px; height: 1px; background: var(--bronze); opacity: .65; }

/* ─── BUTTONS ──────────────────────────────────────────── */
.hero-cta, .btn-ghost-light, .btn-send {
  display: inline-block; padding: 15px 38px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: white; text-decoration: none;
  font-family: var(--sans);
  font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: var(--ls-mid); text-transform: uppercase;
  cursor: pointer; position: relative; overflow: hidden;
  transition: color .45s ease, border-color .45s ease;
}
.hero-cta::before, .btn-ghost-light::before, .btn-send::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.08);
  transform: translateX(-100%); transition: transform .45s ease;
}
.hero-cta:hover, .btn-ghost-light:hover, .btn-send:hover { border-color: rgba(255,255,255,.8); }
.hero-cta:hover { border-color: var(--bronze); }
.hero-cta:hover::before, .btn-ghost-light:hover::before, .btn-send:hover::before { transform: translateX(0); }
.hero-cta span, .btn-send span { position: relative; z-index: 1; }
.btn-send { margin-top: 8px; }

/* Scroll animations */
.fade { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.fade.in { opacity: 1; transform: translateY(0); }
.fade.d1 { transition-delay: .1s; }
.fade.d2 { transition-delay: .2s; }
.fade.d3 { transition-delay: .3s; }
.fade.d4 { transition-delay: .4s; }

/* ─── ABOUT ────────────────────────────────────────────── */
.about { background: var(--s1); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: 110px; align-items: start;
}
.about-left { position: sticky; top: 108px; }

.about-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400; line-height: 1.12;
  color: var(--text);
}

.about-right p {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 26px;
}
.about-right p.lead { color: var(--text); }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 56px;
  padding-top: 44px; border-top: 1px solid var(--border);
}
.stat-n {
  font-family: var(--serif); font-size: 2.8rem;
  font-weight: 400; color: var(--bronze);
  line-height: 1; margin-bottom: 8px;
}
.stat-l {
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--ls-base); text-transform: uppercase;
  color: var(--text-ghost);
}

/* ─── ARCHIV / GALERIE ─────────────────────────────────── */
.portfolio { background: var(--s2); }
.portfolio-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400; line-height: 1.12;
  color: var(--text);
}

.port-cta { text-align: center; margin-top: 64px; }

/* Startseite: zweigeteilter Teaser — Archiv links, Galerie rechts */
.port-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 56px;
}
.port-half { display: flex; flex-direction: column; align-items: flex-start; }
.port-half .archive-cat { align-self: stretch; }
.port-half .archive-teaser { margin-bottom: 44px; }
.port-half .btn-ghost-light { margin-top: auto; }
.port-thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-bottom: 44px;
  align-self: stretch;
}

.archive-page { padding-top: 180px; min-height: 70vh; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 14px;
  row-gap: 44px;
  margin-top: 56px;
}
.gallery-grid a, .port-thumbs a {
  display: block; overflow: hidden;
  background: rgba(255,255,255,.03);
  aspect-ratio: 4/3;
}
.gallery-grid img, .port-thumbs img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease, opacity .4s ease;
  opacity: .92;
}
.gallery-grid a:hover img, .port-thumbs a:hover img { transform: scale(1.04); opacity: 1; }
.gallery-item { display: flex; flex-direction: column; }
.gallery-item figcaption {
  margin-top: 9px;
  font-size: .78rem; line-height: 1.5;
  letter-spacing: .01em;
  color: var(--text-mid);
  text-align: center;
}
.gallery-credit {
  margin-top: 48px;
  text-align: center;
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--ls-mid); text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 6vh 6vw;
  background: rgba(3, 16, 24, .95);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
  max-width: 100%; max-height: 100%;
}
.lightbox-img {
  max-width: 100%;
  max-height: calc(88vh - 96px);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  transition: opacity .25s ease;
}
.lightbox-img.loading { opacity: .25; }
.lb-btn {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer; line-height: 1;
  transition: color .2s ease, transform .2s ease;
  user-select: none; -webkit-tap-highlight-color: transparent;
}
.lb-btn:hover { color: var(--bronze); }
.lb-close { top: 22px; right: 26px; width: 44px; height: 44px; font-size: 2rem; }
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 72px; font-size: 2.8rem;
}
.lb-prev { left: 10px; } .lb-next { right: 10px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-caption {
  max-width: min(90%, 680px);
  text-align: center;
  font-size: .92rem; line-height: 1.5; letter-spacing: .01em;
  color: rgba(255,255,255,.82);
}
.lb-caption:empty { display: none; }
.lb-counter {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs); letter-spacing: var(--ls-mid);
  color: var(--text-muted);
}

.archive-teaser {
  max-width: 560px;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
  margin-top: 56px;
}
.archive-cat {
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--ls-mid); text-transform: uppercase;
  color: var(--bronze);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.archive-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.archive-list a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: .88rem;
  line-height: 1.5;
  transition: color .2s;
}
.archive-list a:hover { color: var(--bronze); }

/* ─── LEGAL (Impressum / Datenschutz) ──────────────────── */
.legal-body { max-width: 760px; margin-top: 56px; }
.legal-intro {
  font-size: 1rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 8px;
}
.legal-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 400;
  color: var(--text);
  margin: 52px 0 18px;
}
.legal-body p, .legal-body address {
  font-size: .95rem; line-height: 1.85;
  color: var(--text-mid);
  font-style: normal;
  margin-bottom: 18px;
}
.legal-body a { color: var(--bronze); text-decoration: none; transition: color .2s ease; }
.legal-body a:hover { color: var(--text); }
.legal-body strong { color: var(--text); font-weight: 500; }
.legal-body ul { list-style: none; padding: 0; margin: 0 0 18px; }
.legal-body li {
  position: relative; padding-left: 20px; margin-bottom: 8px;
  font-size: .95rem; line-height: 1.7; color: var(--text-mid);
}
.legal-body li::before {
  content: ''; position: absolute; left: 0; top: .7em;
  width: 8px; height: 1px; background: var(--bronze); opacity: .6;
}
.legal-note {
  margin-top: 8px; padding: 18px 22px;
  border-left: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  font-size: .88rem; color: var(--text-muted);
}
.legal-updated {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: var(--fs-xs); letter-spacing: var(--ls-base);
  text-transform: uppercase; color: var(--text-muted);
}

/* ─── SERVICES ─────────────────────────────────────────── */
.services { background: var(--s3); }
.srv-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 110px; align-items: start;
}
.srv-left { position: sticky; top: 108px; }
.srv-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400; line-height: 1.12;
  color: var(--text); margin-bottom: 24px;
}
.srv-intro { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }

.srv-list { border-top: 1px solid var(--border); }
.srv-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  display: grid; grid-template-columns: 56px 1fr;
  gap: 28px;
  transition: padding-left .3s ease;
}
.srv-item:hover { padding-left: 8px; }
.srv-num {
  font-size: var(--fs-xs); color: var(--text-ghost);
  letter-spacing: var(--ls-base); padding-top: 5px;
}
.srv-title {
  font-family: var(--serif); font-size: 1.28rem;
  font-weight: 400; color: var(--text-mid);
  transition: color .3s ease;
}
.srv-item:hover .srv-title { color: var(--text); }
.srv-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }

.srv-sub {
  list-style: none; margin-top: 16px;
  display: grid; gap: 18px;
}
.srv-sub li {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}
.srv-sub-title {
  display: block; margin-bottom: 5px;
  font-family: var(--serif); font-size: 1.02rem;
  color: var(--text-mid);
}

/* ─── CONTACT ──────────────────────────────────────────── */
.contact { background: var(--s4); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 110px; align-items: start;
}
.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400; color: var(--text);
  line-height: 1.12; margin-bottom: 24px;
}
.contact-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 52px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-label {
  font-size: var(--fs-2xs); font-weight: 500;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: rgba(168,146,104,.6); margin-bottom: 5px; display: block;
}
.ci-val {
  font-size: .92rem; color: rgba(255,255,255,.65);
  text-decoration: none; transition: color .3s ease; display: block;
}
.ci-val:hover { color: white; }

/* Floating-label form */
.cform { display: flex; flex-direction: column; }
.fg { position: relative; margin-bottom: 38px; }
.fg label {
  position: absolute; left: 0; top: 13px;
  font-size: .8rem; color: rgba(255,255,255,.28);
  letter-spacing: .04em;
  transition: all .3s ease; pointer-events: none;
}
.fg input, .fg textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 12px 0; font-size: .9rem;
  font-family: var(--sans); color: white; outline: none;
  transition: border-color .3s ease;
}
.fg textarea { resize: none; height: 96px; }
.fg input:focus, .fg textarea:focus { border-bottom-color: rgba(255,255,255,.45); }
.fg input:focus ~ label,
.fg input:not(:placeholder-shown) ~ label,
.fg textarea:focus ~ label,
.fg textarea:not(:placeholder-shown) ~ label {
  top: -14px; font-size: var(--fs-2xs);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: rgba(168,146,104,.75);
}
.fg input::placeholder, .fg textarea::placeholder { color: transparent; }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer {
  position: relative; isolation: isolate;
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border-soft);
  /* Warm "sunrise" glow rising from the top edge — nods to the sun in the logo */
  background:
    radial-gradient(115% 80% at 50% 0%, rgba(168,146,104,.07) 0%, transparent 55%),
    var(--s5);
}
/* Horizon accent line bleeding across the top border */
.footer::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(168,146,104,.4) 28%, rgba(168,146,104,.7) 50%,
    rgba(168,146,104,.4) 72%, transparent 100%);
}
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.35rem;
  color: rgba(255,255,255,.82); margin-bottom: 12px;
  letter-spacing: -.01em;
}
.footer-logo {
  display: block; width: 150px; height: auto;
  margin: 4px 0 16px; opacity: .92;
}
.footer-brand-tag {
  font-size: .78rem; color: var(--text-muted);
  line-height: 1.6; letter-spacing: .02em;
}
.footer-col {
  display: flex; flex-direction: column; align-items: flex-start; gap: 13px;
}
.footer-col-title {
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  color: var(--bronze); margin-bottom: 5px;
}
.footer-col a {
  font-size: .82rem; color: var(--text-mid);
  text-decoration: none; letter-spacing: .01em;
  transition: color .25s ease, transform .25s ease;
}
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-place {
  font-size: .82rem; color: var(--text-muted); letter-spacing: .01em;
}
.footer-bottom {
  max-width: 1200px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-copy { font-size: var(--fs-2xs); color: var(--text-ghost); letter-spacing: .04em; }
.footer-brandline {
  font-size: var(--fs-2xs); color: var(--text-ghost);
  letter-spacing: var(--ls-base); text-transform: uppercase;
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .nav-links {
    display: none; position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(7,40,54,.97); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 24px;
    color: rgba(255,255,255,.65) !important; font-size: .8rem;
  }
  .nav-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; gap: 0; padding: 120px 24px 90px; }
  .hero-right { display: none; }
  .hero-divider { display: none; }
  /* Photo becomes a heavily shaded full-bleed backdrop */
  .hero-photo { left: 0; right: 0; transform: none; }
  .hero-photo-img { transform: none; filter: grayscale(1) brightness(.5) contrast(1.05); }
  .hero-photo-shade {
    background:
      linear-gradient(to bottom, rgba(5,30,45,.85) 0%, rgba(5,30,45,.74) 45%, rgba(5,30,45,.92) 100%);
  }

  .section { padding: 88px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-left { position: static; }

  .archive-page { padding-top: 140px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); column-gap: 10px; row-gap: 32px; }
  .lightbox { padding: 0; }
  .lb-prev, .lb-next { width: 44px; height: 56px; font-size: 2.2rem; }
  .lb-close { top: 12px; right: 12px; }
  .lb-figure { gap: 12px; }
  .lightbox-img { max-height: calc(100vh - 96px); }
  .lb-caption { max-width: 90%; font-size: .82rem; }
  .archive-grid { grid-template-columns: 1fr; gap: 40px; }
  .port-split { grid-template-columns: 1fr; gap: 52px; }

  .srv-grid { grid-template-columns: 1fr; gap: 52px; }
  .srv-left { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 52px; }

  .footer { padding: 56px 24px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; text-align: left; gap: 40px 32px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 540px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stats > div:last-child { grid-column: span 2; }
  .hero-headline { font-size: 2.4rem; }
}
