/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:       #1a2d5a;
  --navy-dark:  #111e3c;
  --gold:       #b8920a;
  --gold-light: #d4ab2d;
  --ivory:      #f8f6f0;
  --slate:      #6b7280;
  --charcoal:   #2c2c2c;
  --white:      #ffffff;
  --border:     #e5e1d8;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;

  --header-h: 124px;
  --max-w:    1160px;
  --radius:   3px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

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

.eyebrow-light {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 171, 45, 0.9);
  margin-bottom: 18px;
  display: block;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-top: 8px; }
.section-sub {
  margin-top: 16px;
  color: var(--slate);
  font-size: 1rem;
  max-width: 520px;
}
.section-header.center .section-sub { margin: 16px auto 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-full { width: 100%; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(26,45,90,0.10); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 99px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
}
.main-nav a.nav-cta:hover { background: var(--navy-dark); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../brand assets/Background image.png') center center / cover no-repeat;
  padding-top: var(--header-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(17, 30, 60, 0.88) 0%,
    rgba(17, 30, 60, 0.72) 50%,
    rgba(17, 30, 60, 0.50) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 100px;
  max-width: 740px;
  width: 100%;
  align-self: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.84);
  max-width: 560px;
  margin-bottom: 42px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── PROMISE BAR ────────────────────────────────────────── */
.promise-bar {
  background: var(--navy);
  padding: 52px 0;
}
.promise-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.promise-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.promise-word {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.promise-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.promise-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { padding: 120px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 32px 64px rgba(26,45,90,0.14);
}
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-img-badge span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.about-content h2 { margin-bottom: 24px; }
.about-content p {
  color: var(--slate);
  margin-bottom: 18px;
  font-size: 0.97rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.a-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.a-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ─── WHAT WE BUY ────────────────────────────────────────── */
.what-we-buy {
  padding: 120px 0;
  background: var(--ivory);
}

.buy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.buy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.buy-card:hover {
  box-shadow: 0 20px 48px rgba(26,45,90,0.10);
  transform: translateY(-4px);
}

.buy-card-featured {
  border-color: var(--gold);
  border-width: 2px;
}
.buy-card-tag {
  position: absolute;
  top: -1px;
  left: 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.buy-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 22px;
}
.buy-card-icon svg { width: 100%; height: 100%; }

.buy-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}
.buy-card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ─── WHY US ─────────────────────────────────────────────── */
.why-us { padding: 120px 0; background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-inner .section-header { margin-bottom: 0; }
.why-inner .section-header h2 { margin-bottom: 18px; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.why-item {}
.why-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 10px;
}
.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.why-item p {
  font-size: 0.91rem;
  color: var(--slate);
  line-height: 1.7;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  margin-bottom: 10px;
}
.cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { padding: 120px 0; background: var(--ivory); }
.contact-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 18px; }
.contact-info p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.91rem;
  font-weight: 500;
  color: var(--charcoal);
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.contact-email::before {
  content: '✉';
  font-size: 1rem;
  color: var(--gold);
}
.contact-email:hover { color: var(--gold); }

.contact-bullets li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 16px 48px rgba(26,45,90,0.07);
}
.form-row { margin-bottom: 22px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field label {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,10,0.12);
}
.form-field textarea { resize: vertical; }

.form-disclosure {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--slate);
  line-height: 1.55;
}
.form-disclosure a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-disclosure a:hover { color: var(--gold); }

.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  text-align: center;
  min-height: 20px;
  color: var(--navy);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 56px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 78px;
  width: auto;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 4px;
}
.footer-brand p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.footer-nav {
  display: flex;
  gap: 36px;
}
.footer-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { gap: 48px; }
  .why-inner { gap: 48px; }
  .contact-inner { grid-template-columns: 1fr 1.4fr; gap: 48px; }
}

@media (max-width: 860px) {
  :root { --header-h: 88px; }
  .logo-img { height: 66px; }

  .about-inner,
  .why-inner,
  .contact-inner { grid-template-columns: 1fr; }

  .about-img-wrap img { height: 340px; }
  .about-img-badge { bottom: -16px; right: -10px; width: 90px; height: 90px; }

  .buy-cards { grid-template-columns: 1fr; max-width: 480px; }

  .why-inner .section-header { margin-bottom: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .cta-inner { flex-direction: column; text-align: center; align-items: center; }

  .promise-item { padding: 0 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: 0 8px 32px rgba(26,45,90,0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 24px;
    border-radius: 0;
    font-size: 0.85rem;
  }
  .main-nav a.nav-cta {
    margin: 12px 20px 0;
    text-align: center;
    border-radius: var(--radius);
    padding: 14px;
  }
  .nav-toggle { display: flex; }

  .hero-inner { padding: 60px 20px 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  .promise-grid { flex-direction: column; gap: 32px; }
  .promise-divider { width: 48px; height: 1px; }

  .about { padding: 80px 0; }
  .what-we-buy,
  .why-us,
  .contact { padding: 80px 0; }

  .why-grid { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 24px; }
  .form-row.two-col { grid-template-columns: 1fr; }

  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 20px 28px; }
}
