/* ── Variables ── */
:root {
  --brown:  #261608;
  --brown2: #3a2010;
  --cream:  #F0E8D8;
  --cream2: #faf6f0;
  --gold:   #C4956A;
  --gold2:  #a87850;
  --text:   #3d2b1a;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream2);
  color: var(--text);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brown);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  border-bottom: 1px solid rgba(196,149,106,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; color: var(--cream); letter-spacing: 0.5px;
}
.nav-logo-text span:last-child {
  font-size: 0.55rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--cream); font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; opacity: 0.8; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.btn-nav {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold) !important; opacity: 1 !important;
  padding: 8px 20px; border-radius: 2px;
  font-size: 0.8rem !important; letter-spacing: 2px !important;
  transition: background 0.2s, color 0.2s !important;
}
.btn-nav:hover { background: var(--gold) !important; color: var(--brown) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); }

/* ── Hero ── */
#hero {
  background: var(--brown);
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 80px 5%;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,149,106,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,149,106,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; }
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-content h1 { color: var(--cream); margin-bottom: 1.5rem; }
.hero-content p {
  color: rgba(240,232,216,0.7); font-size: 1.1rem;
  max-width: 580px; margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 14px 32px; font-size: 0.85rem; letter-spacing: 2.5px;
  text-transform: uppercase; border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: var(--gold); color: var(--brown); }

/* ── Problem ── */
#problem {
  padding: 100px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.problem-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--brown); line-height: 1.35;
  border-left: 3px solid var(--gold); padding-left: 28px;
}
.problem-text p { color: #5a3e2b; font-size: 1.05rem; margin-bottom: 1rem; }

/* ── Services ── */
#services {
  background: var(--brown);
  padding: 100px 5%;
}
#services .section-header {
  text-align: center; margin-bottom: 60px;
}
#services .section-header h2 { color: var(--cream); }
#services .section-header p { color: rgba(240,232,216,0.6); margin-top: 0.75rem; font-size: 1rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,149,106,0.15);
  padding: 44px 36px;
  transition: background 0.25s, border-color 0.25s;
}
.service-card:hover {
  background: rgba(196,149,106,0.07);
  border-color: rgba(196,149,106,0.4);
}
.service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; }
.service-card h3 { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 0.5px; }
.service-card p { color: rgba(240,232,216,0.65); font-size: 0.95rem; line-height: 1.8; }
.service-tags { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(196,149,106,0.3); color: rgba(196,149,106,0.7);
  padding: 4px 10px; border-radius: 1px;
}

/* ── Founder ── */
#founder {
  padding: 100px 5%;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center;
}
.founder-label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.founder-stats { display: flex; flex-direction: column; gap: 28px; }
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem; color: var(--brown); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: #8a6a50; letter-spacing: 1px; margin-top: 4px; }
.founder-text h2 { color: var(--brown); margin-bottom: 1.25rem; }
.founder-text p { color: #5a3e2b; font-size: 1.05rem; margin-bottom: 1rem; }
.founder-divider { width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0; }

/* ── Who We Serve ── */
#who {
  background: var(--brown2);
  padding: 80px 5%; text-align: center;
}
#who h2 { color: var(--cream); margin-bottom: 50px; }
.who-grid {
  display: flex; justify-content: center; gap: 0;
  max-width: 900px; margin: 0 auto;
}
.who-card {
  flex: 1; padding: 40px 24px;
  border: 1px solid rgba(196,149,106,0.15);
}
.who-icon { font-size: 2rem; margin-bottom: 1rem; }
.who-card h3 { color: var(--gold); font-size: 1rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.who-card p { color: rgba(240,232,216,0.55); font-size: 0.88rem; }

/* ── Commitments ── */
#commitments {
  padding: 100px 5%;
  max-width: 1100px; margin: 0 auto;
}
.section-label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem; display: block;
}
#commitments h2 { color: var(--brown); margin-bottom: 50px; }
.commitments-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.commitment-card {
  background: var(--cream); border: 1px solid rgba(196,149,106,0.2);
  padding: 44px 40px;
}
.commitment-card h3 { color: var(--brown); margin-bottom: 0.75rem; }
.commitment-badge {
  display: inline-block; font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; background: var(--gold); color: var(--brown);
  padding: 3px 10px; margin-bottom: 1rem; border-radius: 1px;
}
.commitment-card p { color: #5a3e2b; font-size: 0.95rem; }

/* ── Contact ── */
#contact {
  background: var(--brown);
  padding: 100px 5%; text-align: center;
}
#contact h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
#contact p { color: rgba(240,232,216,0.6); margin-bottom: 2.5rem; font-size: 1.05rem; }
.contact-form {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,149,106,0.25);
  color: var(--cream); padding: 14px 18px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  border-radius: 2px; outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(240,232,216,0.35); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--gold); color: var(--brown);
  border: none; padding: 15px 32px;
  font-size: 0.85rem; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--gold2); }
.contact-alt {
  margin-top: 2.5rem; color: rgba(240,232,216,0.4); font-size: 0.9rem;
}
.contact-alt a { color: var(--gold); border-bottom: 1px solid rgba(196,149,106,0.3); }

/* ── Footer ── */
footer {
  background: #180e04;
  padding: 40px 5%;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(196,149,106,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 36px; }
.footer-logo span {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--cream); font-size: 1.1rem; opacity: 0.7;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(240,232,216,0.4); font-size: 0.8rem; letter-spacing: 1px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(240,232,216,0.25); font-size: 0.75rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  #problem { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  #founder { grid-template-columns: 1fr; gap: 50px; }
  .founder-stats { flex-direction: row; flex-wrap: wrap; }
  .who-grid { flex-direction: column; }
  .commitments-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--brown); padding: 20px 5%; gap: 1.2rem;
    border-top: 1px solid rgba(196,149,106,0.15);
  }
  .hamburger { display: flex; }
  nav { position: relative; }
}
