:root {
  --paper: #f4eedc;
  --paper-soft: #ece4c9;
  --rule: #d2c4a2;
  --ink: #1a140a;
  --body: #322820;
  --muted: #6e6048;
  --shellac: #6b3f1b;
  --honey: #c09454;
  --honey-light: #d9b57f;
  --blackwood: #2c1f18;
  --blackwood-deep: #1a130c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.preview {
  background: var(--blackwood-deep);
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  letter-spacing: 0.3px;
  line-height: 1.55;
  padding: 10px 20px;
  text-align: center;
}
.preview strong {
  color: #fff;
  letter-spacing: 1.5px;
  margin-right: 10px;
  text-transform: uppercase;
}

.nav {
  background: var(--blackwood);
  border-bottom: 1px solid rgba(192,148,84,0.22);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding: 18px 32px;
}
.logo { align-items: baseline; display: flex; gap: 14px; }
.logo .name {
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 20pt;
  line-height: 1;
}
.logo .role {
  color: var(--honey);
  font-family: Georgia, serif;
  font-size: 13pt;
  font-style: italic;
}
.nav-links {
  color: rgba(244,238,220,0.78);
  display: flex;
  gap: 22px;
  font-size: 10.5pt;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--honey-light); }
.nav-cta,
.button-primary {
  background: var(--honey);
  color: var(--blackwood) !important;
  display: inline-block;
  font-size: 10.5pt;
  font-weight: 800;
  letter-spacing: 2.1px;
  padding: 13px 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-cta:hover,
.button-primary:hover { background: var(--honey-light); }
.button-secondary {
  border: 1px solid rgba(244,238,220,0.5);
  color: var(--paper) !important;
  display: inline-block;
  font-size: 10.5pt;
  font-weight: 800;
  letter-spacing: 2.1px;
  padding: 12px 22px;
  text-transform: uppercase;
}

.hero {
  background: var(--blackwood);
  color: var(--paper);
  padding: 66px 32px 62px;
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1.05fr 0.95fr;
  margin: 0 auto;
  max-width: 1200px;
}
.hero-inner > * { min-width: 0; }
.eyebrow {
  align-items: center;
  color: var(--honey-light);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 14px;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.eyebrow::before {
  background: var(--honey);
  content: "";
  height: 1px;
  width: 36px;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.hero h1 {
  color: var(--paper);
  font-size: 44pt;
  margin-bottom: 28px;
}
h1 em,
h2 em,
h3 em { color: var(--honey); font-style: italic; }
.hero p,
.lede {
  color: rgba(244,238,220,0.84);
  font-family: Georgia, serif;
  font-size: 16pt;
  line-height: 1.72;
  margin-bottom: 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo,
.portrait,
.feature-image,
.card-image {
  background-color: var(--blackwood);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(192,148,84,0.28);
  overflow: hidden;
  position: relative;
}
.hero-photo { aspect-ratio: 4 / 3; background-position: center; }
.photo-label {
  background: rgba(26,19,12,0.7);
  bottom: 22px;
  color: rgba(244,238,220,0.92);
  font-family: Georgia, serif;
  font-size: 11pt;
  font-style: italic;
  left: 22px;
  line-height: 1.45;
  padding: 9px 12px;
  position: absolute;
  right: 22px;
}

.section {
  padding: 82px 32px;
}
.section.soft {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.section.dark {
  background: var(--blackwood);
  color: var(--paper);
}
.inner {
  margin: 0 auto;
  max-width: 1200px;
}
.section-head {
  margin-bottom: 46px;
  max-width: 790px;
}
.section-head h2 {
  font-size: 38pt;
  margin-bottom: 18px;
}
.section.dark h2,
.section.dark h3 { color: var(--paper); }
.section-head p,
.body-copy {
  color: var(--body);
  font-family: Georgia, serif;
  font-size: 15.5pt;
  line-height: 1.75;
}
.section.dark .section-head p,
.section.dark .body-copy { color: rgba(244,238,220,0.84); }

.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 32px;
}
.stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px;
}
.stat {
  border-right: 1px solid var(--rule);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat strong {
  color: var(--blackwood);
  display: block;
  font-family: Georgia, serif;
  font-size: 28pt;
  font-weight: 400;
  line-height: 1.1;
}
.stat span {
  color: var(--muted);
  display: block;
  font-size: 9.5pt;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.grid-2,
.feature {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
}
.card-body { padding: 24px; }
.card h3 {
  color: var(--blackwood);
  font-size: 22pt;
  margin-bottom: 10px;
}
.card p,
.card li {
  color: var(--body);
  font-family: Georgia, serif;
  font-size: 13.5pt;
  line-height: 1.62;
}
.card ul { padding-left: 20px; }
.card-image {
  aspect-ratio: 4 / 3;
  border: 0;
  border-bottom: 1px solid var(--rule);
}
.card-image[data-lightbox],
.hero-photo[data-lightbox],
.feature-image[data-lightbox],
.before-after img[data-lightbox] {
  cursor: zoom-in;
}
.card-image[data-lightbox]:focus,
.hero-photo[data-lightbox]:focus,
.feature-image[data-lightbox]:focus,
.before-after img[data-lightbox]:focus {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
}
.feature {
  align-items: stretch;
}
.feature > * { min-width: 0; }
.feature-image { min-height: 460px; }
.feature-copy {
  align-self: center;
}
.feature-copy h2 {
  font-size: 34pt;
  margin-bottom: 20px;
}

.before-after {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}
.before-after img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.lightbox {
  align-items: center;
  background: rgba(26,19,12,0.92);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 34px;
  position: fixed;
  z-index: 200;
}
.lightbox.is-open { display: flex; }
.lightbox figure {
  margin: 0;
  max-height: 92vh;
  max-width: min(1100px, 94vw);
}
.lightbox img {
  background: var(--blackwood-deep);
  border: 1px solid rgba(192,148,84,0.34);
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}
.lightbox figcaption {
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 13pt;
  font-style: italic;
  line-height: 1.45;
  margin-top: 12px;
}
.lightbox-close {
  background: var(--honey);
  border: 0;
  color: var(--blackwood);
  cursor: pointer;
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 12px 16px;
  position: absolute;
  right: 24px;
  text-transform: uppercase;
  top: 24px;
}
.lightbox-close:hover { background: var(--honey-light); }
.wide { grid-column: span 2; }
.review {
  border-left: 3px solid var(--honey);
  padding: 26px;
}
.review p {
  color: var(--shellac);
  font-family: Georgia, serif;
  font-size: 14pt;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 14px;
}
.review strong {
  color: var(--blackwood);
  font-size: 10pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-panel {
  background: rgba(244,238,220,0.06);
  border: 1px solid rgba(192,148,84,0.28);
  padding: 30px;
}
.contact-row {
  border-bottom: 1px solid rgba(192,148,84,0.25);
  display: grid;
  gap: 18px;
  grid-template-columns: 110px 1fr;
  padding: 15px 0;
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row span {
  color: var(--honey-light);
  font-size: 10pt;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contact-row div {
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 15pt;
  line-height: 1.5;
}

footer {
  background: var(--blackwood-deep);
  color: rgba(244,238,220,0.66);
  padding: 34px 32px;
}
.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
}
footer strong {
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 17pt;
  font-weight: 400;
}

@media (max-width: 1050px) and (min-width: 761px) {
  .nav-inner {
    flex-wrap: wrap;
  }
  .logo {
    flex-basis: 100%;
  }
  .nav-links {
    flex: 1 1 auto;
  }
}

@media (max-width: 1500px) and (min-width: 761px) {
  .section .feature {
    grid-template-columns: 1fr;
  }
  .section .feature > .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section .feature > .grid-2 .card-image {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 760px) {
  .preview strong { display: block; font-size: 10px; letter-spacing: 1px; margin-right: 0; }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 16px 22px; }
  .nav-links {
    display: flex;
    gap: 12px 20px;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .nav-cta { width: 100%; text-align: center; }
  .hero { padding: 58px 22px; }
  .hero-inner,
  .grid-2,
  .grid-3,
  .feature { grid-template-columns: 1fr; }
  .hero h1 { font-size: 21pt; letter-spacing: 0; }
  .hero h1,
  .hero p { max-width: 100%; overflow-wrap: break-word; }
  .hero p,
  .lede { font-size: 12.5pt; }
  .hero-photo,
  .feature-image,
  .card-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    width: 86%;
  }
  .before-after {
    margin-left: auto;
    margin-right: auto;
    max-width: 340px;
    width: 92%;
  }
  .section { padding: 56px 22px; }
  .section-head h2,
  .feature-copy h2 { font-size: 28pt; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid var(--rule); }
  .wide { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-inner,
  .inner,
  .nav-inner {
    margin-left: 0;
    margin-right: 0;
    max-width: 346px;
    width: 346px;
  }
  .hero h1 { font-size: 20pt; }
}
