:root {
  --navy: #0b1220;
  --gold: #c4a574;
  --paper: #f3f4f6;
  --text: #1f2937;
  --muted: #4b5563;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

h1, h2, h3, .price {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.italic,
.gold,
.gold.italic,
.intro .italic {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 40px;
  background: var(--navy);
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: contain;
  background: #0b1220;
}
.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.brand small {
  display: block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 3px;
}

.nav nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.btn-light { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-outline { border: 1px solid rgba(255,255,255,.45); color: #fff; }

.hero {
  position: relative;
}

.intro {
  position: relative;
  margin-top: -220px;
  padding: 0 8vw 40px;
  background: transparent;
}

.intro-copy {
  max-width: 620px;
  background: #0b1220;
  color: #e5e7eb;
  border-radius: 20px;
  padding: 40px 40px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.intro h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 12px 0 24px;
}
.intro p { margin-bottom: 16px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.locale { font-size: 14px; }

.questions { background: var(--paper); padding: 80px 8vw; }
.questions h2 { font-size: clamp(32px, 4vw, 48px); max-width: 720px; margin: 8px 0 36px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards article { background: #fff; border-radius: 16px; padding: 28px; }
.cards h3 { font-size: 22px; margin-bottom: 12px; }
.cards p { color: var(--muted); line-height: 1.6; }

.products { padding: 80px 8vw; }
.products > h2 { font-size: clamp(32px, 4vw, 44px); max-width: 760px; margin: 8px 0 48px; }
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}
.product img,
.split img,
.counsel img {
  border-radius: 16px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.product.reverse { direction: rtl; }
.product.reverse > * { direction: ltr; }
.num { color: var(--gold); letter-spacing: .12em; margin-bottom: 8px; font-weight: 600; }
.product h3 { font-size: 32px; line-height: 1.15; margin: 10px 0 16px; }
.product p { color: var(--muted); line-height: 1.65; }
.price { color: var(--gold) !important; font-size: 34px; margin: 18px 0; }

.counsel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 8vw 80px;
}
.counsel h2 { font-size: 32px; margin: 8px 0 16px; }

.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 90px 8vw 70px;
}
.cta h2 { font-size: 40px; margin-bottom: 12px; }
.cta .actions { justify-content: center; }

footer {
  background: var(--navy);
  color: #d1d5db;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 24px 8vw 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
footer h3 { color: #fff; margin-bottom: 10px; }
footer a, footer p { display: block; margin-bottom: 8px; line-height: 1.5; }
.fine {
  grid-column: 1 / -1;
  font-size: 12px;
  opacity: .7;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.page-hero { background: var(--navy); color: #e5e7eb; padding: 72px 8vw 48px; }
.page-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 56px); line-height: 1.1; margin: 10px 0 18px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 8vw;
}
.list { padding: 20px 8vw 80px; }
.list ul { max-width: 760px; color: var(--muted); line-height: 1.8; padding-left: 20px; }

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; padding: 12px 20px; }
  .nav nav { display: none; }
  .cards, .product, .counsel, .split, footer { grid-template-columns: 1fr; }
  .hero img { height: 50vh; }
}
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0b1220;
}

.hero img {
  width: 100%;
  height: 78vh;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.intro {
  position: relative;
  margin-top: -240px;
  padding: 0 8vw 48px;
  background: transparent;
}

.intro-copy {
  max-width: 620px;
  background: #0b1220;
  color: #e5e7eb;
  border-radius: 20px;
  padding: 40px 40px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: contain;
  background: #0b1220;
}
.intro {
  background: #0b1220;
  margin-top: 0;
  padding: 48px 8vw 64px;
}

.hero {
  margin-bottom: 0;
}

.intro-copy {
  margin-top: -240px;
  background: #0b1220;
  border: 1px solid rgba(196,165,116,.25);
}
.brand img {
  width: 92px;
  height: 92px;
  border-radius: 10px;
  object-fit: contain;
  background: #0b1220;
}
.q {
  max-width: 800px;
  padding: 40px 8vw 80px;
}

.q ol {
  color: #374151;
  line-height: 1.9;
  padding-left: 22px;
}

.q li {
  margin-bottom: 16px;
}
header.nav .brand img {
  width: 92px !important;
  height: 92px !important;
  border-radius: 10px !important;
  object-fit: contain !important;
  background: #0b1220 !important;
}
html, body {
  overflow-x: hidden;
}

.hero {
  width: 100vw;
  max-width: 100%;
  background: #0b1220;
}

.hero img {
  width: 100vw !important;
  max-width: none !important;
  height: 78vh !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  display: block;
}
.oa-quote {
  max-width: 720px;
  margin: 28px auto 0;
  padding: 28px 32px 24px;
  background: #f6f1e8;
  border: 1px solid #e4d9c8;
  border-left: 3px solid #c4a574;
}
.oa-quote blockquote {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: #1f2937;
  font-weight: 500;
}
.oa-quote cite {
  display: block;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6a55;
}
.oa-quote cite span {
  color: #c4a574;
  padding: 0 0.4em;
}
/* Hero type — tighter */
.intro-copy {
  max-width: 540px;
  padding: 28px 32px 26px;
}

.intro h1 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  margin: 8px 0 36px;
}

.intro p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.intro p.gold,
.intro p.gold.italic {
  font-size: 16px;
  line-height: 1.45;
  color: #c4a574;
}

@media (max-width: 900px) {
  .intro {
    padding: 24px 16px 40px;
  }
  .intro-copy {
    margin-top: -100px;
    padding: 22px 20px 20px;
  }
  .intro h1 {
    font-size: 26px;
    line-height: 1.15;
  }
  .intro p {
    font-size: 15px;
  }
}