@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy:      #0c1e38;
  --navy-mid:  #162e50;
  --gold:      #a0804a;
  --gold-lt:   #c4a06a;
  --gold-faint:#f0e8d8;
  --white:     #ffffff;
  --off-white: #f7f6f3;
  --gray-200:  #ddd9d2;
  --gray-400:  #9a9690;
  --text:      #1a1816;
  --text-muted:#5a5652;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 90px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 16px rgba(12,30,56,0.07);
}

.nav-logo img { height: 58px; width: auto; display: block; }

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

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-phone {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { color: var(--gold); flex-shrink: 0; }
.lang-switch {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--gray-200);
  padding: 0.3rem 0.65rem;
  transition: color 0.2s, border-color 0.2s;
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--navy); }

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar { display: none; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 130px 5% 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(160,128,74,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; max-width: 1100px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a8aaa;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: #6a8aaa; text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: var(--gold); }

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.page-hero .hero-sub {
  font-size: 1rem;
  color: #8fa3bc;
  line-height: 1.8;
  max-width: 580px;
}

/* ── CONTENT LAYOUT ── */
.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.main-content {}

.eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.main-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.rule { width: 36px; height: 2px; background: var(--gold); margin: 0 0 2rem; }

.intro-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 680px;
}

/* ── DETAIL GRID ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.detail-block h3 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-200);
}

.detail-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.detail-block ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.detail-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ── CALLOUT ── */
.callout {
  background: var(--off-white);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}
.callout p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.callout strong { color: var(--navy); }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 106px; }

.sidebar-cta {
  background: var(--navy);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.sidebar-cta p {
  font-size: 0.83rem;
  color: #8fa3bc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.btn-cta {
  display: block;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--gold-lt); }

.sidebar-contact {
  border: 1px solid var(--gray-200);
  padding: 1.5rem 1.75rem;
}
.sidebar-contact h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.sidebar-contact ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.sidebar-contact li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.sidebar-contact li span { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.sidebar-contact li a { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; text-decoration: none; }
.sidebar-contact li a:hover { color: var(--gold); }

/* ── RELATED AREAS ── */
.related {
  background: var(--off-white);
  padding: 64px 5%;
  border-top: 1px solid var(--gray-200);
}
.related-inner { max-width: 1100px; margin: 0 auto; }
.related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.related-card {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.15s;
}
.related-card:hover { background: var(--gold-faint); }
.related-card svg { width: 18px; height: 18px; color: var(--gold); }
.related-card span {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}
.related-card small {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  padding: 64px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.15;
}
.cta-banner p { font-size: 0.88rem; color: #8fa3bc; margin-top: 0.5rem; }
.btn-banner {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.btn-banner:hover { background: var(--gold-lt); }

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo img { height: 34px; width: auto; }
.footer-copy { font-size: 0.78rem; color: var(--gray-400); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .content-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 60px 5% 64px; }
  .sidebar { position: static; }
  .detail-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 5% 52px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 90px; left: 0; right: 0; background: var(--white); padding: 1.5rem 5%; gap: 1.25rem; border-bottom: 1px solid var(--gray-200); box-shadow: 0 8px 24px rgba(12,30,56,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-phone, .lang-switch { display: none; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  body { padding-bottom: 56px; }
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    height: 56px;
    box-shadow: 0 -2px 16px rgba(12,30,56,0.14);
  }
  .mobile-cta-call {
    flex: 1;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .mobile-cta-call:hover { background: var(--gold-lt); }
  .mobile-cta-consult {
    flex: 1;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-left: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
  }
  .mobile-cta-consult:hover { background: var(--navy-mid); }
}
@media (max-width: 480px) {
  .page-hero { padding: 100px 5% 44px; }
  .page-hero h1 { font-size: 2.1rem; }
  .content-wrap { padding: 48px 5% 56px; gap: 2.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related { padding: 48px 5%; }
  .cta-banner { padding: 48px 5%; }
  .sidebar-contact li a,
  .sidebar-contact li span { font-size: 0.9rem; }
  .detail-block ul li { font-size: 0.88rem; }
  .intro-text { font-size: 0.95rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }
}
