/* ===== The Only Life — shared styles ===== */
:root {
  --bg: #EDE0D8;
  --surface: #F6ECE5;
  --section: #E4D3C8;
  --ink: #2C2520;
  --muted: #6B5E55;
  --faint: #9A8B7F;
  --line: #DCC9BD;
  --accent: #B65E3C;
  --accent-hover: #9C4F31;
  --accent-ink: #FBF2EC;
  --dark: #2C2520;
  --dark-ink: #EFE0D8;
  --dark-muted: #C2AE9F;
  --radius: 10px;
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(182,94,60,0.22); }
img { display: block; }
a { color: inherit; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 1140px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
main { flex: 1; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 17px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-name { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.brand-sub { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  position: relative; color: var(--muted); font-size: 15px; padding: 6px 1px;
  text-decoration: none; transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--accent);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block; border: none; cursor: pointer; text-decoration: none;
  font-size: 15px; font-weight: 600; padding: 15px 28px; border-radius: var(--radius);
  font-family: var(--body); transition: background 0.15s, border-color 0.15s; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); }
.btn-on-dark { background: rgba(246,236,229,0.08); color: #F6ECE5; border: 1px solid rgba(246,236,229,0.45); }
.btn-on-dark:hover { background: rgba(246,236,229,0.16); }
.btn-sm { font-size: 14px; padding: 11px 22px; }

.eyebrow { font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

/* ---- Hero / full-bleed banners ---- */
.banner { position: relative; display: flex; }
.banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-overlay { position: absolute; inset: 0; }
.banner-inner { position: relative; max-width: 1140px; width: 100%; margin: 0 auto; }

.hero { min-height: 640px; align-items: center; }
.hero .banner-overlay { background: linear-gradient(100deg, rgba(44,37,32,0.82) 0%, rgba(44,37,32,0.66) 42%, rgba(44,37,32,0.30) 100%); }
.hero .banner-inner { padding: 96px 32px; }
.hero-content { max-width: 600px; }
.hero .eyebrow { color: var(--accent-ink); opacity: 0.82; margin: 0 0 24px; }
.hero h1 {
  font-family: var(--display); font-weight: 500; font-size: 62px; line-height: 1.02;
  margin: 0 0 26px; color: #F6ECE5; letter-spacing: -0.02em; text-wrap: balance;
}
.hero-lead { font-size: 18px; line-height: 1.62; color: rgba(246,236,229,0.9); max-width: 470px; margin: 0 0 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Services ---- */
.services { background: var(--section); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services .container { padding-top: 76px; padding-bottom: 76px; }
.section-title { font-family: var(--display); font-weight: 500; font-size: 36px; margin: 0 0 10px; color: var(--ink); letter-spacing: -0.01em; }
.section-intro { font-size: 16px; color: var(--muted); margin: 0 0 48px; max-width: 520px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.card-rule { display: block; width: 32px; height: 2px; background: var(--accent); }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 22px; margin: 20px 0 12px; color: var(--ink); }
.card p { font-size: 15px; line-height: 1.62; color: var(--muted); margin: 0; }

/* ---- Quote band ---- */
.quote-band { position: relative; }
.quote-band img { width: 100%; height: 480px; object-fit: cover; }
.quote-band .banner-overlay { background: linear-gradient(180deg, rgba(20,24,18,0.34), rgba(20,24,18,0.62)); }
.quote-band .quote-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 40px 32px; }
.quote-band blockquote { max-width: 760px; text-align: center; margin: 0; }
.quote-band p.quote {
  font-family: var(--display); font-weight: 500; font-size: 30px; line-height: 1.34;
  color: #F4ECE4; margin: 0; text-wrap: balance; letter-spacing: -0.01em;
}
.quote-band .cite { margin: 26px 0 0; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,236,228,0.72); font-weight: 600; }

/* ---- CTA strip ---- */
.cta-strip { background: var(--dark); }
.cta-strip .container { padding-top: 62px; padding-bottom: 62px; display: flex; gap: 28px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta-strip h2 { font-family: var(--display); font-weight: 500; font-size: 30px; color: var(--dark-ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.cta-strip p { font-size: 16px; color: var(--dark-muted); margin: 0; }

/* ---- About ---- */
.about .container { padding-top: 80px; padding-bottom: 40px; }
.about-grid { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.about-aside { flex: 1 1 300px; min-width: 280px; }
.about-aside img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; }
.glance { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.glance-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; }
.glance ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.glance li { display: flex; gap: 11px; font-size: 14px; color: var(--muted); }
.glance li::before { content: "\2022"; color: var(--accent); }
.about-body { flex: 2 1 440px; min-width: 320px; }
.about-body .eyebrow { color: var(--accent); margin: 0 0 18px; }
.about-body h1 { font-family: var(--display); font-weight: 500; font-size: 38px; line-height: 1.14; margin: 0 0 30px; color: var(--ink); letter-spacing: -0.02em; text-wrap: balance; }
.prose { font-size: 17px; line-height: 1.72; color: var(--ink); display: flex; flex-direction: column; gap: 20px; }
.prose p { margin: 0; }
.about-body h2 { font-family: var(--display); font-weight: 500; font-size: 26px; margin: 46px 0 18px; color: var(--ink); letter-spacing: -0.01em; }
.about-body h2 + p { font-size: 17px; line-height: 1.72; color: var(--ink); margin: 0; }
.about-actions { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; }

@media (min-width: 740px) {
  .about-aside { position: sticky; top: 96px; }
}

/* ---- FAQ ---- */
.faq-header { min-height: 420px; align-items: flex-start; }
.faq-header img { object-position: center 70%; }
.faq-header .banner-overlay { background: linear-gradient(180deg, rgba(28,23,20,0.66) 0%, rgba(28,23,20,0.34) 36%, rgba(28,23,20,0.12) 70%, rgba(28,23,20,0.45) 100%); }
.faq-header .banner-inner { padding: 56px 32px 0; text-align: center; }
.faq-header .eyebrow { color: var(--accent-ink); opacity: 0.85; margin: 0 0 14px; }
.faq-header h1 { font-family: var(--display); font-weight: 500; font-size: 50px; line-height: 1.04; margin: 0; color: #F6ECE5; letter-spacing: -0.02em; }

.faq-wrap { max-width: 800px; margin: 0 auto; padding: 56px 32px 40px; }
.faq-intro { font-size: 17px; line-height: 1.6; color: var(--muted); text-align: center; margin: 0 auto 44px; max-width: 520px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-family: var(--display); font-weight: 500; font-size: 21px; color: var(--ink); letter-spacing: -0.01em; }
.faq-icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line);
  color: var(--accent); font-size: 18px; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: transform 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 4px 28px; max-width: 660px; display: flex; flex-direction: column; gap: 15px; }
.faq-a p { font-size: 16px; line-height: 1.72; color: var(--muted); margin: 0; }

.faq-band { min-height: 520px; align-items: center; margin-top: 72px; }
.faq-band .banner-overlay { background: linear-gradient(260deg, rgba(28,23,20,0.84) 0%, rgba(28,23,20,0.62) 40%, rgba(28,23,20,0.14) 100%); }
.faq-band .banner-inner { padding: 72px 32px; display: flex; justify-content: flex-end; }
.faq-band-content { max-width: 440px; text-align: right; }
.faq-band-content p { font-family: var(--display); font-weight: 500; font-size: 32px; line-height: 1.2; margin: 0 0 26px; color: #F6ECE5; letter-spacing: -0.01em; }

/* ---- Contact ---- */
.contact-banner { min-height: 560px; align-items: center; }
.contact-banner .banner-overlay { background: linear-gradient(100deg, rgba(28,23,20,0.86) 0%, rgba(28,23,20,0.7) 46%, rgba(28,23,20,0.32) 100%); }
.contact-banner img { object-position: center 32%; }
.contact-banner .banner-inner { padding: 84px 32px; }
.contact-banner-content { max-width: 540px; }
.contact-banner .eyebrow { color: var(--accent-ink); opacity: 0.82; margin: 0 0 18px; }
.contact-banner h1 { font-family: var(--display); font-weight: 500; font-size: 50px; line-height: 1.04; margin: 0 0 22px; color: #F6ECE5; letter-spacing: -0.02em; }
.contact-lead { font-size: 17px; line-height: 1.7; color: rgba(246,236,229,0.9); margin: 0 0 40px; max-width: 440px; }
.contact-details { display: flex; gap: 48px; flex-wrap: wrap; }
.contact-details .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,236,229,0.55); margin: 0 0 7px; }
.contact-details .val { font-size: 17px; color: #F6ECE5; margin: 0; line-height: 1.5; }
.contact-details a { color: #F6ECE5; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.contact-form-wrap { max-width: 1140px; margin: 0 auto; padding: 72px 32px 40px; }
.contact-form-grid { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.contact-form-intro { flex: 1 1 320px; min-width: 280px; }
.contact-form-intro h2 { font-family: var(--display); font-weight: 500; font-size: 30px; line-height: 1.1; margin: 0 0 16px; color: var(--ink); letter-spacing: -0.01em; }
.contact-form-intro p { font-size: 16px; line-height: 1.7; color: var(--muted); max-width: 380px; }
.contact-form-intro p + p { margin-top: 16px; }
.contact-form-col { flex: 1 1 360px; min-width: 300px; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 34px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-field input, .form-field textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: 7px; padding: 13px 14px;
  font-size: 15px; color: var(--ink); font-family: var(--body);
}
.form-field textarea { resize: vertical; line-height: 1.5; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: 12px; color: var(--faint); margin: 2px 0 0; line-height: 1.5; }
.form-hp { position: absolute; left: -5000px; }
.form-success { text-align: center; padding: 30px 6px; }
.form-success .check { width: 54px; height: 54px; border-radius: 50%; background: var(--section); color: var(--accent); font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success h3 { font-family: var(--display); font-weight: 600; font-size: 26px; color: var(--ink); margin: 0 0 12px; }
.form-success p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; }

/* ---- Footer ---- */
.footer { background: var(--section); border-top: 1px solid var(--line); margin-top: 40px; }
.footer-top { max-width: 1140px; margin: 0 auto; padding: 50px 32px; display: flex; gap: 40px; justify-content: space-between; flex-wrap: wrap; }
.footer-blurb { max-width: 320px; }
.footer-name { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--ink); margin: 0 0 6px; }
.footer-blurb p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin: 0 0 2px; }
.footer-col a, .footer-col p { font-size: 14px; color: var(--muted); margin: 0; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-bar { border-top: 1px solid var(--line); }
.footer-bar-inner { max-width: 1140px; margin: 0 auto; padding: 20px 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bar p { font-size: 13px; color: var(--faint); margin: 0; }

/* ---- Responsive type ---- */
@media (max-width: 640px) {
  .hero h1 { font-size: 42px; }
  .contact-banner h1, .faq-header h1 { font-size: 38px; }
  .section-title { font-size: 30px; }
  .quote-band p.quote { font-size: 24px; }
  .faq-band-content p { font-size: 26px; }
}

/* ---- Responsive nav ---- */
@media (max-width: 600px) {
  .nav-inner { flex-wrap: wrap; padding: 14px 20px; row-gap: 13px; }
  .nav-links { margin-left: auto; gap: 22px; }
}
@media (max-width: 400px) {
  .nav-links { gap: 16px; }
  .nav-link { font-size: 14px; }
  .btn-sm { padding: 9px 15px; }
}
