:root {
  --bg: #faf7f3;
  --paper: #ffffff;
  --warm: #f2ebe2;
  --warm-deep: #e7ddd0;
  --ink: #442211;
  --ink-mid: #5b4433;
  --ink-mute: #8a7563;
  --rule: #ddd2c4;
  --rule-soft: #eae2d6;
  --accent: #2563eb;
  --accent-deep: #1d4ed8;
  --dark: #2b1408;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-mid);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: rgba(37,99,235,0.35); }
a:hover { color: var(--accent); text-decoration-color: var(--accent); }
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
p { margin: 0 0 16px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

/* ---------- Buttons: one fill, one ghost ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.hero .btn-ghost, .quote-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.45); }
.hero .btn-ghost:hover, .quote-band .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Labels ---------- */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 400;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; flex: none; }

/* ---------- Header ---------- */
header.site { border-bottom: 1px solid var(--rule); background: var(--paper); position: sticky; top: 0; z-index: 50; }
.head-row {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 16px 36px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 38px; width: auto; display: block; }
.brand-text {
  font-family: 'Inter', sans-serif; font-size: 11.5px; color: var(--ink-mute);
  line-height: 1.4; border-left: 1px solid var(--rule); padding-left: 14px;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.brand-text b { display: block; color: var(--ink); font-weight: 500; }
nav.primary { display: flex; gap: 24px; align-items: center; font-size: 13px; font-weight: 500; }
nav.primary a { color: var(--ink); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; letter-spacing: 0.02em; }
nav.primary a:hover { border-bottom-color: var(--ink); }
nav.primary a.active { border-bottom-color: var(--accent); color: var(--accent-deep); }
nav.primary .nav-cta {
  background: var(--accent); color: #fff; padding: 11px 18px; border-radius: 2px; border: none;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
}
nav.primary .nav-cta:hover { background: var(--accent-deep); border: none; }
.menu-btn { display: none; }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--dark) url('../img/stock-0.jpg') center / cover no-repeat;
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,13,4,0.62) 0%, rgba(28,13,4,0.48) 55%, rgba(28,13,4,0.72) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 90px 36px; width: 100%; }
.hero .eyebrow { color: rgba(255,255,255,0.78); }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 62px);
  max-width: 20ch;
  margin-bottom: 24px;
}
.hero p.lead { font-size: 18.5px; color: rgba(255,255,255,0.88); max-width: 54ch; margin: 0 0 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 56px; }

.hero-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
}
.hero-card a {
  display: block; text-decoration: none; color: inherit;
  padding: 28px 30px; border-right: 1px solid var(--rule-soft);
  transition: background 0.2s ease;
}
.hero-card a:last-child { border-right: none; }
.hero-card a:hover { background: var(--bg); }
.hero-card .num { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); font-weight: 500; margin-bottom: 10px; }
.hero-card h3 { font-size: 21px; margin-bottom: 8px; }
.hero-card p { font-size: 14px; color: var(--ink-mid); margin: 0 0 12px; line-height: 1.5; }
.hero-card .go { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-weight: 500; }
.hero-card a:hover .go { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

/* ---------- Proof line ---------- */
.proof-line {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 22px 36px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.proof-line span { padding: 0 14px; border-right: 1px solid var(--rule); }
.proof-line span:last-child { border-right: none; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
.section-head { max-width: var(--max); margin: 0 auto 56px; padding: 0 36px; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); max-width: 24ch; }
.section-head p { color: var(--ink-mute); max-width: 40ch; font-size: 15.5px; margin: 0; }

/* Path cards (home services) */
.paths { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.path-grid { max-width: var(--max); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(3, 1fr); }
.path-card {
  padding: 38px 32px; border-top: 1px solid var(--rule); border-right: 1px solid var(--rule);
  background: var(--paper); display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: background 0.2s ease; border-bottom: 1px solid var(--rule);
}
.path-card:last-child { border-right: none; }
.path-card:hover { background: var(--bg); }
.path-num { font-family: 'Fraunces', serif; font-size: 13px; color: var(--ink-mute); margin-bottom: 14px; letter-spacing: 0.1em; }
.path-card h3 { font-size: 24px; margin-bottom: 6px; }
.path-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent-deep); margin-bottom: 16px; font-weight: 500; }
.path-card p { font-size: 15px; color: var(--ink-mid); line-height: 1.55; margin-bottom: 24px; flex-grow: 1; }
.path-link { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink-mute); padding-bottom: 3px; align-self: flex-start; font-weight: 500; }
.path-card:hover .path-link { border-bottom-color: var(--accent); color: var(--accent-deep); }

