/* Easy Digital Repro — "paper & ink" concept. Separate preview; production files untouched. */
:root {
  color-scheme: light;
  --paper: #f6f3ee;
  --paper-2: #efebe3;
  --ink: #14161a;
  --ink-2: #2c2f35;
  --graphite: #5b5f66;
  --mist: #8a8e95;
  --rule: #d9d3c8;
  --rule-strong: #b9b2a5;
  --accent: #c4501a;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --cell: 56px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
section[id] { scroll-margin-top: 5rem; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; top: 12px; background: var(--ink); color: var(--paper); padding: 8px 12px; z-index: 99; }
.wrap { width: min(1120px, calc(100% - 3rem)); margin: 0 auto; }

/* ---------- Plan-sheet grid (half-speed, compositor-only) ---------- */
.plan-sheet { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.plan-sheet-layer {
  position: absolute; top: 0; left: 0; right: 0;
  height: calc(100% + var(--cell));
  background-image:
    linear-gradient(rgba(20, 22, 26, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 22, 26, 0.055) 1px, transparent 1px);
  background-size: var(--cell) var(--cell);
  background-position: center top;
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
    .plan-sheet-layer {
      animation: plan-sheet-parallax linear 200 both;
      animation-timeline: scroll(root block);
      animation-range: 0px 22400px;
    }
  }
}
@keyframes plan-sheet-parallax {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, calc(-1 * var(--cell)), 0); }
}

/* ---------- Type ---------- */
.eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--graphite);
}
.eyebrow-light { color: rgba(246, 243, 238, 0.65); }
h1, h2 {
  font-family: var(--display); font-weight: 400;
  letter-spacing: -0.01em; margin: 0;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1; }
h3 { font-family: var(--font); font-weight: 500; font-size: 1.02rem; margin: 0; letter-spacing: -0.005em; }
p { margin: 0; }
.lede { color: var(--ink-2); font-size: 1.1rem; max-width: 34rem; margin: 1.6rem 0 1.9rem; line-height: 1.6; }
.fine { color: var(--mist); font-size: 0.84rem; margin-top: 1rem; }

/* ---------- Header ---------- */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 243, 238, 0.94);
  border-bottom: 1px solid var(--rule);
}
.top-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1.5px solid var(--ink);
  font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-weight: 500; font-size: 0.95rem; }
.brand-text small { color: var(--mist); font-size: 0.72rem; letter-spacing: 0.04em; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  text-decoration: none; color: var(--graphite);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.nav a:hover { color: var(--ink); }
.nav-cta { color: var(--ink) !important; border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.nav-cta:hover { color: var(--accent) !important; border-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.35rem; text-decoration: none;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--ink); border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: #fff; border-color: #fff; }
.btn-outline-light { background: transparent; color: var(--paper); border-color: rgba(246, 243, 238, 0.45); }
.btn-outline-light:hover { border-color: var(--paper); }

/* ---------- Hero ---------- */
.hero { padding: 6rem 0 5.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.85fr; gap: 4rem; align-items: start; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* dimension line under the headline */
.dim-line {
  position: relative; margin: 1.8rem 0 0; height: 14px; max-width: 30rem;
  border-bottom: 1px solid var(--rule-strong);
}
.dim-line::before, .dim-line::after {
  content: ""; position: absolute; bottom: -4px; width: 1px; height: 9px; background: var(--rule-strong);
}
.dim-line::before { left: 0; } .dim-line::after { right: 0; }
.dim-line span {
  position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%);
  background: var(--paper); padding: 0 0.6rem;
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); white-space: nowrap;
}

/* ---------- Title block (contact card) ---------- */
.title-block {
  border: 1.5px solid var(--ink);
  background: var(--paper);
}
.tb-row {
  display: grid; grid-template-columns: 5.5rem 1fr;
  border-top: 1px solid var(--ink);
  padding: 0.75rem 0.9rem;
  gap: 0.75rem;
}
.tb-row:first-child { border-top: 0; }
.tb-head { background: var(--ink); color: var(--paper); }
.tb-head .tb-label { color: rgba(246, 243, 238, 0.6); }
.tb-label {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--graphite); padding-top: 0.15em;
}
.tb-value { font-size: 0.95rem; font-weight: 500; text-decoration: none; line-height: 1.4; }
.tb-name { font-family: var(--display); font-weight: 400; font-size: 1.15rem; }
a.tb-value:hover { color: var(--accent); }
.tb-foot { grid-template-columns: repeat(3, 1fr); gap: 0; padding: 0; }
.tb-cell { display: grid; gap: 0.15rem; padding: 0.6rem 0.9rem; border-left: 1px solid var(--ink); }
.tb-cell:first-child { border-left: 0; }
.tb-cell .tb-value { font-size: 0.85rem; }

