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

:root {
  --sage: #7A9E87;
  --sage-light: #D4E4DA;
  --sage-dark: #4A6E57;
  --cream: #F7F4EE;
  --warm-white: #FDFCFA;
  --charcoal: #2C2C2A;
  --mid: #5F5E5A;
  --border: rgba(44,44,42,0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--warm-white);
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,252,250,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 400;
  color: var(--charcoal); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--sage-dark); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.nav-links a {
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mid);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-cta {
  font-size: 0.8rem; font-weight: 500;
  background: var(--sage-dark); color: #fff;
  padding: 0.5rem 1.25rem; border-radius: 2px;
  text-decoration: none; transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--sage); }

/* hamburger */
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 1.4rem; color: var(--charcoal); line-height: 1;
}
.nav-mobile { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-mobile.open {
    display: flex; flex-direction: column;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    gap: 0.75rem;
  }
  .nav-mobile a {
    font-size: 0.9rem; color: var(--charcoal);
    text-decoration: none; padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile a:last-child { border-bottom: none; }
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: var(--cream);
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage-dark);
  font-weight: 500; margin-bottom: 0.75rem;
}
.section-tag::before { content: '—'; margin-right: 0.5rem; opacity: 0.5; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.2;
  color: var(--charcoal);
}

/* ── MAIN CONTENT ── */
main { padding: 4rem 2rem; }
.content-inner { max-width: 1100px; margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: 0.6rem;
}
p { margin-bottom: 1rem; color: var(--mid); }
p:last-child { margin-bottom: 0; }
a { color: var(--sage-dark); }
ul, ol { padding-left: 1.5rem; color: var(--mid); margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }
strong { color: var(--charcoal); font-weight: 500; }

/* ── TWO COL ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}
.col-wide { grid-column: 1 / 2; }

/* ── CARDS ── */
.card {
  border: 1px solid var(--border); border-radius: 2px;
  padding: 1.75rem; background: var(--warm-white);
}
.card-green { background: var(--sage-light); border-color: transparent; }
.card-cream { background: var(--cream); border-color: var(--border); }

/* ── LABEL ── */
.label {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage-dark);
  font-weight: 500; margin-bottom: 0.4rem;
  display: block;
}

/* ── BLOCKQUOTE ── */
blockquote {
  border-left: 3px solid var(--sage);
  padding: 0.75rem 1.5rem; margin: 2rem 0;
  background: var(--sage-light);
}
blockquote p {
  font-family: var(--font-display);
  font-size: 1.1rem; font-style: italic;
  color: var(--charcoal); line-height: 1.6;
}

/* ── DIVIDER ── */
hr.section-hr {
  border: none; border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; border-radius: 2px; transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: var(--sage-dark); color: #fff; border: 2px solid var(--sage-dark); }
.btn-primary:hover { background: var(--sage); border-color: var(--sage); color: #fff; }
.btn-outline { background: transparent; color: var(--sage-dark); border: 2px solid var(--sage-dark); }
.btn-outline:hover { background: var(--sage-dark); color: #fff; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── INFO STRIP ── */
.info-strip {
  background: var(--charcoal);
  padding: 1.25rem 2rem;
}
.info-strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 3rem; flex-wrap: wrap; align-items: center;
}
.info-item .ilabel {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  display: block; margin-bottom: 0.15rem;
}
.info-item .ival {
  font-size: 0.88rem; color: rgba(255,255,255,0.82); font-weight: 400;
}

/* ── STEP LIST ── */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 300;
  color: var(--sage-dark); line-height: 1; padding-top: 0.2rem;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.35rem;
}
.step p { font-size: 0.9rem; margin-bottom: 0; }

/* ── TARIFF CARDS ── */
.tariff-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-bottom: 1.25rem;
}
@media (max-width: 500px) { .tariff-grid { grid-template-columns: 1fr; } }
.tariff-amount {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300;
  color: var(--charcoal); line-height: 1;
  margin: 0.5rem 0 0.35rem;
}
.tariff-sub { font-size: 0.82rem; color: var(--mid); }

/* ── RULE GRID ── */
.rule-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) { .rule-grid { grid-template-columns: 1fr; } }
.rule-card {
  border: 1px solid var(--border); border-radius: 2px;
  padding: 1.75rem; transition: border-color 0.2s;
}
.rule-card:hover { border-color: var(--sage); }
.rule-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  margin-bottom: 0.6rem;
}
.rule-card p { font-size: 0.87rem; margin-bottom: 1rem; }
.rule-link {
  font-size: 0.82rem; color: var(--sage-dark);
  text-decoration: none; font-weight: 500;
  border-bottom: 1px solid var(--sage-light); padding-bottom: 1px;
}
.rule-link:hover { border-color: var(--sage-dark); }

/* ── CONTACT GRID ── */
.contact-detail { border-top: 1px solid var(--border); padding: 0.9rem 0; }
.contact-detail:last-child { border-bottom: 1px solid var(--border); }
.contact-detail .ckey {
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 0.2rem;
}
.contact-detail .cval { font-size: 0.95rem; color: var(--charcoal); }
.contact-detail a { color: var(--sage-dark); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

/* ── DARK BLOCK ── */
.dark-block {
  background: var(--charcoal);
  border-radius: 2px; padding: 2rem;
  margin-top: 2rem;
}
.dark-block .ckey { color: rgba(255,255,255,0.4); }
.dark-block .cval { color: rgba(255,255,255,0.85); }
.dark-block .contact-detail { border-color: rgba(255,255,255,0.1); }
.dark-block a { color: var(--sage); }

/* ── PRIVACY PAGE ── */
.prose h2 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 500;
  color: var(--charcoal); margin-top: 2rem; margin-bottom: 0.5rem;
}
.prose p, .prose li { font-size: 0.95rem; }

/* ── PORTRAIT PLACEHOLDER ── */
.portrait {
  background: var(--sage-light); border-radius: 2px;
  aspect-ratio: 4/5; display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portrait-initials {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 300;
  color: var(--sage-dark); opacity: 0.3;
}
.portrait-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: var(--warm-white); padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--sage-dark);
  font-size: 0.88rem; color: var(--charcoal); line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: #1a1a18;
  padding: 2rem;
  margin-top: 0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ── SPACING UTILS ── */
.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; }
.mt3 { margin-top: 3rem; }
.mb1 { margin-bottom: 1rem; }
.mb2 { margin-bottom: 2rem; }
