@charset "UTF-8";

:root {
  --ivory: #f4eddf;
  --paper: #fbf7ef;
  --cream: #e9ddc9;
  --walnut: #3b271f;
  --walnut-soft: #5a4034;
  --ink: #211a17;
  --brass: #a67c3b;
  --brass-light: #d4b473;
  --clay: #b96f50;
  --sage: #9a9a78;
  --line: rgba(59, 39, 31, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Avenir, "Avenir Next", Montserrat, "Segoe UI", sans-serif;
  --page: min(1180px, calc(100% - 48px));
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background: repeating-radial-gradient(circle at 18% 31%, rgba(59,39,31,.18) 0, rgba(59,39,31,.18) .45px, transparent .7px, transparent 4px);
  mix-blend-mode: multiply;
}
::selection { color: var(--paper); background: var(--walnut); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--walnut);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  min-height: 94px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
}
.compact-header { position: relative; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .01em;
}
.brand-mark {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: var(--brass);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { position: relative; font-size: 13px; letter-spacing: .04em; }
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid var(--walnut);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-outline, .button-ghost { background: transparent; }
.button-outline:hover, .button-ghost:hover { color: var(--paper); background: var(--walnut); }
.button-solid { color: var(--paper); background: var(--walnut); }
.button-solid:hover { background: var(--walnut-soft); border-color: var(--walnut-soft); }

.hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 150px max(24px, calc((100% - 1180px) / 2)) 55px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 27%, rgba(185,111,80,.18), transparent 30%),
    radial-gradient(circle at 22% 71%, rgba(166,124,59,.15), transparent 34%),
    linear-gradient(125deg, #f8f2e7 0%, #ecdfca 52%, #f4eadb 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 930px; padding: 6vh 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { width: 31px; height: 1px; content: ""; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; }
.hero h1 { max-width: 920px; margin-bottom: 27px; font-size: clamp(54px, 7.3vw, 106px); letter-spacing: -.045em; }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: rgba(33,26,23,.78); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(28px, 6vw, 84px);
  width: max-content;
  margin: auto 0 0 auto;
}
.stats div { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 9px; }
.stats dt { font-family: var(--serif); font-size: 34px; line-height: 1; }
.stats dd { margin: 0; color: rgba(33,26,23,.65); font-size: 11px; letter-spacing: .05em; }
.hero-orbit { position: absolute; border: 1px solid rgba(166,124,59,.26); border-radius: 50%; }
.orbit-one { top: 16%; right: -11%; width: 43vw; height: 43vw; }
.orbit-two { right: 8%; bottom: -19%; width: 31vw; height: 31vw; border-color: rgba(59,39,31,.13); }

.craft-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2.8vw, 43px);
  min-height: 78px;
  padding: 19px 24px;
  color: var(--paper);
  background: var(--walnut);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 20px);
  font-style: italic;
  letter-spacing: .02em;
  white-space: nowrap;
}
.craft-band i { width: 4px; height: 4px; background: var(--brass-light); border-radius: 50%; }

