*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #7A9080;
  --primary-dark: #5D7468;
  --primary-light:#EDF2EF;
  --primary-mid:  #C8DDD0;
  --accent:       #C97A52;
  --bg:           #F8F5F1;
  --bg-subtle:    #F0EAE3;
  --bg-card:      #FDFCFB;
  --text:         #3A3028;
  --text-muted:   #877E77;
  --text-light:   #B0A9A2;
  --border:       #E3DDD6;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(58,48,40,0.07);
}

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Instrument Serif', Georgia, serif; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(248,245,241,0.88); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
nav.scrolled { border-color: var(--border); box-shadow: 0 1px 12px rgba(58,48,40,.06); }
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 28px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-pill { width: 38px; height: 20px; border-radius: 10px; overflow: hidden; display: flex; box-shadow: 0 2px 8px rgba(107,140,122,.3); flex-shrink: 0; }
.logo-pill-l { flex: 1; background: #6B8C7A; }
.logo-pill-r { flex: 1; background: #A8C5B0; }
.logo-name { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 20px; color: var(--primary-dark); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; font-family: 'Outfit', sans-serif; text-decoration: none; transition: all .2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(122,144,128,.35); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-subtle); color: var(--text); }

/* PAGE HERO */
.page-hero { background: var(--bg-subtle); border-bottom: 1px solid var(--border); padding: 120px 28px 72px; }
.page-hero--small { padding: 120px 28px 56px; }
.page-hero-inner { max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-style: italic; line-height: 1.1; letter-spacing: -.5px; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

/* SECTIONS */
section { padding: 80px 28px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-tag { display: inline-block; background: var(--primary-light); color: var(--primary-dark); padding: 4px 14px; border-radius: 100px; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
h2 { font-size: clamp(24px, 3.5vw, 38px); font-style: italic; line-height: 1.2; letter-spacing: -.3px; margin-bottom: 16px; }
h3 { font-size: 18px; font-weight: 600; font-family: 'Outfit', sans-serif; margin-bottom: 10px; color: var(--text); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.body-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 400; }
.centered-content { text-align: center; }
.section-divider { height: 1px; background: var(--border); margin: 0; }

/* ABOUT PAGE */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.value-cards { display: flex; flex-direction: column; gap: 16px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-big { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.stat-big-num { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 32px; color: var(--text); margin-bottom: 8px; }
.stat-big-label { font-size: 14px; color: var(--text-muted); font-weight: 400; }

/* CTA SECTION */
.cta-section { background: var(--primary-dark); padding: 72px 28px; color: white; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(168,197,176,.12) 0%, transparent 60%); }
.cta-section .section-inner { position: relative; }
.cta-section h2 { color: white; }
.btn-store-cta { display: inline-flex; align-items: center; gap: 12px; background: white; color: var(--text); padding: 14px 24px; border-radius: 14px; text-decoration: none; font-weight: 600; font-size: 15px; transition: all .2s; }
.btn-store-cta:hover { background: #f1ede8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-icon { font-size: 28px; margin-bottom: 10px; }
.contact-card-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.contact-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.contact-link { font-size: 14px; font-weight: 600; color: var(--primary-dark); text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-input { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: 15px; font-family: 'Outfit', sans-serif; color: var(--text); transition: border-color .2s; outline: none; appearance: none; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit { background: var(--primary); color: white; border: none; border-radius: 12px; padding: 14px 24px; font-size: 15px; font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: all .2s; }
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-success { background: var(--primary-light); color: var(--primary-dark); border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 500; }
.form-error { background: #fdf0f0; color: #9b2020; border-radius: 10px; padding: 12px 16px; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.form-error a { color: inherit; }

/* PRESS PAGE */
.prose-block { max-width: 720px; margin-bottom: 40px; }
.key-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 0; }
.key-fact { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.kf-label { display: block; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.kf-value { font-size: 15px; font-weight: 600; color: var(--text); }
.feature-list { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; max-width: 720px; }
.feature-list li { font-size: 16px; color: var(--text-muted); padding-left: 24px; position: relative; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 600; }

/* LEGAL PAGES */
.legal-content { max-width: 720px; }
.legal-block { margin-bottom: 36px; }
.legal-block p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-block a { color: var(--primary-dark); text-decoration: underline; }
.legal-list { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.legal-list li { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.legal-highlight { background: var(--primary-light); border: 1px solid var(--primary-mid); border-radius: 12px; padding: 16px 20px; font-size: 15px; color: var(--primary-dark); line-height: 1.7; margin-bottom: 36px; }
.legal-note { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px; font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-top: 36px; }

/* FOOTER */
footer { background: #2A221A; color: rgba(255,255,255,.55); padding: 48px 28px 28px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-pill { width: 34px; height: 18px; border-radius: 9px; overflow: hidden; display: flex; }
.footer-pill-l { flex: 1; background: #6B8C7A; opacity: .7; }
.footer-pill-r { flex: 1; background: #A8C5B0; opacity: .7; }
.footer-logo-name { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; color: rgba(255,255,255,.85); }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.45); text-decoration: none; font-size: 14px; padding: 3px 0; transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-links { display: flex; gap: 20px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .key-facts { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .stats-grid, .key-facts { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