/* Steps */
.steps { background: var(--bg); }
.step-grid { max-width: var(--max); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { border-top: 2px solid var(--ink); padding-top: 22px; }
.step .s-num { font-family: 'Fraunces', serif; font-size: 15px; color: var(--accent-deep); margin-bottom: 12px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; margin: 0; line-height: 1.55; }

/* About teaser / text blocks */
.about-band { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.about-grid h2 { font-size: clamp(28px, 3.4vw, 44px); }
.about-grid .body p { font-size: 17px; color: var(--ink-mid); }
.signature { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--rule); font-family: 'Fraunces', serif; font-size: 17px; color: var(--ink); text-transform: none; letter-spacing: 0; }

/* Dark quote / principle band */
.quote-band { background: var(--dark); color: #e9ddcf; padding: 96px 0; }
.quote-inner { max-width: 880px; margin: 0 auto; padding: 0 36px; text-align: center; }
.quote-band .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: #a98e76; margin-bottom: 26px; }
.quote-band .big {
  font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35; color: #f6efe4; margin: 0 0 32px;
}
.quote-band cite { display: block; font-style: normal; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #a98e76; }

/* Contact band */
.contact-band { background: var(--warm); }
.contact-inner { max-width: 960px; margin: 0 auto; padding: 0 36px; text-align: center; }
.contact-inner h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 20px; }
.contact-inner p.lead { font-size: 17.5px; color: var(--ink-mid); max-width: 52ch; margin: 0 auto 38px; }
.contact-card { background: var(--paper); border: 1px solid var(--rule); padding: 8px; display: inline-flex; align-items: stretch; flex-wrap: wrap; text-align: left; }
.contact-card .field { padding: 18px 30px; border-right: 1px solid var(--rule); min-width: 220px; }
.contact-card .field:last-of-type { border-right: none; }
.contact-card .k { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-mute); margin-bottom: 6px; font-weight: 400; }
.contact-card .v { font-family: 'Fraunces', serif; font-size: 20px; color: var(--ink); }
.contact-card .v a { color: var(--ink); text-decoration: none; }
.contact-card .v a:hover { color: var(--accent-deep); }
.contact-cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Interior page hero ---------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--rule); padding: 84px 0 64px; }
.page-hero h1 { font-size: clamp(32px, 4.2vw, 56px); max-width: 22ch; margin-bottom: 22px; }
.page-hero p.lead { font-size: 18px; color: var(--ink-mid); max-width: 56ch; margin: 0; }
.page-hero .hero-actions { margin: 32px 0 0; }

/* ---------- Forms ---------- */
.form-panel { background: var(--paper); border: 1px solid var(--rule); padding: 44px 44px 40px; max-width: 760px; margin: 0 auto; }
.form-panel h2 { font-size: 24px; margin-bottom: 8px; }
.form-panel .sub { font-size: 14.5px; color: var(--ink-mute); margin-bottom: 30px; }
.ms-progress { margin-bottom: 30px; }
.ms-count { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 10px; }
.ms-bar { height: 2px; background: var(--rule-soft); }
.ms-bar i { display: block; height: 2px; background: var(--accent); width: 0; transition: width 0.3s ease; }
.ms-step { display: none; border: none; padding: 0; margin: 0; }
.ms-step.active { display: block; }
.ms-step legend { font-family: 'Fraunces', serif; font-size: 21px; color: var(--ink); margin-bottom: 18px; padding: 0; text-transform: uppercase; letter-spacing: 0.04em; }
.opt { display: block; border: 1px solid var(--rule); padding: 14px 18px; cursor: pointer; margin-bottom: 10px; font-size: 15px; color: var(--ink-mid); transition: border-color 0.15s ease, background 0.15s ease; }
.opt:hover { border-color: var(--ink-mute); }
.opt input { margin-right: 12px; accent-color: var(--accent); }
.opt:has(input:checked) { border-color: var(--accent); background: #f4f7ff; color: var(--ink); }
.field-row { margin-bottom: 18px; }
.field-row label { display: block; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; font-weight: 400; }
.field-row input, .field-row select, .field-row textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--rule); background: var(--bg);
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink); border-radius: 2px;
}
.field-row input:focus, .field-row select:focus, .field-row textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
.field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ms-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }
.form-success { background: var(--paper); border: 1px solid var(--rule); border-top: 2px solid var(--accent); padding: 48px 44px; max-width: 760px; margin: 0 auto; text-align: center; }
.form-success h3 { font-size: 24px; margin-bottom: 12px; }
.form-success p { font-size: 15.5px; color: var(--ink-mid); margin: 0 auto 22px; max-width: 46ch; }

