:root {
  --ink: #182922;
  --ink-soft: #30443b;
  --paper: #f8f6f0;
  --paper-deep: #ece8de;
  --sand: #d9d0be;
  --copper: #b95f43;
  --copper-dark: #94442e;
  --white: #fffdf9;
  --line: rgba(24, 41, 34, 0.16);
  --shadow: 0 18px 50px rgba(20, 35, 29, 0.10);
  --radius: 1.4rem;
  --max: 74rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  padding: .7rem 1rem;
  background: var(--white);
  border-radius: .45rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }

.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.86);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
  padding: .63rem 1rem;
}
.site-header {
  background: rgba(248,246,240,.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.nav-shell, .container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
}
.nav-shell {
  min-height: 5.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  color: var(--ink);
  display: inline-grid;
  gap: .05rem;
  font-family: var(--serif);
  font-size: 1.23rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand::before {
  content: "";
  grid-row: 1 / span 2;
  width: .14rem;
  height: 2.18rem;
  margin-right: .63rem;
  background: var(--copper);
  align-self: center;
}
.brand > span { grid-column: 2; }
.brand small {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: .47rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.primary-nav { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a {
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav .button-link { color: var(--white); }
.primary-nav a[aria-current="page"], .primary-nav a:hover { color: var(--copper-dark); }
.primary-nav .button-link:hover { color: var(--white); }
.menu-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .55rem .7rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: .45rem;
  font-size: .78rem;
  font-weight: 800;
}
.menu-toggle .menu-icon, .menu-toggle .menu-icon::before, .menu-toggle .menu-icon::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: currentColor;
}
.menu-toggle .menu-icon { position: relative; }
.menu-toggle .menu-icon::before, .menu-toggle .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-toggle .menu-icon::before { top: -.32rem; }
.menu-toggle .menu-icon::after { bottom: -.32rem; }

.button, .button-link {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: .8rem;
  font-weight: 800;
  gap: .75rem;
  justify-content: center;
  letter-spacing: .01em;
  min-height: 2.95rem;
  padding: .7rem 1.08rem;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button-link:hover { background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); }
.button::after, .button-link::after { content: "→"; font-size: 1rem; line-height: 1; }
.button.secondary, .button-link.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover, .button-link.secondary:hover { background: var(--ink); color: var(--white); }
.button.light, .button-link.light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button.light:hover, .button-link.light:hover { background: transparent; color: var(--white); }
.desktop-call-link { display: inline-flex; align-items: center; min-height: 2.7rem; padding: .55rem 0; border-bottom: 1px solid currentColor; color: var(--ink); font-size: .82rem; font-weight: 800; text-decoration: none; text-underline-offset: .28em; transition: color .2s ease, transform .2s ease; }
.desktop-call-link::after { content: "→"; margin-left: .55rem; font-size: 1rem; line-height: 1; }
.desktop-call-link:hover { color: var(--copper-dark); transform: translateY(-1px); }
.desktop-call-link.light, .hero .desktop-call-link, .section.ink .desktop-call-link { border-color: rgba(255,255,255,.62); color: var(--white); }
.hero .desktop-call-link:hover, .section.ink .desktop-call-link:hover { border-color: var(--white); color: var(--white); }
.hero .button.secondary, .hero .button-link.secondary, .section.ink .button.secondary, .section.ink .button-link.secondary { border-color: rgba(255,255,255,.38); color: var(--white); }
.hero .button.secondary:hover, .hero .button-link.secondary:hover, .section.ink .button.secondary:hover, .section.ink .button-link.secondary:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.text-link { color: var(--ink); font-size: .82rem; font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--copper-dark); }
.text-link::after { content: "  →"; }

main { overflow: clip; }
.hero {
  background: var(--ink);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 5.25rem) 0 clamp(3rem, 5vw, 5.75rem);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .96fr) minmax(20rem, .84fr); align-items: center; gap: clamp(2.3rem, 6vw, 6.2rem); }
