/* J&J Complete Property Solutions - v4 skin: full dark. Navy matte texture
   under a tint layer, gold slivers, machined depth. Nothing flat. */

:root {
  --navy: #1b2433;
  --navy-deep: #141b27;
  --panel: rgba(26, 35, 52, 0.82);
  --panel-hi: rgba(33, 44, 64, 0.9);
  --ink-light: #d8d0be;
  --head-light: #f0e8d8;
  --muted: #b9b09a;
  --brass: #a89772;
  --steel: #3d4757;
  --gold: #b8934a;
  --gold-bright: #d4af5e;
  --tint: rgba(10, 14, 23, 0.55);
  --sh-key: 0 1px 2px rgba(0, 0, 0, 0.5);
  --sh-amb: 0 14px 34px rgba(0, 0, 0, 0.42);
  --navytex: url('assets/textures/navy-matte.webp');
  --wood: url('assets/textures/hardwood-dark.webp');
  --goldtex: url('assets/textures/gold-brushed.webp');
  --leather: url('assets/textures/leather-black.webp');
  --shingle: url('assets/textures/shingle-plane.webp');
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* iOS Safari inflates text in wide blocks without this, which widened the
     whole document and caused horizontal rubber banding on phones */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* clip, not hidden: hidden creates a scroll container and kills the sticky nav */
  overflow-x: clip;
}
body { overflow-x: clip; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-light);
  background-color: #0d1220;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(10,14,23,0.25) 0%, var(--tint) 70%),
    repeating-linear-gradient(0deg, rgba(212,175,94,0.035) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(212,175,94,0.035) 0 1px, transparent 1px 56px),
    var(--navytex);
  background-size: 100% 100%, auto, auto, 1920px auto;
  background-attachment: fixed;
}

h1, h2, h3, .mark {
  font-family: 'Archivo', 'Inter', sans-serif;
  color: var(--head-light);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

/* felt, not seen: procedural grain over everything */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* nav: matte leather, sits above the page */
.nav {
  position: sticky; top: 0; z-index: 50;
  background-color: #10141c;
  background-image: linear-gradient(rgba(8,10,16,0.35), rgba(8,10,16,0.35)), var(--leather);
  background-size: auto, 1920px auto;
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 8px 26px rgba(0,0,0,0.55);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.mark {
  font-size: 1.55rem; font-weight: 900; color: var(--head-light); text-decoration: none;
  display: flex; align-items: center; gap: 12px;
}
.mark .amp { color: var(--gold-bright); }
.mark-img {
  height: 40px; width: auto; display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.55));
}
.footer-logo {
  display: block; height: 60px; width: auto; margin: 0 auto 10px;
  filter: drop-shadow(0 4px 9px rgba(0,0,0,.5));
}
.drawer-wm {
  display: block; width: 104px; height: auto; margin: 26px auto 4px;
  opacity: .55; pointer-events: none;
}
.seal-tag {
  text-align: center; font-family: 'Inter', sans-serif; font-size: 0.66rem;
  font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); margin: 16px 0 30px;
  text-shadow: 0 1px 3px rgba(0,0,0,.55);
}

