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

:root {
  --cream: #FDFBF7;
  --cream-warm: #F4EFE6;
  --cream-dark: #EBE4D6;
  --forest: #1A3328;
  --forest-light: #24493A;
  --forest-soft: #2D5A48;
  --gold: #B8962E;
  --gold-light: #D4B04A;
  --gold-dim: rgba(184, 150, 46, 0.12);
  --burgundy: #6B1D2A;
  --champagne: #C5B9A0;
  --text: #1A3328;
  --text-light: #4A5C53;
  --text-muted: #8B9B91;
  --border: rgba(26, 51, 40, 0.1);
  --border-strong: rgba(26, 51, 40, 0.18);
  --white: #ffffff;
  --radius: 4px;
  --max-width: 1100px;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest);
}

a { color: var(--forest); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-light); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-cta {
  background: var(--forest); color: var(--cream) !important;
  padding: 10px 22px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--forest-light); color: var(--cream) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--forest); font-size: 1.4rem; cursor: pointer; }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
}

/* ─── HERO ─── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
  content: ''; display: block;
  width: 32px; height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.15;
}
.hero h1 em { font-style: italic; }
.hero h1 strong { color: var(--gold); font-weight: 500; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-photo { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
  position: relative;
  width: 360px; height: 360px;
}
.hero-photo-frame img {
  width: 360px; height: 360px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  position: relative; z-index: 2;
  border: 5px solid var(--cream-warm);
  box-shadow: 0 24px 64px rgba(26, 51, 40, 0.18);
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: calc(100% + 20px); height: calc(100% + 20px);
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.35; z-index: 1;
}
.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  background: var(--gold-dim);
  border-radius: 50%; z-index: 0;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 868px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-photo { order: -1; }
  .hero-photo-frame { width: 280px; height: 280px; }
  .hero-photo-frame img { width: 280px; height: 280px; }
  .hero-actions { justify-content: center; }
  .hero-label { justify-content: center; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--forest-light); color: var(--cream); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* ─── DIVIDERS ─── */
.divider { max-width: var(--max-width); margin: 0 auto; border: none; border-top: 1px solid var(--border); }
.divider-gold { width: 48px; border: none; border-top: 2px solid var(--gold); margin: 0 auto 20px; }

/* ─── SECTIONS ─── */
.section { max-width: var(--max-width); margin: 0 auto; padding: 80px 32px; }
.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
.section h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 20px; font-weight: 400; }
.section > p, .section-intro { color: var(--text-light); max-width: 600px; font-size: 1rem; line-height: 1.8; }

/* ─── CARDS ─── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover { border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(26, 51, 40, 0.06); }
.card-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; color: var(--champagne); margin-bottom: 12px; line-height: 1; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.75; }
.card-tag { display: inline-block; margin-top: 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.card-accent { border-left: 3px solid var(--gold); }

/* ─── QUOTE BLOCK ─── */
.quote-block { background: var(--forest); color: var(--cream); padding: 80px 32px; text-align: center; }
.quote-block-inner { max-width: 680px; margin: 0 auto; }
.quote-block h2 { color: var(--cream); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; font-style: italic; margin-bottom: 24px; line-height: 1.5; }
.quote-block p { color: var(--champagne); font-size: 0.95rem; }

/* ─── CREDENTIALS ─── */
.credentials { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.credential { flex: 1; min-width: 200px; padding: 20px; padding-left: 20px; border-left: 2px solid var(--gold); background: var(--white); }
.credential h4 { font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--forest); margin-bottom: 4px; }
.credential p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── TWO COL ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ─── PRODUCT CARD (dark) ─── */
.product-card {
  background: var(--forest); color: var(--cream);
  border-radius: var(--radius); padding: 40px 36px;
}
.product-card h3 { color: var(--cream); }
.product-card p { color: var(--champagne); }
.product-card .price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 400; color: var(--cream); margin: 16px 0 4px; }
.product-card .price-note { font-size: 0.85rem; color: var(--champagne); }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; }
.pricing-card.featured { border-color: var(--gold); box-shadow: 0 4px 24px rgba(184, 150, 46, 0.12); }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 400; margin: 12px 0 4px; }
.pricing-card .price-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card p { font-size: 0.92rem; color: var(--text-light); }

/* ─── PROSE ─── */
.prose { max-width: 720px; margin: 0 auto; padding: 60px 32px 80px; }
.prose h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.prose .subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.prose h2 { font-size: 1.3rem; margin-top: 44px; margin-bottom: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.prose p, .prose li { color: var(--text-light); font-size: 0.96rem; margin-bottom: 14px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--forest); }
.prose a { color: var(--gold); }
.prose a:hover { color: var(--forest); }

/* ─── FORM ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--white); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 14px 16px; color: var(--text); font-family: 'Manrope', sans-serif; font-size: 0.92rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* ─── FOOTER ─── */
.footer { border-top: 1px solid var(--border); padding: 52px 32px; background: var(--cream-warm); }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; max-width: 280px; }
.footer h4 { font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-light); font-size: 0.9rem; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { max-width: var(--max-width); margin: 32px auto 0; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-bottom { flex-direction: column; gap: 8px; } .section { padding: 50px 20px; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── CTA SECTION ─── */
.cta-section { text-align: center; padding: 80px 32px; max-width: var(--max-width); margin: 0 auto; }
.cta-section h2 { font-style: italic; font-weight: 400; margin-bottom: 16px; }
.cta-section p { color: var(--text-light); max-width: 520px; margin: 0 auto 32px; font-size: 1.02rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { display: none; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