.hero-copy { position: relative; z-index: 1; }
.eyebrow, .micro-label {
  color: var(--copper);
  display: block;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .16em;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
}
.hero .eyebrow { color: #efb49d; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; letter-spacing: -.028em; line-height: .99; }
h1 { font-size: clamp(3rem, 6.4vw, 5.7rem); max-width: 11ch; margin-bottom: 1.35rem; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.8rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.58rem; margin-bottom: .85rem; }
.lede { color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.6vw, 1.19rem); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.85rem; }
.hours-pill {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  display: inline-flex;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-top: 2.1rem;
  padding: .55rem .82rem;
  text-transform: uppercase;
}
.hero-art { min-height: 29rem; position: relative; }
.hero-art::before {
  background: var(--copper);
  border-radius: 2rem 2rem 1rem 1rem;
  content: "";
  inset: 1.5rem -1.3rem -1.3rem 2.5rem;
  opacity: .92;
  position: absolute;
}
.hero-art img {
  border-radius: 1.2rem 1.2rem 8rem 1.2rem;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 62% center;
  position: absolute;
  width: 100%;
}
.image-caption {
  background: var(--white);
  bottom: 1.1rem;
  color: var(--ink);
  font-size: .67rem;
  font-weight: 800;
  left: -1.1rem;
  letter-spacing: .09em;
  max-width: 13rem;
  padding: .72rem .82rem;
  position: absolute;
  text-transform: uppercase;
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.soft { background: var(--paper-deep); }
.section.ink { background: var(--ink); color: var(--white); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.6rem); }
.section-heading h2 { max-width: 13ch; margin-bottom: 0; }
.section-heading > p { color: rgba(24,41,34,.7); max-width: 30rem; margin: 0; }
.section.ink .section-heading > p { color: rgba(255,255,255,.7); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 16.5rem;
  padding: 1.65rem;
}
.service-card.featured { background: var(--ink); color: var(--white); }
.service-card .number { color: var(--copper); font-size: .73rem; font-weight: 850; letter-spacing: .1em; margin-bottom: auto; }
.service-card p { color: rgba(24,41,34,.68); font-size: .92rem; margin-bottom: 1.35rem; }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-card .text-link { margin-top: auto; }
.service-card.featured .text-link { color: var(--white); }
.split { display: grid; grid-template-columns: minmax(0,.86fr) minmax(18rem,1fr); gap: clamp(2rem, 7vw, 7.5rem); align-items: center; }
.split.reverse { grid-template-columns: minmax(18rem,1fr) minmax(0,.86fr); }
.split-copy { max-width: 34rem; }
.split-copy p { color: rgba(24,41,34,.68); font-size: 1.02rem; }
.photo-stack { position: relative; min-height: 29rem; }
.photo-stack::after { background-image: radial-gradient(var(--copper) 1px, transparent 1px); background-size: .52rem .52rem; content: ""; height: 9rem; position: absolute; right: -2rem; top: -2rem; width: 10rem; z-index: 0; }
.photo-stack img { border-radius: 1rem; height: 100%; object-fit: cover; position: absolute; width: 100%; z-index: 1; }
.photo-stack.tape img { object-position: 50% 52%; }
.photo-stack .photo-note { background: var(--ink); bottom: 1.2rem; color: var(--white); font-size: .74rem; left: -1.2rem; max-width: 12rem; padding: 1rem; position: absolute; z-index: 2; }
.visit-band { background: var(--copper); color: var(--white); padding: 1.25rem 0; }
.visit-band .container { align-items: center; display: flex; gap: 1.5rem; justify-content: space-between; }
.visit-band p { font-size: .71rem; font-weight: 850; letter-spacing: .12em; margin: 0; text-transform: uppercase; }
.visit-band a { font-size: .78rem; font-weight: 800; white-space: nowrap; }