/* Service pages */
.page-head {
  background-color: #10141c;
  background-image:
    radial-gradient(ellipse 62% 72% at 30% 45%, rgba(5,7,11,0.72), transparent 78%),
    linear-gradient(rgba(8,10,16,0.52), rgba(8,10,16,0.72)),
    var(--shingle, none);
  background-size: auto, auto, 1400px auto;
  border-bottom: 2px solid var(--gold);
  padding: 84px 0 64px;
}
.page-head h1 {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: clamp(2.2rem, 5.4vw, 3.4rem); font-weight: 800;
  margin-bottom: 20px;
}
.page-head .lede { max-width: 620px; }
.crumbs {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 26px;
}
.crumbs a { color: var(--brass); text-decoration: none; }
.crumbs a:hover { color: var(--gold-bright); }
.page-section { padding: 64px 0; }
.page-cta {
  border-top: 1px solid rgba(184,147,74,.25);
  padding: 56px 0 72px; text-align: center;
}
.page-cta .btn { margin: 6px 8px; }
.page-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 26px; }
.svc-list { list-style: none; padding: 0; display: grid; gap: 14px; max-width: 720px; }
.svc-list li {
  padding: 16px 20px; border-left: 3px solid var(--gold);
  background: var(--panel, rgba(255,255,255,0.03));
  box-shadow: var(--sh-key);
  color: var(--muted); line-height: 1.55;
}
.svc-list li strong { color: var(--head-light, #f0ead8); display: block; margin-bottom: 4px; }
.card-link {
  display: inline-block; margin-top: 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-bright); text-decoration: none;
  border-bottom: 1px solid rgba(212,175,94,.35); padding-bottom: 2px;
  transition: border-color .2s;
}
.card-link:hover { border-color: var(--gold-bright); }
.mark-sub {
  font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a:not(.btn) {
  color: #e8e2d2; text-decoration: none; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 1px solid transparent; transition: border-color .2s;
}
.nav-links a:not(.btn):hover { border-bottom-color: var(--gold-bright); }

/* buttons: machined brass, beveled */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: 'Archivo', 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 15px 30px; border: none; border-radius: 0;
  transition: filter .2s, transform .06s, box-shadow .2s;
}
.btn-gold {
  position: relative; overflow: hidden;
  color: var(--navy-deep);
  background-color: var(--gold);
  background-image: var(--goldtex);
  background-size: cover; background-position: center;
  box-shadow:
    0 1px 0 rgba(255,255,255,.45) inset,
    0 -2px 0 rgba(60,40,10,.45) inset,
    0 6px 18px rgba(0,0,0,.5);
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.btn-gold::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -80%; width: 60%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.38) 50%, transparent 80%);
  transform: skewX(-12deg);
  transition: left .45s ease;
  pointer-events: none;
}
.btn-gold:hover::after { left: 120%; }
.btn-gold:hover { filter: brightness(1.06); box-shadow: 0 1px 0 rgba(255,255,255,.45) inset, 0 -2px 0 rgba(60,40,10,.45) inset, 0 8px 24px rgba(0,0,0,.6); }
.btn-gold:active { transform: translateY(1px); }
.btn-gold:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-line {
  color: var(--head-light); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240,232,216,.35); border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.btn-line:hover { border-color: var(--gold-bright); background: rgba(240,232,216,.07); }
.btn-small { padding: 10px 18px; font-size: 0.75rem; }
.btn-wide { width: 100%; padding: 17px; font-size: 0.9rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}

/* hero: the actual roof. Shingle plane under a heavy tint, text in a darkened pocket */
.hero {
  background-color: #10141c;
  background-image:
    radial-gradient(ellipse 62% 72% at 30% 45%, rgba(5,7,11,0.72), transparent 78%),
    linear-gradient(rgba(8,10,16,0.52), rgba(8,10,16,0.72)),
    var(--shingle);
  background-size: auto, auto, cover; background-position: center 30%;
  padding: 104px 0 96px;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 -30px 60px rgba(0,0,0,.5) inset, 0 22px 44px rgba(0,0,0,.5);
}
.hero-inner { max-width: 780px; }
.kicker {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); box-shadow: 0 1px 3px rgba(0,0,0,.6); }
.hero h1 {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: clamp(2.7rem, 6.8vw, 4.6rem); font-weight: 800;
  margin-bottom: 24px; letter-spacing: 0;
  text-shadow: 0 3px 12px rgba(0,0,0,.65);
}
.lede { font-size: 1.1rem; max-width: 58ch; margin-bottom: 38px; color: #cfc8b6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-measure { display: flex; gap: 12px; flex-wrap: wrap; max-width: 620px; }
.hero-measure input {
  flex: 1; min-width: 240px; font: inherit; font-size: 0.98rem; color: var(--head-light);
  padding: 14px 16px; border: 1px solid rgba(240,232,216,.25); border-radius: 0;
  background: rgba(6,9,15,.6);
  box-shadow: 0 2px 8px rgba(0,0,0,.55) inset;
}
.hero-measure input::placeholder { color: rgba(216,208,190,.45); }
.hero-sub { margin-top: 14px; }
.hero-sub a { color: var(--muted); font-size: 0.85rem; text-decoration: none; border-bottom: 1px solid rgba(212,175,94,.4); }
.hero-sub a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

/* sections */
.section-title { font-size: clamp(1.5rem, 3.2vw, 2rem); }
.rule-gold {
  width: 120px; height: 8px; margin: 14px 0 30px;
  background-image:
    repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 2px, transparent 2px, transparent 12px),
    linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 100% 8px, 100% 2px;
  background-position: 0 0, 0 3px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.6));
}

