/* ═══ RESET & BASE ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --forest: #1E3328;
  --ink: #1A1A14;
  --gold: #B89A4E;
  --parchment: #F2EDE3;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--forest);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══ SKIP LINK ═══ */
.skip-link {
  position: absolute; top: -100%; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--forest);
  padding: 8px 24px; font-size: 14px; font-weight: 500;
  z-index: 1000; border-radius: 0 0 2px 2px;
}
.skip-link:focus { top: 0; }

/* ═══ HEADER / NAV ═══ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30, 51, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 154, 78, 0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-crest { width: 44px; height: 44px; flex-shrink: 0; display: block; }
.nav-wordmark {
  font-family: var(--serif); font-weight: 600; font-size: 15px;
  letter-spacing: 0.16em; color: var(--parchment);
}
.footer-logo-img { width: 220px; height: auto; margin-bottom: 24px; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242, 237, 227, 0.6); transition: color 0.3s;
}
.nav-links a:hover { color: var(--parchment); }
.nav-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--forest); background: var(--gold);
  padding: 10px 22px; border-radius: 2px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--parchment); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
}
.menu-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--parchment);
  position: absolute; left: 0; transition: all 0.3s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  background: var(--forest);
  padding-top: 72px;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px;
}
.hero-text { max-width: 560px; }
.hero-tagline {
  font-family: var(--sans); font-weight: 500; font-size: 13px;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.18em; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: 54px;
  color: var(--parchment); line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px; color: rgba(242, 237, 227, 0.85);
  line-height: 1.8; max-width: 540px; margin-bottom: 32px;
}
.btn-gold {
  display: inline-block;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  color: var(--forest); background: var(--gold);
  padding: 14px 32px; border-radius: 2px;
  transition: background 0.3s;
}
.btn-gold:hover { background: var(--parchment); }
.hero-microcopy {
  font-size: 13px; color: rgba(242, 237, 227, 0.6);
  font-style: italic; margin-top: 12px;
}
.hero-image { position: relative; }
.hero-image img {
  width: 100%; height: 620px; object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(184, 154, 78, 0.15);
}
.hero-image::after {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 1px solid rgba(184, 154, 78, 0.2);
  z-index: -1;
}

/* ═══ SECTIONS ═══ */
.positioning {
  background: var(--parchment);
  padding: 100px 40px;
  text-align: center;
}
.positioning-inner { max-width: 680px; margin: 0 auto; }
.diamond { color: var(--gold); font-size: 14px; margin-bottom: 32px; }
.positioning h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: 42px; font-style: italic;
  color: var(--forest); margin-bottom: 24px;
}
.positioning p {
  font-size: 17px; color: var(--forest);
  line-height: 1.8; margin-bottom: 20px;
}

.difference {
  background: var(--forest);
  padding: 100px 40px;
}
.difference-inner { max-width: 1000px; margin: 0 auto; }

.transition-quote {
  position: relative;
  padding: 120px 40px;
  background: var(--forest);
  overflow: hidden;
}
.transition-quote .bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.25;
}
.transition-quote .overlay {
  position: absolute; inset: 0;
  background: var(--forest); opacity: 0.6;
}
.transition-quote-inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  text-align: center;
}
.transition-quote blockquote {
  font-family: var(--serif); font-weight: 400;
  font-size: 36px; font-style: italic;
  color: var(--parchment); line-height: 1.4;
  margin-bottom: 20px;
}
.transition-quote cite {
  font-family: var(--sans); font-weight: 400;
  font-size: 14px; color: var(--gold);
  font-style: normal; letter-spacing: 0.06em;
}

.about-preview {
  background: var(--parchment);
  padding: 40px 40px 100px;
}

.cta-section {
  background: var(--forest);
  padding: 120px 40px;
  text-align: center;
}
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: 42px; font-style: italic;
  color: var(--parchment); margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px; color: rgba(242, 237, 227, 0.85);
  line-height: 1.8; margin-bottom: 32px;
}

