@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --navy: #0D1B2E;
  --navy-mid: #162440;
  --navy-dark: #080F1A;
  --cream: #F4EFE4;
  --warm-white: #FAF8F4;
  --gold: #A8820A;
  --gold-light: #C9A832;
  --ivory: #E8E0CC;
  --text-dark: #1A1A18;
  --text-medium: #4A4440;
  --text-muted: #6B6560;
  --text-light: #A09080;
  --rule-color: #D4C9A8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
}

img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

.eyebrow {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-light); }
.eyebrow--muted { color: var(--text-muted); }

.gold-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-link:hover { color: var(--gold); }
.cta-link--light { color: var(--ivory); border-bottom-color: var(--gold-light); }
.cta-link--light:hover { color: var(--gold-light); }

/* ── NAVIGATION ── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 72px;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: var(--navy);
  border-bottom-color: rgba(168,130,10,0.2);
}
.site-nav.solid {
  background: var(--navy);
  border-bottom-color: rgba(168,130,10,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EDE5D0;
  text-decoration: none;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.nav-logo span {
  display: block;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  font-weight: 400;
  font-style: normal;
  margin-top: 3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,224,204,0.88);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta {
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(201,168,50,0.35);
  padding: 7px 20px;
  transition: border-color 0.2s !important;
}
.nav-cta:hover { border-color: var(--gold-light) !important; }

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,15,26,0.88) 0%,
    rgba(8,15,26,0.42) 45%,
    rgba(8,15,26,0.18) 100%
  );
  z-index: 0;
}
/* Top vignette keeps nav readable over any photo */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(8,15,26,0.72) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 4.5rem 5.5rem;
  max-width: 760px;
}
.hero-headline {
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 400;
  color: #F0E8D4;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: #FAF8F4; }
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(200,185,150,0.82);
  max-width: 460px;
  font-style: italic;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3.5rem;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168,130,10,0.5);
  font-family: 'EB Garamond', Georgia, serif;
}

/* ── PAGE HEADER (interior pages) ── */

.page-header {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-top: 72px;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,15,26,0.90) 0%,
    rgba(8,15,26,0.48) 55%,
    rgba(8,15,26,0.22) 100%
  );
}
.page-header-content {
  position: relative;
  z-index: 1;
  padding: 0 4.5rem 3.5rem;
}
.page-title {
  font-size: clamp(42px, 5.5vw, 68px);
  color: #F0E8D4;
  margin-top: 0.75rem;
  max-width: 600px;
}
.page-title em { font-style: italic; color: #FAF8F4; }

/* ── EDITORIAL SPLITS ── */

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.section-split--reverse { }
.section-split--reverse .split-image { order: 2; }
.section-split--reverse .split-copy { order: 1; }

.split-image {
  background-size: cover;
  background-position: center;
  min-height: 560px;
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 4rem;
}
.split-copy--cream { background: var(--cream); }
.split-copy--navy { background: var(--navy-mid); }
.split-copy--dark { background: var(--navy); }
.split-copy--white { background: var(--warm-white); }

.split-copy--navy .eyebrow,
.split-copy--dark .eyebrow { color: var(--gold-light); }
.split-copy--navy .section-headline,
.split-copy--dark .section-headline { color: #EDE5D0; }
.split-copy--navy .section-body,
.split-copy--dark .section-body { color: #9A8E80; }
.split-copy--navy .gold-rule,
.split-copy--dark .gold-rule { background: rgba(201,168,50,0.45); }
.split-copy--navy .stat-num,
.split-copy--dark .stat-num { color: #EDE5D0; }
.split-copy--navy .stat-label,
.split-copy--dark .stat-label { color: rgba(155,140,120,0.75); }
.split-copy--navy .stats-row,
.split-copy--dark .stats-row { border-top-color: rgba(168,130,10,0.2); }

.section-headline {
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--navy);
  margin-bottom: 1.25rem;
  max-width: 400px;
}
.section-headline em { font-style: italic; }
.section-body {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-medium);
  max-width: 430px;
  margin-bottom: 1.75rem;
}

/* ── STATS ── */

.stats-row {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--rule-color);
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── BAND (thin full-width strip) ── */

.band {
  padding: 3rem 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--warm-white);
  border-top: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
}
.band-pill {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 7px 18px;
  white-space: nowrap;
}

/* ── SURFACES GRID ── */

.surfaces-section {
  background: var(--cream);
  padding: 5rem 4.5rem;
}
.surfaces-intro { max-width: 1200px; margin: 0 auto; }
.surfaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-color);
  max-width: 1200px;
  margin: 3rem auto 0;
}
.surface-item {
  background: var(--cream);
  padding: 0 0 1.5rem;
}
.surface-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
}
.surface-caption {
  padding: 1rem 1.5rem 0;
}
.surface-name {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.surface-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-medium);
}

