/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --navy:   #0D1826;
  --cream:  #F0EBE0;
  --gold:   #B8963E;
  --white:  #FFFFFF;
  --warm:   #F7F4EF;
  --border: #E2DDD7;
  --muted:  #6B7074;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, sans-serif;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ══════════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(13, 24, 38, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
  margin-right: auto;
}
.brand-d {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 0.875rem;
  letter-spacing: 0.28em;
  color: var(--cream);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-right: 2.5rem;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(240, 235, 224, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }

.btn-nav {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(184, 150, 62, 0.35);
  border-radius: 1px;
  color: rgba(184, 150, 62, 0.85);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  margin-left: 2rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 224, 0.28);
  padding: 0.25rem 0.3rem;
  transition: color 0.2s;
}
.lang-btn:hover,
.lang-btn.active { color: rgba(184, 150, 62, 0.9); }

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 1px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #c9a852;
  box-shadow: 0 6px 20px rgba(184, 150, 62, 0.3);
}
.btn-ghost {
  background: transparent;
  color: rgba(240, 235, 224, 0.7);
  border: 1px solid rgba(240, 235, 224, 0.2);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: rgba(240, 235, 224, 0.5);
}

/* ══════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 9rem 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-bottom: 5rem;
}

.hero-left { display: flex; flex-direction: column; }
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 3.5rem; /* align with h1 roughly */
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}
.eyebrow-bar {
  display: block;
  width: 2px;
  height: 1.5rem;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 150, 62, 0.85);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

.hero-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240, 235, 224, 0.52);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Bottom stats — integrated, quiet */
.hero-bottom {
  border-top: 1px solid rgba(240, 235, 224, 0.08);
}
.hero-bottom-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  padding: 1.5rem 3rem 1.5rem 0;
  margin-right: 3rem;
  border-right: 1px solid rgba(240, 235, 224, 0.08);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 235, 224, 0.3);
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════════ */
.section-about {
  background: var(--white);
  padding: 8rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.section-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.about-content h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.body-xl {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #444C58;
  max-width: 56ch;
}

/* ══════════════════════════════════════════════════════════════════
   DIRECTIONS
══════════════════════════════════════════════════════════════════ */
.section-directions {
  background: var(--warm);
  padding: 8rem 0;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

.dir-list-editorial {
  display: flex;
  flex-direction: column;
}

.dir-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.dir-item:last-child {
  border-bottom: 1px solid var(--border);
}

.dir-item-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-top: 0.125rem;
}
.dir-num {
  font-family: var(--serif);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(184, 150, 62, 0.6);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.dir-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
}

.dir-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.dir-points li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 1rem;
  position: relative;
}
.dir-points li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════ */
.section-contact {
  background: var(--white);
  padding: 8rem 0;
}

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

.contact-info-col { padding-top: 0.5rem; }

.contact-info-col h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.contact-info-col p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32ch;
}
.contact-email {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(184, 150, 62, 0.3);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.contact-email:hover { border-color: var(--gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem 0;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--navy);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: none; min-height: 100px; }

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.form-message {
  font-size: 0.875rem;
  color: #059669;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 2rem 0;
  border-top: 1px solid rgba(240, 235, 224, 0.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  text-decoration: none;
}
.footer-d {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.footer-name {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: rgba(240, 235, 224, 0.6);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.25);
}
.footer-email {
  font-size: 0.75rem;
  color: rgba(240, 235, 224, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: rgba(184, 150, 62, 0.85); }

/* ══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible    { opacity: 1; transform: none; }
.reveal-delay-1    { transition-delay: 0.15s; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right    { padding-top: 0; }

  .about-inner,
  .section-header,
  .dir-item,
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }

  .dir-item { gap: 1.25rem; }
  .dir-item-head { gap: 0.75rem; }

  .hero-bottom-inner {
    gap: 0;
    flex-wrap: wrap;
  }
  .hero-stat {
    padding: 1.25rem 2rem 1.25rem 0;
    margin-right: 2rem;
  }
}

@media (max-width: 680px) {
  .container { padding: 0 1.25rem; }
  .main-nav  { display: none; }
  .hero      { padding-top: 7rem; }
  .section-about,
  .section-directions,
  .section-contact { padding: 5rem 0; }
  .footer-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
}