.section { width: var(--page); margin-inline: auto; padding-block: clamp(90px, 11vw, 150px); }
.intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px, 9vw, 125px); align-items: center; }
h2 { margin-bottom: 25px; font-size: clamp(43px, 5.2vw, 72px); letter-spacing: -.035em; }
.intro-copy > p:not(.eyebrow) { max-width: 650px; color: rgba(33,26,23,.73); font-size: 17px; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 31px 0 0; list-style: none; }
.check-list li { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.check-list span { margin-right: 12px; color: var(--brass); }
.material-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
  padding: clamp(38px, 5vw, 70px);
  color: var(--paper);
  background: var(--walnut);
  overflow: hidden;
}
.material-panel::before {
  position: absolute;
  top: 55px;
  right: 55px;
  width: 130px;
  height: 130px;
  content: "";
  border: 1px solid rgba(212,180,115,.38);
  border-radius: 50%;
}
.material-panel::after {
  position: absolute;
  top: 105px;
  right: 105px;
  width: 130px;
  height: 130px;
  content: "";
  border: 1px solid rgba(212,180,115,.17);
  border-radius: 50%;
}
.material-panel p { position: relative; z-index: 1; margin-bottom: 23px; font-family: var(--serif); font-size: clamp(30px, 3.3vw, 46px); font-style: italic; line-height: 1.15; }
.material-panel small { color: var(--brass-light); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.panel-lines { position: absolute; top: 0; left: 0; display: flex; gap: 13px; height: 100%; opacity: .09; }
.panel-lines span { width: 1px; background: var(--brass-light); }

.process { border-top: 1px solid var(--line); }
.section-heading { max-width: 830px; margin-bottom: clamp(55px, 7vw, 90px); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.process-grid li { min-height: 300px; padding: 27px 26px 30px 0; border-right: 1px solid var(--line); }
.process-grid li + li { padding-left: 26px; }
.process-grid li:last-child { border-right: 0; }
.step-number { display: block; margin-bottom: 67px; color: var(--brass); font-family: var(--serif); font-size: 16px; }
.process-grid h3 { margin-bottom: 15px; font-size: 32px; }
.process-grid p { margin-bottom: 0; color: rgba(33,26,23,.68); font-size: 14px; }

.services { width: 100%; padding-inline: max(24px, calc((100% - 1180px) / 2)); background: #e9decc; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 400px; padding: clamp(30px, 4vw, 52px); background: var(--paper); border: 1px solid rgba(166,124,59,.35); transition: transform .3s ease, background .3s ease; }
.service-card:hover { background: #fffaf1; transform: translateY(-7px); }
.card-index { color: var(--brass); font-family: var(--serif); font-style: italic; }
.service-card h3 { max-width: 290px; margin: 65px 0 20px; font-size: 37px; }
.service-card p { color: rgba(33,26,23,.68); font-size: 14px; }
.gold-rule { width: 100%; height: 1px; margin: 38px 0 17px; background: var(--brass-light); }
.service-card .card-note { color: var(--walnut); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-panel { min-height: 410px; padding: clamp(34px, 5vw, 66px); border: 1px solid var(--line); }
.muted-panel { color: rgba(33,26,23,.75); background: rgba(255,255,255,.22); }
.after-panel { color: var(--paper); background: var(--walnut); border-color: var(--brass); }
.panel-label { margin-bottom: 75px; color: var(--brass); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.after-panel .panel-label { color: var(--brass-light); }
.compare-panel h3 { margin-bottom: 27px; font-size: clamp(31px, 3.5vw, 45px); }
.compare-panel ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.compare-panel li { position: relative; padding-left: 23px; font-size: 14px; }
.compare-panel li::before { position: absolute; top: .72em; left: 0; width: 9px; height: 1px; content: ""; background: var(--brass); }
.after-panel li::before { background: var(--brass-light); }

.testimonial {
  position: relative;
  width: 100%;
  padding-inline: max(24px, calc((100% - 980px) / 2));
  color: var(--walnut);
  background: var(--cream);
  text-align: center;
  overflow: hidden;
}
.testimonial blockquote { position: relative; z-index: 1; margin: 0; }
.testimonial blockquote > p { font-family: var(--serif); font-size: clamp(34px, 5vw, 64px); font-style: italic; line-height: 1.18; letter-spacing: -.025em; }
.testimonial footer { display: grid; gap: 2px; margin-top: 40px; font-size: 12px; letter-spacing: .06em; }
.testimonial footer span { color: rgba(59,39,31,.62); }
.quote-mark { position: absolute; top: -90px; left: 2%; color: rgba(166,124,59,.15); font-family: var(--serif); font-size: 420px; line-height: 1; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 140px); }
.contact-intro h2 { font-size: clamp(45px, 5.4vw, 70px); }
.contact-intro > p:not(.eyebrow) { max-width: 540px; color: rgba(33,26,23,.68); }
address { display: grid; gap: 12px; margin: 38px 0; font-style: normal; }
address a { width: max-content; font-family: var(--serif); font-size: 29px; border-bottom: 1px solid var(--brass); }
address span { font-size: 14px; }
.contact-details { display: grid; gap: 3px; color: rgba(33,26,23,.62); font-size: 12px; }
.contact-form { display: grid; gap: 20px; padding: clamp(29px, 4vw, 52px); background: var(--paper); border: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: var(--walnut); font-size: 11px; font-weight: 600; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 2px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(59,39,31,.38);
  border-radius: 0;
  outline: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
}
.contact-form textarea { min-height: 115px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brass); box-shadow: 0 1px 0 var(--brass); }
.contact-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 11px; font-weight: 400; letter-spacing: normal; line-height: 1.5; }
.consent input { flex: 0 0 auto; width: 16px; min-height: 16px; margin-top: 3px; accent-color: var(--walnut); }
.consent a { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }
.submit-button { width: 100%; }
.form-status { min-height: 24px; margin: -8px 0 0; color: var(--walnut); font-size: 13px; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 72px max(24px, calc((100% - 1180px) / 2)) 25px;
  color: var(--paper);
  background: #281b16;
}
.brand-light { color: var(--paper); }
.footer-brand p { margin-top: 17px; color: rgba(251,247,239,.55); font-size: 13px; }
.footer-links { display: grid; align-content: start; gap: 9px; font-size: 13px; }
.footer-title { margin-bottom: 10px; color: var(--brass-light); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-links a { width: max-content; color: rgba(251,247,239,.7); }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; grid-column: 1 / -1; padding-top: 24px; margin-top: 25px; color: rgba(251,247,239,.48); border-top: 1px solid rgba(251,247,239,.14); font-size: 11px; }
.footer-bottom a:hover { color: var(--paper); }

.legal-page { width: var(--page); padding: 100px 0 130px; }
.legal-hero { max-width: 820px; padding-bottom: 65px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 20px; font-size: clamp(53px, 7vw, 92px); letter-spacing: -.04em; }
.legal-hero > p:last-child { color: rgba(33,26,23,.6); font-size: 13px; }
.legal-content { max-width: 820px; margin: 65px auto 0; }
.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 14px; font-size: 30px; letter-spacing: -.015em; }
.legal-content p { margin-bottom: 0; color: rgba(33,26,23,.73); }
.legal-content a:not(.text-link) { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }
.text-link { display: inline-block; margin-top: 50px; color: var(--brass); border-bottom: 1px solid currentColor; }
.legal-footer { grid-template-columns: 1fr; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

@media (max-width: 920px) {
  :root { --page: min(100% - 34px, 720px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 78px; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 7px;
    width: 42px;
    height: 42px;
    padding: 12px 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: var(--walnut); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(390px, 88vw);
    height: 100svh;
    padding: 85px 45px;
    background: var(--paper);
    box-shadow: -20px 0 70px rgba(33,26,23,.13);
    transition: right .3s ease;
  }
  .main-nav.is-open { right: 0; }
  .main-nav a { font-family: var(--serif); font-size: 31px; }
  .header-cta { display: none; }
  .compact-header .button { display: inline-flex; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(53px, 10vw, 78px); }
  .stats { margin-left: 0; }
  .intro, .contact { grid-template-columns: 1fr; }
  .material-panel { min-height: 440px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .process-grid li:nth-child(3) { padding-left: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-card h3 { margin-top: 45px; }
  .site-footer { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 650px) {
  :root { --page: calc(100% - 32px); }
  body { font-size: 15px; }
  .brand { font-size: 22px; }
  .brand-mark { width: 31px; height: 31px; }
  .compact-header .button { min-height: 41px; padding-inline: 13px; font-size: 10px; }
  .hero { display: block; min-height: auto; padding-top: 132px; padding-bottom: 42px; }
  .hero-content { padding: 25px 0 55px; }
  .hero h1 { font-size: clamp(48px, 14.5vw, 67px); line-height: .98; }
  .hero h1 br { display: none; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; width: 100%; padding-top: 25px; border-top: 1px solid var(--line); }
  .stats div { display: block; }
  .stats dt { font-size: 28px; }
  .stats dd { margin-top: 7px; line-height: 1.35; }
  .craft-band { justify-content: flex-start; gap: 16px; padding-inline: 16px; overflow: hidden; font-size: 14px; }
  .craft-band span:nth-of-type(n+4), .craft-band span:nth-of-type(n+4) ~ i { display: none; }
  .section { padding-block: 82px; }
  h2 { font-size: clamp(40px, 12vw, 55px); }
  .intro { gap: 50px; }
  .material-panel { min-height: 400px; padding: 32px; }
  .material-panel p { font-size: 31px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li + li, .process-grid li:nth-child(3) { min-height: 0; padding: 28px 5px 38px; border-top: 1px solid var(--line); border-right: 0; }
  .process-grid li:first-child { border-top: 0; }
  .step-number { margin-bottom: 25px; }
  .services { padding-inline: 16px; }
  .service-card { padding: 30px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .compare-panel { min-height: 370px; padding: 34px 29px; }
  .panel-label { margin-bottom: 55px; }
  .testimonial blockquote > p { font-size: 33px; }
  .contact { gap: 55px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 27px 22px; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 40px 25px; padding-top: 57px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .legal-page { padding-top: 75px; }
  .legal-hero h1 { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}