/* ---------- Full-bleed image band ---------- */
.band { margin: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.band img { display: block; width: 100%; height: clamp(200px, 32vw, 400px); object-fit: cover; }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-rule { border-top: 1px solid var(--rule); }
.section-head { margin-bottom: 3rem; max-width: 38rem; }
.section-head h2 { margin-bottom: 0; }

/* ---------- Services: spec index ---------- */
.spec-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.spec {
  display: grid; grid-template-columns: 3.5rem 1fr 1.6fr; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--rule);
  align-items: start;
}
.spec-num { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--mist); padding-top: 0.25rem; }
.spec p { color: var(--graphite); font-size: 0.95rem; grid-column: 3; }
.spec h3 { grid-column: 2; }
.spec-group .spec-items {
  grid-column: 3; list-style: none; margin: 0.6rem 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1.5rem;
  font-size: 0.88rem; color: var(--ink-2);
}
.spec-items li { padding-left: 0.9rem; position: relative; }
.spec-items li::before { content: "—"; position: absolute; left: 0; color: var(--rule-strong); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: start; }
.about-grid p { color: var(--ink-2); margin-top: 1.25rem; max-width: 34rem; }
.about-grid h2 { margin-bottom: 0.5rem; }
.about-img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border: 1px solid var(--rule-strong); margin-bottom: 1.75rem; }
.facts { margin: 0; border-top: 1px solid var(--ink); }
.fact { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
.fact dt { font-weight: 500; font-size: 0.98rem; }
.fact dd { margin: 0.2rem 0 0; color: var(--graphite); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
.faq-grid .section-head { margin-bottom: 0; }
.faq-img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--rule-strong); margin-top: 2.25rem; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 500; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--mist); font-size: 1.25rem; line-height: 1; font-weight: 300; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:focus-visible { outline: 1.5px solid var(--accent); outline-offset: 3px; }
.faq-item p { margin: 0 0 1.2rem; color: var(--graphite); font-size: 0.95rem; max-width: 40rem; }

/* ---------- Visit ---------- */
.visit-head { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 2rem; }
.visit-meta { display: flex; gap: 3rem; text-align: right; color: var(--graphite); font-size: 0.9rem; line-height: 1.5; }
.map-frame {
  border: 1px solid var(--ink); aspect-ratio: 16 / 7; overflow: hidden; background: var(--paper-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05) brightness(1.02); }
.map-actions { margin-top: 1.25rem; }

/* ---------- Contact band ---------- */
.section-cta { background: var(--ink); color: var(--paper); padding: 5.5rem 0; }
.cta-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: center; }
.cta-grid p { color: rgba(246, 243, 238, 0.7); margin-top: 1.1rem; max-width: 32rem; }
.cta-actions { display: flex; flex-direction: column; gap: 0.7rem; }

/* ---------- Footer as title block strip ---------- */
.foot { border-top: 1px solid var(--rule); padding: 2rem 0 2.5rem; font-size: 0.86rem; }
.foot-block { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; border: 1px solid var(--ink); }
.foot-cell {
  display: grid; gap: 0.15rem; align-content: start;
  padding: 0.9rem 1rem; border-left: 1px solid var(--ink); color: var(--graphite);
}
.foot-cell:first-child { border-left: 0; }
.foot-cell strong { color: var(--ink); font-weight: 500; }
.foot-cell a { text-decoration: none; color: var(--ink); }
.foot-cell a:hover { color: var(--accent); }
.foot-cell .tb-label { margin-bottom: 0.25rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 4rem 0; }
  .hero-grid, .about-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .band img { height: 200px; }
  .nav a:not(.nav-cta) { display: none; }
  .spec { grid-template-columns: 2.5rem 1fr; }
  .spec h3 { grid-column: 2; }
  .spec p, .spec-group .spec-items { grid-column: 2; }
  .spec p { margin-top: 0.35rem; }
  .visit-head { flex-direction: column; align-items: flex-start; }
  .visit-meta { text-align: left; }
  .foot-block { grid-template-columns: 1fr 1fr; }
  .foot-cell:nth-child(3) { border-left: 0; }
  .foot-cell:nth-child(n+3) { border-top: 1px solid var(--ink); }
  .plan-sheet-layer { opacity: 0.7; }
}
@media (max-width: 560px) {
  .wrap { width: calc(100% - 2rem); }
  .section { padding: 4rem 0; }
  .spec-group .spec-items { grid-template-columns: 1fr; }
  .visit-meta { flex-direction: column; gap: 0.75rem; }
  .foot-block { grid-template-columns: 1fr; }
  .foot-cell { border-left: 0; border-top: 1px solid var(--ink); }
  .foot-cell:first-child { border-top: 0; }
  .tb-foot { grid-template-columns: 1fr 1fr 1fr; }
  .btn { width: 100%; }
}