/* raised dark panel: one tonal step above the canvas, key + ambient shadows */
.card, .estimator-tool {
  background-color: var(--panel);
  background-image: linear-gradient(rgba(255,255,255,0.025), rgba(0,0,0,0.14));
  border: 1px solid rgba(240,232,216,.14);
  border-top: 2px solid var(--gold);
  outline: 1px solid rgba(212,175,94,.14);
  outline-offset: 5px;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, var(--sh-key), var(--sh-amb);
}

/* the instrument: frosted glass floating over the blueprint */
.estimator-tool {
  background-color: rgba(20, 28, 43, 0.55);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border: 1px solid rgba(212,175,94,.3);
  border-top: 2px solid var(--gold);
}

/* wood button, reserved for the call slot when the number arrives */
.btn-wood {
  color: var(--head-light);
  background-color: var(--navy-deep);
  background-image: linear-gradient(rgba(10,12,18,0.25), rgba(10,12,18,0.25)), var(--wood);
  background-size: auto, 640px auto;
  border: 1px solid rgba(212,175,94,.5);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 6px 16px rgba(0,0,0,.5);
}

/* sticky mobile action bar */
.sticky-bar { display: none; }

/* services */
.services { padding: 30px 0 84px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.card { position: relative; padding: 24px 22px; }
.card-icon { display: block; margin-bottom: 12px; }
.card-icon img {
  width: 60px; height: 60px; display: block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.55)) drop-shadow(0 1px 2px rgba(0,0,0,.4));
}
.card-icon svg { width: 34px; height: 34px; color: var(--brass); filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.action-cell svg { width: 30px; height: 30px; color: var(--brass); margin: 0 auto 10px; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.card-num {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.8rem;
  color: var(--brass); letter-spacing: 0.12em;
  display: block; margin-bottom: 12px;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.card h3 { font-size: 1.02rem; margin-bottom: 10px; letter-spacing: 0.04em; }
.card p { font-size: 0.95rem; color: #c9c2b0; }

/* written in action: the flyer's proof strip */
.action-band {
  padding: 60px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(212,175,94,.3);
  border-bottom: 1px solid rgba(212,175,94,.3);
  box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 -1px 0 rgba(0,0,0,.35) inset;
}
.kicker-center { justify-content: center; text-align: center; margin-bottom: 34px; }
.kicker-center::before { display: none; }
.kicker-center::after { content: none; }
.action-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px 18px; text-align: center;
}
.action-grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); max-width: 900px; margin: 0 auto; }
.step-num {
  display: block; font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.22em; color: var(--brass); margin-bottom: 10px;
}
.step-icon {
  width: 52px; height: 52px; display: block; margin: 0 auto 10px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.55)) drop-shadow(0 1px 2px rgba(0,0,0,.4));
}
.action-cell h4 {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--head-light);
  margin-bottom: 5px; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.action-cell p { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

/* legacy band: carved into the wood */
.legacy-band {
  background-color: var(--navy-deep);
  background-image: linear-gradient(rgba(10,12,18,0.25), rgba(10,12,18,0.25)), var(--wood);
  background-size: auto, 1920px auto; background-position: center;
  padding: 80px 0; text-align: center;
  box-shadow: 0 26px 48px rgba(0,0,0,.55) inset, 0 -26px 48px rgba(0,0,0,.55) inset;
  border-top: 1px solid rgba(212,175,94,.35);
  border-bottom: 1px solid rgba(212,175,94,.35);
}
.legacy-inner { max-width: 760px; }
.legacy-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--head-light); font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-style: italic; font-weight: 500; line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.legacy-band cite {
  display: block; margin-top: 20px; font-style: normal;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright);
}