/* ═══ FAQ ═══ */
.faq { background: var(--parchment); padding: 100px 40px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: 36px; color: var(--forest);
  text-align: center; margin-bottom: 48px;
}
.faq-item { border-bottom: 1px solid rgba(184, 154, 78, 0.3); }
.faq-item:first-of-type { border-top: 1px solid rgba(184, 154, 78, 0.3); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: var(--serif); font-weight: 500;
  font-size: 20px; color: var(--forest);
}
.faq-question .icon {
  font-family: var(--sans); font-size: 18px;
  color: var(--gold); flex-shrink: 0; margin-left: 20px;
  transition: transform 0.3s;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 16px; color: rgba(30, 51, 40, 0.85); line-height: 1.8; padding: 0 0 24px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 500px; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--ink); padding: 64px 40px 32px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 500;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col a {
  font-size: 14px; color: rgba(242, 237, 227, 0.7);
  line-height: 2.2; transition: color 0.3s;
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(242, 237, 227, 0.1);
  font-size: 12px; color: rgba(242, 237, 227, 0.4);
}

/* ═══ MOBILE MENU ═══ */
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 99;
  padding: 40px;
  flex-direction: column;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(242, 237, 227, 0.7);
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 154, 78, 0.1);
}
.mobile-menu a:hover { color: var(--parchment); }
.mobile-menu .mobile-cta {
  margin-top: 24px;
  text-align: center;
  background: var(--gold); color: var(--forest);
  padding: 14px 32px; border-radius: 2px;
  border-bottom: none;
}

/* ═══════════════════════════════════════ */
/* RESPONSIVE — MOBILE FIRST OVERRIDES   */
/* Uses !important to beat inline styles */
/* ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner { display: block !important; max-width: 800px !important; }
  .hero-text { max-width: 100% !important; text-align: center !important; }
  .hero h1 { font-size: 42px !important; max-width: 100% !important; margin: 0 auto 24px !important; }
  .hero-sub { max-width: 100% !important; margin: 0 auto 32px !important; }
  .hero-image { display: none !important; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }

  /* Kill ALL multi-column grids inside sections */
  .positioning-inner div[style],
  .difference-inner div[style],
  section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-wordmark { display: none; }
  .menu-toggle { display: block; }

  /* Hero */
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { padding: 48px 20px !important; max-width: 100% !important; }
  .hero-text { text-align: center !important; }
  .hero h1 { font-size: 30px !important; line-height: 1.2 !important; }
  .hero-sub { font-size: 16px !important; }
  .hero-image { display: none !important; }

  /* Sections */
  .positioning { padding: 60px 20px; }
  .positioning-inner { max-width: 100% !important; }
  .positioning h2 { font-size: 26px !important; }
  .difference { padding: 60px 20px; }
  .difference-inner { max-width: 100% !important; }
  .transition-quote { padding: 60px 20px; }
  .transition-quote blockquote { font-size: 22px !important; }
  .about-preview { padding: 40px 20px 60px !important; }
  .cta-section { padding: 60px 20px; }
  .cta-section h2 { font-size: 26px !important; }

  /* FAQ */
  .faq { padding: 60px 20px; }
  .faq-inner { max-width: 100% !important; }
  .faq h2 { font-size: 26px !important; }
  .faq-question { font-size: 17px; }

  /* Footer */
  .site-footer { padding: 48px 20px 24px; }
  .footer-inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-logo-img { width: 150px !important; }

  /* ═══ NUCLEAR MOBILE OVERRIDES ═══ */
  /* Force ALL inline grid layouts to single column */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Force all section content to respect mobile padding */
  section [style*="max-width:1100px"],
  section [style*="max-width:1000px"],
  section [style*="max-width: 1100px"],
  section [style*="max-width: 1000px"] {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Force images to reasonable mobile height */
  section img[style*="height:520px"],
  section img[style*="height: 520px"],
  section img[style*="height:400px"],
  section img[style*="height: 400px"] {
    height: 280px !important;
  }

  /* Contact form inputs */
  input, select, textarea { font-size: 16px !important; }

  /* Prevent text overflow */
  h1, h2, h3, p, blockquote { overflow-wrap: break-word; word-wrap: break-word; }
}

/* ═══ ANIMATIONS ═══ */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}
