/* ============================================================
   JT AUTOAUFBEREITUNG — Old Money Edition
   Palette: Anthrazit · Champagner-Gold · Creme
   ============================================================ */

:root {
  --bg:        #0e1114;
  --bg-2:      #14181c;
  --panel:     #191f24;
  --panel-2:   #1e252b;
  --cream:     #ece2cf;
  --cream-dim: #b3aa99;
  --muted:     #8d8778;
  --gold:      #c9a662;
  --gold-2:    #dcc28a;
  --gold-dark: #9a7d45;
  --line:      rgba(201, 166, 98, 0.28);
  --line-soft: rgba(236, 226, 207, 0.09);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream-dim);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-2); }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-family: var(--serif); color: var(--cream); font-weight: 500; }

.display {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.display em { font-style: italic; color: var(--gold-2); }

.h-section {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.h-section em { font-style: italic; color: var(--gold-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before, .eyebrow.center::after {
  content: ""; width: 42px; height: 1px; background: var(--line);
}

.lead { font-size: 1.12rem; color: var(--cream-dim); }

/* ---------- Layout ---------- */

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.section.alt { background: var(--bg-2); }

.hairline {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* Ornament divider */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  color: var(--gold); margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: min(180px, 24vw);
  background: linear-gradient(90deg, transparent, var(--line));
}
.ornament::after { background: linear-gradient(270deg, transparent, var(--line)); }
.ornament svg { flex: none; }

/* ---------- Header ---------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 17, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}

.brand { display: flex; align-items: center; gap: 16px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand .monogram { flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream);
}
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold);
}

.site-nav { display: flex; align-items: center; gap: 2.6rem; }
.site-nav a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--cream-dim);
  padding: 6px 0; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .35s;
}
.site-nav a:hover, .site-nav a.active { color: var(--cream); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  border: 1px solid var(--line); padding: 12px 26px !important;
  color: var(--gold) !important; transition: background .35s, color .35s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--bg) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--cream); margin: 6px 0; transition: .3s; }

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.9);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,17,20,.62) 0%, rgba(14,17,20,.45) 40%, rgba(14,17,20,.94) 100%),
    radial-gradient(ellipse at 50% 110%, rgba(201,166,98,.14), transparent 55%);
}
.hero-content { position: relative; text-align: center; padding: 120px 6vw 40px; }
.hero .eyebrow { justify-content: center; }
.hero p.lead { max-width: 620px; margin: 1.8rem auto 2.8rem; }

.hero-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; font-family: var(--sans);
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 17px 42px; border: 1px solid var(--gold);
  color: var(--bg); background: var(--gold);
  transition: background .35s, color .35s, border-color .35s;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn.ghost { background: transparent; color: var(--cream); border-color: rgba(236,226,207,.35); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: ""; display: block; width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 12px auto 0;
}

/* ---------- Welcome / About ---------- */

.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: center;
}
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--line); z-index: -1;
}
.about-media .badge {
  position: absolute; right: -18px; top: -18px;
  background: var(--bg); border: 1px solid var(--line);
  padding: 18px 22px; text-align: center;
}
.badge .num { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-2); line-height: 1; }
.badge .lbl { font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); }

.about-text p { margin-bottom: 1.3rem; }
.signature {
  font-family: var(--serif); font-style: italic; font-size: 1.65rem;
  color: var(--gold-2); margin-top: 2rem;
}
.signature small {
  display: block; font-family: var(--sans); font-style: normal;
  font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ---------- Stats ---------- */

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.stat {
  text-align: center; padding: 3.6rem 1rem;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: 0; }
.stat .value {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--cream); line-height: 1;
}
.stat .value span { color: var(--gold-2); }
.stat .label {
  margin-top: 0.9rem; font-size: 0.68rem; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Services ---------- */

.services-intro { max-width: 640px; margin-bottom: 4rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.service-card {
  background: var(--panel); border: 1px solid var(--line-soft);
  transition: border-color .4s, transform .4s;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--line); transform: translateY(-4px); }
.service-media { overflow: hidden; position: relative; }
.service-media img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.service-card:hover .service-media img { transform: scale(1.045); }
.service-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,17,20,.55));
}
.service-body { padding: 2rem 2.2rem 2.4rem; flex: 1; }
.service-num {
  font-family: var(--serif); font-style: italic;
  color: var(--gold); font-size: 1rem; letter-spacing: 0.1em;
}
.service-body h3 {
  font-size: 1.75rem; margin: 0.4rem 0 0.8rem;
}
.service-body p { font-size: 0.98rem; }