/* ---------- Reviews ---------- */
.review-band { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.review-grid { max-width: var(--max); margin: 0 auto; padding: 0 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: start; }
.review-grid h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 18px; }
.review-grid p { font-size: 16px; }

/* ---------- Blog ---------- */
.post-list { max-width: 880px; margin: 0 auto; padding: 0 36px; }
.post { display: block; text-decoration: none; color: inherit; padding: 34px 0; border-bottom: 1px solid var(--rule); }
.post:first-child { border-top: 1px solid var(--rule); }
.post .p-meta { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; font-weight: 500; }
.post h3 { font-size: 24px; margin-bottom: 10px; transition: color 0.15s ease; }
.post:hover h3 { color: var(--accent-deep); }
.post p { font-size: 15.5px; color: var(--ink-mid); margin: 0 0 12px; max-width: 64ch; }
.post .p-read { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink-mute); padding-bottom: 3px; font-weight: 500; }
.blog-note { max-width: 880px; margin: 48px auto 0; padding: 0 36px; font-size: 13.5px; color: var(--ink-mute); }

/* ---------- Footer ---------- */
footer.site { background: var(--dark); color: #b9a48e; padding: 72px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.foot-brand img { height: 44px; width: auto; margin-bottom: 16px; display: block; background: #fff; padding: 6px 10px; border-radius: 2px; }
.foot-brand p { font-size: 14px; color: #9c8771; max-width: 280px; line-height: 1.55; margin: 0 0 18px; }
.foot-brand .small { font-size: 12px; color: #7d6a55; }
footer h4 { font-family: 'Inter', sans-serif; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.16em; color: #f1e7d8; font-weight: 400; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 2; }
footer ul a { color: #b9a48e; text-decoration: none; }
footer ul a:hover { color: #f1e7d8; }
.foot-social { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.social-link { display: inline-flex; align-items: center; gap: 10px; color: #b9a48e; text-decoration: none; font-size: 14px; }
.social-link:hover { color: #f1e7d8; }
.social-link svg { flex: none; }
.news-form { display: flex; gap: 0; margin-top: 14px; max-width: 320px; }
.news-form input {
  flex: 1; padding: 12px 14px; border: 1px solid #4a3322; background: #3a2210; color: #f1e7d8;
  font-family: 'Inter', sans-serif; font-size: 14px; border-radius: 2px 0 0 2px; min-width: 0;
}
.news-form input::placeholder { color: #8a755f; }
.news-form input:focus { outline: none; border-color: var(--accent); }
.news-form button {
  padding: 12px 18px; background: var(--accent); color: #fff; border: 1px solid var(--accent);
  font-family: 'Inter', sans-serif; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; border-radius: 0 2px 2px 0;
}
.news-form button:hover { background: var(--accent-deep); }
.news-done { font-size: 13.5px; color: #f1e7d8; margin-top: 14px; display: none; }
.foot-meta {
  margin-top: 56px; padding: 22px 36px 0; max-width: var(--max); margin-left: auto; margin-right: auto;
  border-top: 1px solid #3d2715; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: #7d6a55;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  section { padding: 68px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 72px 36px; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-card a { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .hero-card a:last-child { border-bottom: none; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { border-right: none; }
  .step-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .review-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  nav.primary { display: none; }
  nav.primary.open { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; width: 100%; padding-top: 12px; border-top: 1px solid var(--rule); }
  .menu-btn { display: inline-block; background: none; border: 1px solid var(--rule); padding: 8px 14px; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; color: var(--ink); border-radius: 2px; }
  .head-row { flex-wrap: wrap; }
  .brand-text { display: none; }
  .contact-card { flex-direction: column; width: 100%; }
  .contact-card .field { border-right: none; border-bottom: 1px solid var(--rule); width: 100%; }
  .contact-card .field:last-of-type { border-bottom: none; }
  .form-panel { padding: 32px 24px; }
  .field-2col { grid-template-columns: 1fr; }
  .proof-line span { display: inline-block; border-right: none; padding: 0 10px; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
