/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: #1a2744;
  background: #faf9f7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, dl { list-style: none; }

/* ── Tokens ── */
:root {
  --navy:    #1a2744;
  --navy-deep: #111d35;
  --gold:    #c8a45e;
  --gold-light: #dbb96e;
  --cream:   #faf9f7;
  --cream-dark: #f3f0eb;
  --line:    rgba(26,39,68,0.10);
  --line-strong: rgba(26,39,68,0.20);
  --radius:  4px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ── Container ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(26,39,68,0.06); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--navy); letter-spacing: -0.01em; }
.nav-logo-icon { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-size: 0.8125rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.nav-menu a:hover { opacity: 1; color: var(--navy); }
.nav-cta {
  background: var(--navy); color: #fff !important; opacity: 1 !important;
  padding: 9px 20px; border-radius: var(--radius); font-size: 0.8125rem;
  letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-deep); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 24px; padding: 4px 0; }
.nav-toggle span { display: block; height: 1.5px; background: var(--navy); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; padding-top: 64px; }
.hero-inner {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1140px; margin: 0 auto; padding: 60px 24px 0;
  align-items: center; gap: 48px;
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 300; line-height: 1.08; color: var(--navy);
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 1.0625rem; line-height: 1.75; color: rgba(26,39,68,0.7);
  max-width: 440px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); box-shadow: 0 8px 24px rgba(26,39,68,0.25); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.2); }

.hero-trust { display: flex; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: rgba(26,39,68,0.5); }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-right { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 640/800;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent {
  position: absolute; bottom: -24px; left: -24px;
  width: 160px; height: 160px;
  border: 1px solid var(--gold); border-radius: 8px; z-index: -1; opacity: 0.5;
}
.hero-line {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  border-top: 1px solid var(--line);
}

/* ── Separator ── */
.sep { padding: 28px 24px; border-bottom: 1px solid var(--line); }
.sep-inner { max-width: 720px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.sep-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.sep-text { font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: rgba(26,39,68,0.55); letter-spacing: 0.02em; }

/* ── Section shared ── */
.section-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400; line-height: 1.15; color: var(--navy);
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-subtitle { font-size: 1.0625rem; color: rgba(26,39,68,0.65); max-width: 560px; line-height: 1.7; }

/* ── Selection ── */
.selection { padding: 100px 0 112px; }
.selection .container { display: flex; flex-direction: column; align-items: flex-start; }
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 56px; width: 100%;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 36px 28px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--gold); box-shadow: 0 12px 32px rgba(26,39,68,0.07); transform: translateY(-4px); }
.card-icon { color: var(--gold); margin-bottom: 22px; }
.card-title {
  font-family: var(--font-serif); font-size: 1.375rem; font-weight: 500;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -0.01em;
}
.card-desc { font-size: 0.9375rem; color: rgba(26,39,68,0.65); line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0 112px; background: var(--cream-dark); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-col { display: grid; grid-template-columns: 1fr; gap: 16px; }
.about-img-wrap { border-radius: 8px; overflow: hidden; aspect-ratio: 560/620; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm { border-radius: 8px; overflow: hidden; aspect-ratio: 400/260; }
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-text-col { display: flex; flex-direction: column; align-items: flex-start; }
.about-p { font-size: 1.0625rem; color: rgba(26,39,68,0.7); line-height: 1.8; margin-bottom: 20px; max-width: 480px; }
.about-stats {
  display: flex; gap: 24px; margin-top: 40px; width: 100%;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.stat { flex: 1; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.stat-label { font-size: 0.8125rem; color: rgba(26,39,68,0.5); }
.stat-divider { width: 1px; background: var(--line); align-self: stretch; flex-shrink: 0; }

/* ── Visit ── */
.visit { padding: 100px 0 112px; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.visit-desc { font-size: 1.0625rem; color: rgba(26,39,68,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 400px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row dt {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-dark); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-row dd { padding-top: 8px; }
.contact-row a { font-size: 1rem; color: var(--navy); font-weight: 400; transition: color 0.2s; }
.contact-row a:hover { color: var(--gold); }
.contact-row span { display: block; font-size: 1rem; color: var(--navy); }
.contact-note { font-size: 0.8125rem; color: rgba(26,39,68,0.5); margin-top: 2px; }
.visit-map {
  border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 1/1; min-height: 380px;
}

/* ── CTA ── */
.cta {
  padding: 100px 0; background: var(--navy); text-align: center;
}
.cta .container { display: flex; flex-direction: column; align-items: center; }
.cta-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.cta-headline {
  font-family: var(--font-serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300; line-height: 1.2; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 20px; max-width: 640px;
}
.cta-desc { font-size: 1.0625rem; color: rgba(255,255,255,0.6); max-width: 480px; margin-bottom: 36px; line-height: 1.75; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Footer ── */
.footer { padding: 64px 0 0; background: var(--navy-deep); color: rgba(255,255,255,0.6); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding: 48px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-logo svg { color: var(--gold); }
.footer-tagline { font-size: 0.9375rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col p { font-size: 0.9375rem; line-height: 1.7; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-note { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-legal { font-size: 0.75rem; }

/* ── Mobile ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(250,249,247,0.98); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1rem; opacity: 1; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .hero-right { order: -1; }
  .hero-img-wrap { aspect-ratio: 4/3; }
  .hero-accent { display: none; }
  .hero-line { display: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { order: -1; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
