/* ─── Reset & Base ─────────────────────────────────────────────────────── */

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

:root {
  --black:   #0a0a0a;
  --white:   #f5f3ee;
  --cream:   #f0ece3;
  --gold:    #b8975a;
  --gold-lt: #d4b87a;
  --grey:    #7a7a7a;
  --grey-lt: #c8c4bc;
  --rule:    #d0ccc4;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --container: 1100px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── Utility ──────────────────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

/* ─── Header / Nav ─────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.75rem var(--pad-x);
  display: flex;
  align-items: center;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--black);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--pad-x) 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,151,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 2.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 480px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 3.5rem;
}

.hero-line {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40vh;
  background: linear-gradient(to bottom, transparent, var(--rule) 30%, var(--rule) 70%, transparent);
}

/* ─── Contact ──────────────────────────────────────────────────────────── */

.contact {
  padding: 8rem var(--pad-x);
  background: var(--black);
  color: var(--white);
}

.contact .section-label {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-col h2 em {
  font-style: italic;
  color: var(--gold-lt);
}

.contact-col > p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,243,238,0.6);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
}

.contact-value a {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s;
}

.contact-value a:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}

/* ─── Footer ───────────────────────────────────────────────────────────── */

.site-footer {
  padding: 2rem var(--pad-x);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(245,243,238,0.4);
}

.footer-copy {
  font-size: 11px;
  color: rgba(245,243,238,0.3);
  letter-spacing: 0.05em;
}

/* ─── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem var(--pad-x) 1.5rem;
    background: rgba(245, 243, 238, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 12px;
    border-top: 1px solid var(--rule);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-line {
    display: none;
  }
}

/* ─── Reduced motion ───────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Imprint ──────────────────────────────────────────────────────────── */

.imprint-section {
  padding: 10rem var(--pad-x) 8rem;
  min-height: 80vh;
}

.imprint-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 4rem;
}

.imprint-intro {
  margin-top: -2.75rem;
  margin-bottom: 3.5rem;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--grey);
}

.imprint-headline em {
  font-style: italic;
  color: var(--gold);
}

.notfound-text {
  max-width: 460px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--grey);
}

.notfound-text a {
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
}

.notfound-text a:hover {
  color: var(--gold);
}

.imprint-body {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.imprint-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}

.imprint-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.imprint-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.15rem;
}

.imprint-value {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--black);
}

.imprint-value a {
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s, color 0.2s;
}

.imprint-value a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
