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

:root {
  --brand: #c6613f;
  --brand-d: #a84e2e;
  --brand-l: #e8846a;
  --gold: #d4a84b;
  --cream: #faf7f4;
  --off: #f4f0eb;
  --dark: #1a1714;
  --mid: #6b6460;
  --light-mid: #9e9591;
  --border: #e5ddd6;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.1; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

.max-w { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.max-w-sm { max-width: 800px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 6px; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none;
  transition: all .25s; font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,97,63,.35); }
.btn-outline { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-white { background: #fff; color: var(--brand); border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── TAGS / LABELS ───────────────────────────────────── */
.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); display: inline-block; margin-bottom: 14px; }
.eyebrow-mid { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); display: inline-block; margin-bottom: 14px; }

/* ── SECTION LAYOUT ──────────────────────────────────── */
.section { padding: 88px 32px; }
.section-cream { padding: 88px 32px; background: var(--cream); }
.section-off { padding: 88px 32px; background: var(--off); }

.section-header { max-width: 600px; margin-bottom: 56px; }
.section-header.center { text-align: center; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.9rem); margin-bottom: 16px; }
.section-header p { font-size: 1rem; color: var(--mid); line-height: 1.75; }

/* ── ORANGE STRIP ────────────────────────────────────── */
.strip { background: var(--brand); padding: 44px 32px; }
.strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.strip h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: #fff; }
.strip p { font-size: .95rem; color: rgba(255,255,255,.75); margin-top: 6px; }

/* ── NAV ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-mark { width: 40px; height: 40px; background: var(--brand); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.nav-logo-text { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.nav-logo-text span { color: var(--brand); }
.nav-logo-sub { font-size: .68rem; color: var(--mid); letter-spacing: .05em; font-family: 'DM Sans', sans-serif; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
  font-size: .875rem; font-weight: 500; color: var(--mid);
  padding: 8px 14px; border-radius: 6px; transition: all .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--brand); background: rgba(198,97,63,.06); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 20px 32px 28px; z-index: 199; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: .95rem; font-weight: 500; color: var(--mid); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 72px 32px 36px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 36px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 28px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--brand-l); fill: none; flex-shrink: 0; }
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 700;
  transition: all .2s;
}
.footer-social-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--brand-l); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }
.footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.28); transition: color .2s; }
.footer-bottom a:hover { color: var(--brand-l); }

/* ── PAGE HERO BANNER ────────────────────────────────── */
.page-hero { padding: 140px 32px 80px; background: var(--cream); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 480px; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(198,97,63,.06) 100%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-inner .eyebrow { margin-bottom: 12px; }
.page-hero-inner h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; max-width: 700px; }
.page-hero-inner p { font-size: 1.1rem; color: var(--mid); line-height: 1.75; max-width: 580px; }

/* ── REVEAL ANIMATION ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .section, .section-cream, .section-off { padding: 60px 20px; }
  .max-w, .max-w-sm { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 120px 20px 60px; }
}
@media (max-width: 480px) {
  .strip-inner { flex-direction: column; text-align: center; }
}
