/* ───────── self-hosted fonts ───────── */
@font-face { font-family: "Inter"; font-weight: 400; font-display: swap; src: url("../fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-display: swap; src: url("../fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-weight: 400; font-display: swap; src: url("../fonts/cormorant-400.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-weight: 700; font-display: swap; src: url("../fonts/cormorant-700.woff2") format("woff2"); }

:root {
  --brand-primary: #d8624f;
  --brand-primary-dark: #b54a3a;
  --brand-ink: #1a1614;
  --brand-graphite: #2c2825;
  --brand-mute: #6b6358;
  --brand-line: #e6dcc9;
  --brand-cream: #f7f2ea;
  --brand-cream-2: #efe8dc;
  --brand-white: #fdfbf6;
  --shadow-soft: 0 18px 40px -20px rgba(26,22,20,0.18);
  --shadow-pop:  0 28px 60px -24px rgba(26,22,20,0.35);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.18, 0.9, 0.32, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-weight: 400; color: var(--brand-ink); background: var(--brand-white); line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; cursor: default; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-primary); font-weight: 600; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--brand-primary); }
.headline { font-family: var(--serif); font-weight: 700; line-height: 1.04; letter-spacing: -0.012em; color: var(--brand-ink); }
.headline em { font-style: italic; color: var(--brand-primary); }
.lede { font-size: clamp(15px, 1.1vw, 17px); color: var(--brand-graphite); line-height: 1.65; max-width: 56ch; }

/* ───────── nav ───────── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(253,251,246,0.92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid rgba(0,0,0,0.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1240px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--brand-graphite); position: relative; padding: 4px 0; transition: color .25s var(--ease); }
.nav-links a:hover, .nav-links a.is-current { color: var(--brand-primary); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--brand-primary); transition: width .35s var(--ease); }
.nav-links a:hover::after, .nav-links a.is-current::after { width: 100%; }
.nav-links .has-sub { position: relative; }
.nav-links .submenu { position: absolute; top: 100%; left: -16px; min-width: 220px; background: var(--brand-white); border: 1px solid var(--brand-line); padding: 12px 0; border-radius: 6px; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .25s var(--ease); }
.nav-links .has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .submenu li { list-style: none; }
.nav-links .submenu a { display: block; padding: 8px 22px; font-size: 13.5px; }
.nav-links .submenu a:hover { background: var(--brand-cream); color: var(--brand-primary); }
.nav-links .submenu a::after { display: none; }

.cta { display: inline-flex; align-items: center; gap: 10px; background: var(--brand-ink); color: var(--brand-white); padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: transform .25s var(--ease), background .25s var(--ease); border: none; cursor: pointer; }
.cta:hover { background: var(--brand-primary); transform: translateY(-1px); }
.cta-ghost { background: transparent; color: var(--brand-ink); border: 1px solid var(--brand-ink); }
.cta-ghost:hover { background: var(--brand-ink); color: var(--brand-white); }

/* ───────── footer ───────── */
.footer { background: var(--brand-ink); color: rgba(247,242,234,0.7); padding: 64px 0 32px; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid h4 { font-family: var(--sans); font-weight: 600; color: var(--brand-white); margin-bottom: 14px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-grid a { display: block; padding: 4px 0; transition: color .2s; }
.footer-grid a:hover { color: var(--brand-primary); }
.footer-brand img { height: 32px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.94; }
.footer-brand p { line-height: 1.7; max-width: 36ch; opacity: 0.7; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(247,242,234,0.1); padding-top: 26px; font-size: 12px; }
.footer-bot a { color: rgba(247,242,234,0.8); transition: color .2s; }
.footer-bot a:hover { color: var(--brand-primary); }
.footer-note { font-style: italic; font-family: var(--serif); }

/* ───────── form ───────── */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.04em; color: var(--brand-mute); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--brand-line); background: var(--brand-white); padding: 12px 14px; font: inherit; color: var(--brand-ink); border-radius: 4px; transition: border-color .25s var(--ease); font-family: inherit; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-primary); }
.field textarea { min-height: 130px; resize: vertical; }

/* responsive */
@media (max-width: 900px) {
  .wrap { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-inner { padding: 14px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bot { flex-direction: column; gap: 12px; align-items: flex-start; }
}