/* about */
.about { padding: 84px 0; }
.about-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.about-text p { margin-bottom: 16px; max-width: 54ch; }
.about-close { font-weight: 600; color: var(--head-light); }
.about-side { display: grid; gap: 30px; }
.jj-seal {
  width: 172px; color: var(--gold-bright); justify-self: center;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.55));
}
.values { list-style: none; border-left: 2px solid var(--gold); padding-left: 24px; display: grid; gap: 14px; margin-top: 8px; }
.values li { font-size: 0.97rem; }
.values strong { color: var(--head-light); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.06em; }

/* quote form: dark wells */
.quote { padding: 20px 0 100px; }
.quote-inner { max-width: 680px; }
.quote-intro p { margin-bottom: 30px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 7px;
}
.field input, .field select, .field textarea, .addr-row input {
  font: inherit; font-size: 0.98rem; color: var(--head-light);
  padding: 12px 14px;
  border: 1px solid rgba(240,232,216,.22); border-radius: 0;
  background: rgba(6,9,15,.55);
  box-shadow: 0 2px 8px rgba(0,0,0,.5) inset;
}
.field input::placeholder, .addr-row input::placeholder { color: rgba(216,208,190,.4); }
.field select option { background: #141b27; color: var(--head-light); }
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.95rem; color: var(--gold-bright); }

/* hamburger + drawer (scoped classes only) */
.menu-btn {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px; flex: none;
  background: transparent; border: 1px solid rgba(240,232,216,.25); cursor: pointer;
  transition: border-color .2s;
}
.menu-btn:hover { border-color: var(--gold-bright); }
.menu-btn span { display: block; height: 2px; background: var(--head-light); transition: background .2s; }
.menu-btn:hover span { background: var(--gold-bright); }
.drawer { position: fixed; inset: 0; z-index: 80; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(5,7,11,.6); backdrop-filter: blur(2px); opacity: 0; transition: opacity .25s; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
  background-color: #0c0f16;
  background-image: linear-gradient(rgba(5,7,11,0.4), rgba(5,7,11,0.4)), var(--leather);
  background-size: auto, 1920px auto;
  border-left: 1px solid var(--gold);
  box-shadow: -18px 0 44px rgba(0,0,0,.6);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .28s ease;
}
.drawer.in .drawer-backdrop { opacity: 1; }
.drawer.in .drawer-panel { transform: none; }
.drawer-title { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--head-light); margin-bottom: 14px; }
.drawer-title span { color: var(--gold-bright); }
.drawer-link {
  color: var(--ink-light); text-decoration: none; font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 2px; border-bottom: 1px solid rgba(240,232,216,.1);
  transition: color .15s, padding-left .15s;
}
.drawer-link:hover { color: var(--gold-bright); padding-left: 8px; }
.drawer-fine { margin-top: auto; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  .drawer-panel, .drawer-backdrop { transition: none; }
}

/* faq */
.faq { padding: 20px 0 84px; }
.faq-inner { max-width: 760px; }
.faq details {
  background-color: var(--panel);
  border: 1px solid rgba(240,232,216,.12); border-left: 2px solid var(--gold);
  margin-bottom: 12px;
  box-shadow: var(--sh-key), 0 8px 22px rgba(0,0,0,.35);
}
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 16px 46px 16px 18px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.03em; color: var(--head-light);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--gold-bright); font-size: 1.2rem; font-weight: 600;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 18px 18px; color: var(--ink-light); font-size: 0.95rem; max-width: 68ch; }