.page-hero { border-bottom: 1px solid var(--line); padding: clamp(3.6rem, 8vw, 7.2rem) 0 clamp(3.2rem, 6vw, 5rem); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(15rem,.7fr); align-items: end; gap: clamp(2rem, 6vw, 5rem); }
.page-hero h1 { color: var(--ink); font-size: clamp(3rem, 6vw, 5.45rem); margin-bottom: 0; max-width: 10ch; }
.page-hero p { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 0; max-width: 26rem; }
.page-hero.dark { background: var(--ink); border: 0; color: var(--white); }
.page-hero.dark h1 { color: var(--white); }
.page-hero.dark p { color: rgba(255,255,255,.75); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero.dark .eyebrow { color: #efb49d; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.process-step { border-top: 2px solid var(--copper); padding-top: 1rem; }
.process-step span { color: var(--copper-dark); display: block; font-size: .72rem; font-weight: 850; letter-spacing: .1em; margin-bottom: 1rem; }
.process-step p { color: rgba(24,41,34,.7); font-size: .94rem; margin-bottom: 0; }
.quote-panel { background: var(--white); border-left: .26rem solid var(--copper); border-radius: 0 1rem 1rem 0; max-width: 43rem; padding: 1.35rem 1.45rem; }
.quote-panel p { color: var(--ink); font-family: var(--serif); font-size: 1.4rem; line-height: 1.16; margin-bottom: 0; }

.details-list { border-top: 1px solid var(--line); }
.details-list details { border-bottom: 1px solid var(--line); }
.details-list summary { align-items: center; cursor: pointer; display: flex; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 700; justify-content: space-between; list-style: none; padding: 1.15rem 0; }
.details-list summary::-webkit-details-marker { display: none; }
.details-list summary::after { color: var(--copper); content: "+"; font-family: var(--sans); font-size: 1.45rem; font-weight: 400; }
.details-list details[open] summary::after { content: "−"; }
.details-list .detail-body { color: rgba(24,41,34,.72); max-width: 40rem; padding: 0 2.2rem 1.35rem 0; }
.details-list .detail-body p:last-child { margin-bottom: 0; }
.callout-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 1rem; }
.callout-label { background: var(--copper); border-radius: var(--radius); color: var(--white); padding: 1.55rem; }
.callout-label p { font-size: .72rem; font-weight: 850; letter-spacing: .13em; margin-bottom: 0; text-transform: uppercase; }
.callout-body { background: var(--white); border-radius: var(--radius); padding: 1.55rem; }
.callout-body p { color: rgba(24,41,34,.72); margin-bottom: 0; }

.contact-layout { display: grid; grid-template-columns: minmax(17rem,.78fr) minmax(0,1.22fr); gap: clamp(2rem, 6vw, 5.5rem); align-items: start; }
.contact-card { border-top: 2px solid var(--copper); padding-top: 1.15rem; }
.contact-card + .contact-card { margin-top: 2rem; }
.contact-card h3 { font-family: var(--sans); font-size: .76rem; font-weight: 850; letter-spacing: .12em; margin-bottom: .65rem; text-transform: uppercase; }
.contact-card p, .contact-card address { color: rgba(24,41,34,.72); font-size: .98rem; font-style: normal; margin-bottom: .35rem; }
.contact-card a { font-weight: 800; }
.form-shell { background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); padding: clamp(1.3rem, 4vw, 2.3rem); }
.form-shell h2 { font-size: clamp(2rem,3vw,2.75rem); }
.form-note { color: rgba(24,41,34,.66); font-size: .82rem; }
.field-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
.field { display: grid; gap: .38rem; margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 850; letter-spacing: .06em; }
.field input, .field select, .field textarea { background: var(--paper); border: 1px solid rgba(24,41,34,.22); border-radius: .42rem; color: var(--ink); padding: .78rem .83rem; width: 100%; }
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--copper); outline: 2px solid rgba(185,95,67,.2); }
.form-status { color: var(--ink); font-size: .88rem; font-weight: 700; margin: 1rem 0 0; min-height: 1.35rem; }
.form-status.is-success { color: #256445; }
.map-card { background: var(--ink); border-radius: 1rem; color: var(--white); margin-top: 2rem; overflow: hidden; padding: 1.5rem; position: relative; }
.map-card::after { background-image: linear-gradient(35deg, transparent 45%, rgba(255,255,255,.12) 46%, rgba(255,255,255,.12) 48%, transparent 49%), linear-gradient(-46deg, transparent 39%, rgba(255,255,255,.1) 40%, rgba(255,255,255,.1) 42%, transparent 43%); content: ""; inset: 0; opacity: .9; position: absolute; }
.map-card > * { position: relative; z-index: 1; }
.map-pin { align-items: center; background: var(--copper); border-radius: 50%; display: flex; font-size: .75rem; font-weight: 850; height: 3.6rem; justify-content: center; margin-bottom: 3.5rem; width: 3.6rem; }
.map-card p { color: rgba(255,255,255,.78); max-width: 19rem; }
.map-card .text-link { color: var(--white); }
.contact-warning { background: #f5e5dd; border-left: .2rem solid var(--copper); color: #59372c; font-size: .87rem; margin-top: 1.25rem; padding: .82rem .9rem; }

.site-footer { background: var(--ink); color: var(--white); padding: clamp(3rem, 6vw, 4.7rem) 0 1.55rem; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .9fr; gap: 2.2rem; }
.site-footer .brand { color: var(--white); margin-bottom: 1.15rem; }
.site-footer .brand small { color: rgba(255,255,255,.6); }
.footer-intro { color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.22rem; line-height: 1.2; max-width: 15rem; }
.footer-heading { color: #efb49d; font-size: .66rem; font-weight: 850; letter-spacing: .15em; margin: .4rem 0 .75rem; text-transform: uppercase; }
.footer-grid p, .footer-grid a, .footer-grid address { color: rgba(255,255,255,.75); font-size: .88rem; font-style: normal; line-height: 1.55; margin: 0; }
.footer-grid a { font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); display: flex; font-size: .65rem; font-weight: 800; justify-content: space-between; letter-spacing: .1em; margin-top: 3rem; padding-top: 1.3rem; text-transform: uppercase; }

@media (max-width: 900px) {
  .primary-nav { gap: 1rem; }
  .primary-nav a { font-size: .75rem; }
  .hero-grid, .split, .split.reverse, .page-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-art { min-height: min(35rem, 93vw); max-width: 38rem; width: calc(100% - 1.7rem); margin-left: auto; }
  .page-hero p { max-width: 38rem; }
  .split.reverse .photo-stack { order: -1; }
  .section-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 720px) {
  .nav-shell, .container { width: min(calc(100% - 1.5rem), var(--max)); }
  .nav-shell { min-height: 4.55rem; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px rgba(24,41,34,.08);
    display: grid;
    gap: 0;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-.5rem);
    transition: max-height .25s ease, opacity .2s ease, transform .25s ease;
  }
  .primary-nav.is-open { max-height: 24rem; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-nav a { border-top: 1px solid var(--line); display: block; font-size: .92rem; padding: .9rem 1rem; }
  .primary-nav .button-link { border-radius: 0; justify-content: space-between; margin: 0; }
  .brand { font-size: 1.07rem; }
  .brand::before { height: 1.95rem; margin-right: .45rem; }
  .topbar { font-size: .57rem; letter-spacing: .11em; }
  h1 { font-size: clamp(2.9rem, 14vw, 4.3rem); }
  .hero { padding-top: 3rem; }
  .hero-art { min-height: min(29rem, 112vw); }
  .hero-art::before { inset: 1rem -0.75rem -0.75rem 1.5rem; }
  .image-caption { bottom: .75rem; font-size: .58rem; left: -.3rem; }
  .service-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 13.3rem; }
  .photo-stack { min-height: min(29rem, 105vw); }
  .photo-stack::after { right: -.7rem; top: -1rem; }
  .photo-stack .photo-note { left: -.2rem; }
  .visit-band .container { align-items: flex-start; flex-direction: column; gap: .45rem; }
  .page-hero { padding: 3.7rem 0 3.2rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .callout-grid, .field-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; margin-top: 2.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
/* Desktop phone numbers remain readable text; mobile restores tap-to-call. */
@media (min-width: 901px) {
  a[data-phone-desktop="true"] {
    display: inline !important;
    color: inherit !important;
    background: transparent !important;
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    line-height: inherit !important;
    text-decoration: none !important;
    text-transform: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    pointer-events: none !important;
    cursor: default !important;
  }

  a[data-phone-desktop="true"]::before,
  a[data-phone-desktop="true"]::after,
  a[data-phone-desktop="true"] [aria-hidden="true"] {
    content: none !important;
    display: none !important;
  }
}

/* Small-screen polish: keep the light header legible and give the menu a clear tap target. */
.site-header { box-shadow: 0 4px 18px rgba(24, 41, 34, .06); }
@media (max-width: 720px) {
  .menu-toggle {
    min-width: 74px;
    min-height: 44px;
    justify-content: center;
    padding: .55rem .75rem;
    border-color: rgba(24, 41, 34, .25);
    background: var(--paper-deep);
  }
  .primary-nav a { min-width: 0; overflow-wrap: break-word; }
  .footer-grid > * { min-width: 0; }
}
@media (max-width: 380px) {
  .footer-bottom { overflow-wrap: anywhere; }
}