/* ---------- Quote band ---------- */

.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.4;
  color: var(--cream); max-width: 880px; margin: 2.4rem auto;
}
.quote-band cite {
  font-family: var(--sans); font-style: normal; font-size: 0.68rem;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Gallery / Portfolio ---------- */

.gallery {
  columns: 3; column-gap: 1.4rem;
}
.gallery a {
  display: block; margin-bottom: 1.4rem; position: relative;
  overflow: hidden; break-inside: avoid;
  border: 1px solid var(--line-soft);
}
.gallery img {
  width: 100%; transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .5s;
}
.gallery a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,17,20,.5));
  opacity: 0; transition: opacity .5s;
}
.gallery a:hover img { transform: scale(1.04); }
.gallery a:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 12, 14, 0.96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 88vw); max-height: 84vh;
  object-fit: contain; border: 1px solid var(--line-soft);
}
.lightbox button {
  position: absolute; background: none; border: 1px solid var(--line);
  color: var(--gold); width: 52px; height: 52px; cursor: pointer;
  font-size: 1.1rem; transition: background .3s, color .3s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox button:hover { background: var(--gold); color: var(--bg); }
.lb-close { top: 4vh; right: 4vw; }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
}
.contact-list { list-style: none; margin-top: 2.4rem; }
.contact-list li {
  display: flex; gap: 1.3rem; align-items: flex-start;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line-soft);
}
.contact-list li:first-child { border-top: 1px solid var(--line-soft); }
.contact-ico {
  flex: none; width: 44px; height: 44px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.contact-list .k {
  font-size: 0.62rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 2px;
}
.contact-list .v { color: var(--cream); font-size: 1.02rem; }
.contact-list a.v:hover { color: var(--gold-2); }

.contact-form {
  background: var(--panel); border: 1px solid var(--line-soft);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.form-row { margin-bottom: 1.5rem; }
.contact-form label {
  display: block; font-size: 0.64rem; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 0.55rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-soft);
  color: var(--cream); font-family: var(--sans); font-weight: 300;
  font-size: 1rem; padding: 15px 16px; outline: none;
  transition: border-color .3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 150px; resize: vertical; }

.consent { display: flex; gap: 0.9rem; align-items: flex-start; font-size: 0.82rem; color: var(--muted); }
.consent input { margin-top: 5px; accent-color: var(--gold); }

.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-2); border-top: 1px solid var(--line-soft);
  padding: 4.5rem 0 2.5rem; text-align: center;
}
.site-footer .monogram { margin: 0 auto 1.4rem; }
.footer-name {
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream);
}
.footer-tag {
  font-size: 0.62rem; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px;
}
.footer-links {
  display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap;
  margin: 2.2rem 0 1.8rem;
}
.footer-links a {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim);
}
.footer-links a:hover { color: var(--gold); }
.copyright { font-size: 0.78rem; color: var(--muted); }

/* ---------- Subpages ---------- */

.page-head {
  padding: 190px 0 90px; text-align: center;
  background:
    radial-gradient(ellipse at 50% -40%, rgba(201,166,98,.16), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
}
.page-head .eyebrow { justify-content: center; }
.page-head .eyebrow::after { content: ""; width: 42px; height: 1px; background: var(--line); }

.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.9rem; margin: 3rem 0 1rem; }
.prose h3 { font-size: 1.35rem; margin: 2.2rem 0 0.8rem; color: var(--gold-2); }
.prose p { margin-bottom: 1.1rem; }
.prose .lead-block {
  border-left: 2px solid var(--gold); padding-left: 1.6rem;
  font-size: 1.08rem; margin-bottom: 2.5rem;
}

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .gallery { columns: 2; }
  .site-nav {
    position: fixed; inset: 92px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(14,17,20,.98); border-bottom: 1px solid var(--line-soft);
    padding: 1rem 6vw 2rem; display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 16px 0; width: 100%; text-align: center; }
  .nav-toggle { display: block; }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line-soft); }
  .stat:first-child { border-top: 0; }
  .gallery { columns: 1; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