/* preferred visit window widget */
.visit-widget {
  margin-bottom: 30px; padding: 20px 22px;
  background-color: var(--panel);
  background-image: linear-gradient(rgba(255,255,255,0.02), rgba(0,0,0,0.12));
  border: 1px solid rgba(240,232,216,.14);
  border-top: 2px solid var(--gold);
  outline: 1px solid rgba(212,175,94,.14);
  outline-offset: 5px;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset, var(--sh-key), var(--sh-amb);
}
.visit-widget h3 { color: var(--head-light); font-size: 1.05rem; letter-spacing: 0.05em; }
.visit-note { font-size: 0.85rem; color: var(--muted); margin: 10px 0 14px; max-width: 62ch; }
.visit-days {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin; scrollbar-color: rgba(200,162,84,.45) rgba(6,9,15,.5);
}
.visit-days::-webkit-scrollbar { height: 5px; }
.visit-days::-webkit-scrollbar-track { background: rgba(6,9,15,.5); }
.visit-days::-webkit-scrollbar-thumb { background: rgba(200,162,84,.45); }
.visit-days .day {
  flex: 0 0 auto; width: 62px; scroll-snap-align: start; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 10px 0 8px;
  color: var(--ink-light);
  background: rgba(20,28,43,.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(240,232,216,.14); border-top: 2px solid transparent;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.visit-days .day .dow { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.visit-days .day .dom { font-family: 'Bricolage Grotesque', 'Archivo', sans-serif; font-size: 1.45rem; font-weight: 800; line-height: 1.15; color: var(--head-light); }
.visit-days .day .mon { font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.visit-days .day:hover { border-color: rgba(240,232,216,.4); transform: translateY(-2px); }
.visit-days .day.on {
  border-top-color: var(--gold-bright); border-color: rgba(212,175,94,.55);
  box-shadow: 0 8px 20px rgba(0,0,0,.5), 0 0 14px rgba(212,175,94,.12);
}
.visit-days .day.on .dom { color: var(--gold-bright); }
.visit-slots {
  display: inline-flex; margin-top: 12px; max-width: 100%;
  border: 1px solid rgba(240,232,216,.16);
  background: rgba(20,28,43,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.visit-slots .slot { flex: 1 1 auto; min-width: 0; }
.visit-slots .slot {
  cursor: pointer; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-light); background: transparent; border: 0;
  padding: 11px 20px;
  border-right: 1px solid rgba(240,232,216,.12);
  transition: color .15s, background-color .15s;
}
.visit-slots .slot:last-child { border-right: 0; }
.visit-slots .slot:hover { color: var(--head-light); }
.visit-slots .slot.on {
  color: var(--navy-deep);
  background-color: var(--gold);
  background-image: var(--goldtex); background-size: cover;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.visit-selected { margin-top: 12px; font-size: 0.88rem; color: var(--gold-bright); }

/* footer */
.footer {
  background-color: var(--navy-deep);
  background-image: linear-gradient(rgba(10,12,18,0.3), rgba(10,12,18,0.3)), var(--wood);
  background-size: auto, 1920px auto; background-position: bottom center;
  border-top: 2px solid var(--gold);
  padding: 56px 0 40px; text-align: center;
  box-shadow: 0 26px 48px rgba(0,0,0,.5) inset;
}
.footer-mark { justify-content: center; font-size: 1.4rem; }
.footer-line {
  margin: 14px 0 6px; color: var(--gold-bright);
  font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.footer-fine { color: #8d94a3; font-size: 0.8rem; }

/* estimator */
.estimator { padding: 72px 0 84px; }
.estimator-lede { max-width: 62ch; margin-bottom: 28px; }
.estimator-tool { padding: 24px; }
.addr-row { display: flex; gap: 12px; flex-wrap: wrap; }
.addr-row input { flex: 1; min-width: 220px; }
.tool-status { margin: 14px 0 0; font-size: 0.92rem; color: var(--gold-bright); }
.tool-results {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-end;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(240,232,216,.15);
}
.result-cell { display: flex; flex-direction: column; min-width: 140px; }
.result-num {
  font-family: 'Bricolage Grotesque', 'Archivo', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--gold-bright); line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
  font-variant-numeric: tabular-nums;
}
.tool-results .result-cell { opacity: 0; transform: translateY(10px); transition: opacity .4s ease, transform .4s ease; }
.tool-results.in .result-cell { opacity: 1; transform: none; }
.tool-results.in .result-cell:nth-child(1) { transition-delay: 0s; }
.tool-results.in .result-cell:nth-child(2) { transition-delay: .16s; }
.tool-results.in .result-cell:nth-child(3) { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .tool-results .result-cell { opacity: 1; transform: none; transition: none; }
}
.result-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.pitch-field { margin: 0; min-width: 200px; }
.btn-results-send { flex-basis: 100%; }
.tool-fine { margin-top: 16px; font-size: 0.82rem; color: rgba(216,208,190,.6); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* Automation Package demo panel */
.quote-addon {
  margin-top: 20px; padding: 20px 22px;
  background-color: #0c0f16;
  background-image: linear-gradient(rgba(5,7,11,0.4), rgba(5,7,11,0.4)), var(--leather);
  background-size: auto, 1920px auto;
  border-left: 3px solid var(--gold);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 12px 28px rgba(0,0,0,.5);
}
.addon-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.addon-head h3 { color: var(--head-light); font-size: 1.05rem; letter-spacing: 0.05em; }
.addon-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-deep); padding: 4px 10px;
  background-color: var(--gold); background-image: var(--goldtex); background-size: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.addon-body { display: flex; gap: 28px; align-items: flex-end; flex-wrap: wrap; margin-top: 14px; }
.addon-material { margin: 0; min-width: 260px; }
.addon-material label { color: var(--muted); }
.addon-range .result-num { color: var(--gold-bright); }
.addon-range .result-label { color: var(--muted); }
.addon-demo-note { margin-top: 14px; font-size: 0.85rem; color: #cfc8b6; max-width: 70ch; }
.addon-demo-note strong { color: var(--head-light); }

/* character layer */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.card { transition: transform .25s ease, box-shadow .25s ease; }
.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.07) inset,
    0 -1px 0 rgba(0,0,0,.4) inset,
    0 22px 44px rgba(0,0,0,.6);
}
.legacy-band { will-change: background-position; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card:hover { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* responsive */
@media (max-width: 760px) {
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero { padding: 70px 0 62px; }
  .mark-sub { font-size: 0.5rem; letter-spacing: 0.14em; }
  body { background-attachment: scroll; padding-bottom: 76px; }
  .sticky-bar {
    display: flex; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background-color: #0c0f16;
    background-image: linear-gradient(rgba(5,7,11,0.45), rgba(5,7,11,0.45)), var(--leather);
    background-size: auto, 1920px auto;
    border-top: 1px solid var(--gold);
    box-shadow: 0 -10px 30px rgba(0,0,0,.6);
  }
  .sticky-bar .btn { flex: 1; text-align: center; padding: 13px 10px; font-size: 0.8rem; }
}
@media (max-width: 620px) {
  .nav-txt { display: none; }
  /* phone nav carries the mark, the quote button, and the burger; the rest
     lives in the drawer. The sub line and works tag crowded 390px screens. */
  .mark-sub, .works-tag { display: none; }
  .mark { gap: 0; }
  .nav-inner { padding: 12px 16px; }
  .addon-body { flex-direction: column; align-items: stretch; gap: 16px; }
  .addon-material { min-width: 0; }
  .result-cell { min-width: 110px; }
}