/* ── PROTECTS AGAINST ── */

.protects-section {
  background: var(--navy);
  padding: 5rem 4.5rem;
  text-align: center;
}
.protects-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  max-width: 700px;
  margin: 2.5rem auto 0;
}
.protect-item {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(168,130,10,0.65);
}

/* ── TESTIMONIALS ── */

.testimonials {
  background: var(--navy-dark);
  padding: 5rem 4.5rem;
}
.testimonials-intro { max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.testimonial-card {
  padding: 2rem 1.75rem;
  border: 1px solid rgba(168,130,10,0.18);
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.78;
  color: #9A8E80;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-attr {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── FAQ ── */

.faq-section {
  background: var(--cream);
  padding: 5rem 4.5rem;
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--rule-color);
  padding: 1.75rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule-color); }
.faq-q {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.faq-a {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.72;
  max-width: 640px;
}

/* ── CONTENT PROSE ── */

.prose-section {
  padding: 5rem 4.5rem;
  background: var(--warm-white);
}
.prose-inner { max-width: 840px; }
.prose-section h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.prose-section h2 em { font-style: italic; }
.prose-section p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  max-width: 660px;
}
.prose-section .lead {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── MILEAGE CALLOUT ── */

.miles-callout {
  background: var(--navy);
  padding: 4rem 4.5rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.miles-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(60px, 7vw, 90px);
  font-weight: 400;
  color: #EDE5D0;
  line-height: 1;
  white-space: nowrap;
}
.miles-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.75rem;
}
.miles-text {
  font-size: 17px;
  line-height: 1.72;
  color: #9A8E80;
  max-width: 480px;
  font-style: italic;
}

/* ── CONTACT ── */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}
.contact-info {
  background: var(--navy);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h2 {
  font-size: 38px;
  color: #EDE5D0;
  margin-bottom: 3rem;
}
.contact-info h2 em { font-style: italic; }
.contact-detail { margin-bottom: 1.75rem; }
.contact-detail .detail-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 5px;
}
.contact-detail .detail-value {
  font-size: 17px;
  color: #C8B890;
  line-height: 1.55;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.contact-detail a.detail-value:hover { color: var(--gold-light); }
.brokerage-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168,130,10,0.18);
  font-size: 15px;
  color: #9A8E7A;
  font-style: italic;
  line-height: 1.65;
}

.contact-form {
  background: var(--cream);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.contact-form h2 em { font-style: italic; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 11px 14px;
  background: var(--warm-white);
  border: 1px solid var(--rule-color);
  border-radius: 0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-textarea { min-height: 130px; resize: vertical; }

.btn-submit {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #EDE5D0;
  background: var(--navy);
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--navy-mid); }

/* ── FOOTER ── */

.site-footer {
  background: var(--navy);
  padding: 3.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  border-top: 1px solid rgba(168,130,10,0.18);
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #9A8E7A;
  margin-bottom: 0.75rem;
}
.footer-address {
  font-size: 13px;
  line-height: 1.75;
  color: #7A6E5C;
}
.footer-address a { color: #7A6E5C; text-decoration: none; }
.footer-address a:hover { color: var(--gold-light); }

.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A6E5C;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-right { text-align: right; }
.footer-note { font-size: 14px; color: #7A6E5C; font-style: italic; line-height: 1.65; margin-bottom: 0.5rem; }
.footer-email { font-size: 13px; }
.footer-email a { color: #7A6E5C; text-decoration: none; }
.footer-email a:hover { color: var(--gold-light); }

.footer-bottom {
  background: var(--navy-dark);
  padding: 1rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-copy { font-size: 11px; color: #6A5E50; letter-spacing: 0.08em; }

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .surfaces-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .section-split { grid-template-columns: 1fr; }
  .section-split--reverse .split-image { order: 0; }
  .section-split--reverse .split-copy { order: 0; }
  .split-image { min-height: 320px; }
  .split-copy { padding: 3rem 2rem; }

  .hero-content { padding: 0 2rem 4rem; }
  .hero-headline { font-size: 58px; }
  .hero::before { background: linear-gradient(to top, rgba(8,15,26,0.92) 0%, rgba(8,15,26,0.55) 50%, rgba(8,15,26,0.3) 100%); }
  .hero-scroll { display: none; }

  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }

  .page-header-content { padding: 0 2rem 2.5rem; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .surfaces-grid { grid-template-columns: 1fr; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 3rem 2rem; min-height: 0; }

  .site-footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .band { flex-direction: column; align-items: flex-start; padding: 2.5rem 2rem; }
  .surfaces-section, .protects-section, .testimonials, .faq-section, .prose-section { padding: 3rem 2rem; }
  .miles-callout { flex-direction: column; gap: 1.5rem; padding: 3rem 2rem; }
}
