/* Minnesota Painting and Flooring demo (compact rebuild, 2026-09-08)
   Order: tokens -> base -> nav -> hero -> components -> sections -> footer -> desktop breakpoints -> motion
   -> ONE append-only mobile block at the very end. Never edit desktop rules from inside the mobile block. */

/* ---------- tokens ---------- */
:root {
  --navy: #14263B;
  --navy-deep: #0D1A2A;
  --navy-soft: #24395A;
  --plaster: #F4EFE6;
  --plaster-2: #EAE2D4;
  --paper: #FCFAF5;
  --oak: #C9955C;
  --oak-deep: #A8743F;
  --oak-light: #E3C9A4;
  --amber: #E8892B;
  --amber-deep: #C96F1A;
  --amber-soft: rgba(232, 137, 43, 0.14);
  --teal: #3F8A8C;
  --teal-deep: #2F6C6E;
  --teal-soft: #DCEBEA;
  --ink: #1B2431;
  --ink-soft: #3E4A5B;
  --muted: #66707E;
  --line: rgba(20, 38, 59, 0.12);
  --line-strong: rgba(20, 38, 59, 0.24);
  --star: #E8A93A;
  --danger: #B5483A;
  --display: "Young Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Onest", "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  --section: clamp(2.75rem, 5vw, 4.25rem);
  --wrap: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 10px;
  --arch: 999px 999px 20px 20px;
  --shadow: 0 26px 50px -34px rgba(13, 26, 42, 0.5);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--plaster);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
[hidden] { display: none !important; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 0.9rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--section); }
.section-head { max-width: 720px; margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem); }
.section-head h2 { margin-bottom: 0.6rem; }
.section-head-row { max-width: none; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1rem 3rem; align-items: end; }
.section-head-row h2 { margin-bottom: 0; }
.section-head-row .sub { margin: 0 0 0.25rem; }
.sub { color: var(--ink-soft); font-size: 1.02rem; max-width: 62ch; }
.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 0.6rem;
}
.kicker::before { content: ""; width: 22px; height: 3px; background: var(--amber); border-radius: 2px; }
.kicker-light { color: var(--oak-light); }
.kicker-light::before { background: var(--amber); }
.eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.95rem; color: var(--teal-deep); margin-bottom: 0.9rem; }
.eyebrow .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px var(--teal-soft); }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; }
.tag {
  display: inline-block; padding: 0.15rem 0.6rem; border-radius: 999px;
  background: var(--amber); color: #fff; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(13, 26, 42, 0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark { flex: none; width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--display); }
.brand-text span:first-child { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--body); font-weight: 700; color: var(--amber-deep); }
.brand-text span:last-child { font-size: 1.08rem; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--amber); transition: right 0.3s var(--ease); }
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { background: var(--navy); color: #fff !important; padding: 0.6rem 1.05rem; border-radius: 999px; font-weight: 600; }
.nav-cta:hover { background: var(--navy-soft); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); background: var(--paper); border-radius: 12px; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 4.5vw, 4rem); }
.hero::before {
  /* a thin oak floor line under the whole hero, the only decoration left */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-linear-gradient(90deg, var(--oak) 0 180px, var(--oak-deep) 180px 181px);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-copy h1 { margin-bottom: 1rem; color: var(--navy); }
.hero-copy h1 em { font-style: normal; color: var(--amber-deep); position: relative; white-space: nowrap; }
.hero-copy h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 0.12em; background: var(--amber-soft); z-index: -1; border-radius: 4px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.3rem 0 1.6rem; }
.proof { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 1.4rem; }
.proof li { display: flex; align-items: baseline; gap: 0.5rem; }
.proof strong { font-family: var(--display); font-size: 1.55rem; color: var(--navy); white-space: nowrap; flex: none; }
.proof span { font-size: 0.84rem; color: var(--ink-soft); max-width: 13ch; line-height: 1.25; }
.hero-figure { position: relative; margin: 0; min-width: 0; }
.frame { border-radius: 28px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--plaster-2); box-shadow: var(--shadow); border: 6px solid var(--paper); }
.frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.hero-chip {
  position: absolute; left: -1rem; bottom: -0.9rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem; font-size: 0.84rem; color: var(--ink-soft); max-width: 30ch; line-height: 1.35;
  box-shadow: 0 16px 34px -24px rgba(13, 26, 42, 0.6);
}
.hero-badge {
  position: absolute; top: -0.8rem; right: -0.8rem;
  background: var(--navy); color: #fff; border-radius: 999px; padding: 0.75rem 1.1rem;
  display: flex; flex-direction: column; line-height: 1.15; transform: rotate(3deg);
  box-shadow: 0 20px 40px -24px rgba(13, 26, 42, 0.9);
}
.hero-badge strong { font-family: var(--display); font-size: 1.05rem; color: var(--oak-light); }
.hero-badge span { font-size: 0.76rem; opacity: 0.85; }

/* ---------- components ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.98rem;
  border: 1.5px solid transparent; cursor: pointer; transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-deep); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--navy); background: var(--paper); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost-light:hover { border-color: #fff; }

.field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.field label, .field legend { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea, .select-wrap select {
  width: 100%; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus, .select-wrap select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.field textarea { resize: vertical; min-height: 90px; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.8rem; cursor: pointer; }
.select-wrap::after {
  content: ""; position: absolute; right: 1rem; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
fieldset.field { border: 0; padding: 0; margin: 0; }
/* themed dropdowns (see main.js): the native select is kept but hidden; the button and list carry the look */
.select-wrap.enhanced select { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.sel-btn {
  width: 100%; text-align: left; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 0.7rem 2.8rem 0.7rem 0.9rem; cursor: pointer; line-height: 1.4; transition: border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sel-btn.is-ph { color: var(--muted); }
.sel-btn:focus-visible, .select-wrap.enhanced .sel-btn[aria-expanded="true"] { outline: none; border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.sel-list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30; margin: 0; padding: 0.35rem;
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  box-shadow: 0 24px 48px -20px rgba(13, 26, 42, 0.45); max-height: 280px; overflow: auto;
}
.sel-list.up { top: auto; bottom: calc(100% + 6px); }
.sel-list li { padding: 0.55rem 0.8rem; border-radius: 7px; cursor: pointer; font-size: 0.95rem; color: var(--ink); }
.sel-list li:hover { background: var(--plaster); }
.sel-list li[aria-selected="true"] { background: var(--navy); color: #fff; }
.sel-list li.sel-ph { color: var(--muted); }
.multi .sel-list li { display: flex; align-items: center; gap: 0.6rem; }
.multi .sel-list li[aria-selected="true"] { background: var(--plaster); color: var(--ink); }
.multi .sel-list li:hover { background: var(--plaster-2); }
.ck { flex: none; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line-strong); background: var(--paper); display: inline-grid; place-items: center; }
.ck::after { content: ""; width: 5px; height: 9px; border-right: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(45deg) translate(-1px, -1px); opacity: 0; }
.multi li[aria-selected="true"] .ck { background: var(--navy); border-color: var(--navy); }
.multi li[aria-selected="true"] .ck::after { opacity: 1; }
.sel-list li.sel-ph[aria-selected="true"] { background: var(--plaster-2); color: var(--ink-soft); }

.checks { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; padding-top: 0.15rem; }
.check { display: inline-flex; align-items: center; gap: 0.55rem; cursor: pointer; font-weight: 500; font-size: 0.95rem; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check span {
  width: 21px; height: 21px; border-radius: 7px; border: 1.5px solid var(--line-strong); background: var(--paper);
  display: inline-grid; place-items: center; transition: background 0.2s, border-color 0.2s;
}
.check span::after { content: ""; width: 6px; height: 11px; border-right: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(45deg) translate(-1px, -1px); opacity: 0; }
.check input:checked + span { background: var(--navy); border-color: var(--navy); }
.check input:checked + span::after { opacity: 1; }
.check input:focus-visible + span { box-shadow: 0 0 0 4px var(--amber-soft); }
.field-wide { grid-column: 1 / -1; }

/* plus/minus disc for the FAQ items */
.faq-plus { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line-strong); transition: background 0.25s, transform 0.3s var(--ease); }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--navy); transform: translate(-50%, -50%); }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] > summary .faq-plus { background: var(--amber); border-color: var(--amber); transform: rotate(45deg); }
details[open] > summary .faq-plus::before, details[open] > summary .faq-plus::after { background: #fff; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ---------- services: scope row and menu ---------- */
.menu { background: var(--plaster); position: relative; }
.scope { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; margin-bottom: 1.4rem; }
.scope li { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.7rem 0.9rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); border-left: 3px solid var(--amber); }
.scope strong { font-family: var(--display); font-weight: 400; font-size: 1.02rem; color: var(--navy); }
.scope span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.3; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.6rem); align-items: start; }
.menu-grid > *, .contact-grid > *, .rentals-grid > *, .hero-grid > * { min-width: 0; }
.menu-col { background: var(--paper); border-radius: var(--radius); padding: clamp(1rem, 2.2vw, 1.5rem) clamp(1rem, 2.2vw, 1.6rem); border: 1px solid var(--line); box-shadow: var(--shadow); border-top: 5px solid var(--teal); }
.menu-col-floor { border-top-color: var(--oak); }
.menu-title { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line-strong); margin-bottom: 0.1rem; }
.menu-title h3 { font-size: 1.5rem; }
.menu-title span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-align: right; }
.menu-item { padding: 0.7rem 0; border-bottom: 1px dashed var(--line-strong); }
.menu-item:last-of-type { border-bottom: 0; }
.menu-head { display: flex; align-items: baseline; gap: 0.6rem; }
.menu-head h4 { flex: 0 1 auto; font-family: var(--body); font-weight: 600; font-size: 0.98rem; }
.menu-head::after { content: ""; flex: 1 1 1rem; order: 2; border-bottom: 2px dotted var(--line-strong); transform: translateY(-4px); min-width: 1rem; }
.menu-price { order: 3; font-family: var(--display); font-size: 1.02rem; color: var(--navy); white-space: nowrap; }
.menu-item-quote .menu-price { color: var(--amber-deep); font-family: var(--body); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em; text-transform: uppercase; }
.menu-size { margin: 0.05rem 0 0.2rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-deep); }
.menu-incl { margin: 0; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.45; }
.menu-quote { padding-top: 0.7rem; font-size: 0.86rem; color: var(--muted); font-style: italic; }

/* ---------- work ---------- */
.work { background: var(--paper); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 172px; gap: 0.8rem; min-width: 0; grid-auto-flow: dense; }
.tile { margin: 0; position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--plaster-2); min-width: 0; }
.tile-p { grid-row: span 2; }
.tile-w { grid-column: span 2; }
.tile-s { grid-column: span 1; }
.tile-btn { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.tile-btn img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tile:hover .tile-btn img { transform: scale(1.04); }
.tile-label { position: absolute; top: 0.7rem; left: 0.7rem; background: var(--navy); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 999px; }

/* ---------- rentals ---------- */
.rentals { background: var(--navy); color: var(--plaster); position: relative; overflow: hidden; }
.rentals::after { content: ""; position: absolute; left: -6%; bottom: -55%; width: 34%; aspect-ratio: 4 / 5; border-radius: var(--arch); background: var(--navy-soft); opacity: 0.5; pointer-events: none; }
.rentals-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.rentals h2 { color: #fff; margin-bottom: 0.7rem; }
.rentals .sub { color: rgba(244, 239, 230, 0.82); }
.rentals .hero-actions { margin: 1.1rem 0 0; }
.rentals-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem 1.2rem; margin: 0 0 1.1rem; }
.rentals-points li { display: flex; flex-direction: column; gap: 0.15rem; padding-left: 0.8rem; border-left: 3px solid var(--amber); }
.rentals-points strong { color: var(--oak-light); font-family: var(--display); font-weight: 400; font-size: 1.02rem; }
.rentals-points span { font-size: 0.86rem; color: rgba(244, 239, 230, 0.82); line-height: 1.4; }
.rentals-quote { margin: 0; background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 1.1rem 1.4rem 1rem 3rem; position: relative; box-shadow: var(--shadow); }
.rentals-quote::before { content: "\201C"; position: absolute; top: 0.2rem; left: 0.9rem; font-family: var(--display); font-size: 3.6rem; line-height: 1; color: var(--amber); }
.rentals-quote p { font-family: var(--display); font-size: 1.05rem; line-height: 1.4; margin-bottom: 0.4rem; }
.rentals-quote footer { font-size: 0.82rem; color: var(--muted); }

/* ---------- reviews ---------- */
.reviews { background: var(--plaster); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.3rem 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.review:nth-child(2) { background: var(--teal-soft); border-color: transparent; }
.stars { display: flex; gap: 3px; }
.stars i { width: 13px; height: 13px; background: var(--star); clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.review-text { font-family: var(--display); font-size: 0.98rem; line-height: 1.45; margin: 0; flex: 1; }
.review-job { margin: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-deep); }
.review-meta { margin: 0; font-size: 0.88rem; }
.review-meta span { color: var(--muted); }

/* ---------- contact (with the crew block) ---------- */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.contact-copy h2 { margin-bottom: 0.6rem; }
.contact-panel { background: var(--navy); color: var(--plaster); border-radius: var(--radius); padding: 0.3rem 1.2rem; margin-top: 0.9rem; }
.panel-row { display: grid; grid-template-columns: 4.6rem 1fr; gap: 0.8rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(244, 239, 230, 0.14); text-decoration: none; align-items: baseline; }
.panel-row:last-child { border-bottom: 0; }
.panel-k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oak-light); }
.panel-v { font-size: 0.94rem; }
a.panel-row .panel-v { font-family: var(--display); font-size: 1.08rem; color: #fff; }
a.panel-row:hover .panel-v { color: var(--amber); }
.hours .hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.88rem; }
.crew { display: grid; grid-template-columns: 116px 1fr; gap: 1.1rem; align-items: start; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-strong); }
.crew img { width: 116px; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 30%; border-radius: var(--arch); border: 4px solid var(--plaster-2); }
.crew-copy h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.crew-copy p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0.5rem; }
.crew-facts { display: flex; gap: 1.4rem; margin-top: 0.4rem; }
.crew-facts li { display: flex; flex-direction: column; }
.crew-facts strong { font-family: var(--display); font-size: 1.4rem; color: var(--navy); font-weight: 400; line-height: 1; }
.crew-facts span { font-size: 0.76rem; color: var(--muted); margin-top: 0.2rem; }
.contact-card { background: var(--plaster); border-radius: var(--radius); padding: clamp(1.2rem, 2.5vw, 1.8rem); border: 1px solid var(--line); box-shadow: var(--shadow); min-width: 0; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.2rem; }
/* visit picker inside the estimate form */
.visit { padding-top: 0.9rem; border-top: 1px solid var(--line-strong); gap: 0.6rem; scroll-margin-top: 110px; }
.book-demo { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--muted); margin: 0; }
.visit-pick { margin: 0; font-size: 0.9rem; color: var(--teal-deep); }
.visit-pick strong { font-weight: 600; }
.visit-clear { border: 0; background: none; color: var(--muted); text-decoration: underline; cursor: pointer; padding: 0 0.2rem; font-size: 0.85rem; }
.visit-clear:hover { color: var(--navy); }
.days { display: grid; grid-template-columns: repeat(10, 1fr); gap: 0.35rem; }
.day {
  display: flex; flex-direction: column; align-items: center; gap: 0.05rem; padding: 0.45rem 0.15rem 0.4rem; line-height: 1.1;
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 10px; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.day:hover:not(:disabled) { border-color: var(--navy); transform: translateY(-1px); }
.day-wd { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.day-n { font-family: var(--display); font-size: 1.15rem; color: var(--navy); }
.day-m { font-size: 0.62rem; color: var(--muted); }
.day.is-on { background: var(--navy); border-color: var(--navy); }
.day.is-on .day-wd, .day.is-on .day-n, .day.is-on .day-m { color: #fff; }
.day:disabled { cursor: not-allowed; background: var(--plaster-2); border-style: dashed; }
.day:disabled .day-n { color: var(--muted); text-decoration: line-through; }
.day:disabled .day-m { color: var(--danger); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.slots { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.slot {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem; padding: 0.8rem 1rem; text-align: left;
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
}
.slot:hover:not(:disabled) { border-color: var(--navy); }
.slot strong { font-family: var(--display); font-weight: 400; font-size: 1.15rem; color: var(--navy); }
.slot span { font-size: 0.84rem; color: var(--ink-soft); }
.slot em { position: absolute; top: 0.7rem; right: 0.8rem; font-style: normal; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-soft); padding: 0.2rem 0.5rem; border-radius: 999px; }
.slot:disabled { cursor: not-allowed; background: var(--plaster-2); border-style: dashed; }
.slot:disabled strong, .slot:disabled span { color: var(--muted); }
.slot:disabled em { color: var(--danger); background: rgba(181, 72, 58, 0.12); }
.slot.is-on { border-color: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { flex-direction: row; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.form-mode { margin: 0; font-size: 0.82rem; color: var(--muted); max-width: 34ch; }
.form-ok { margin: 0; padding: 0.8rem 1rem; background: var(--teal-soft); border-left: 4px solid var(--teal); border-radius: 6px; font-size: 0.92rem; }

/* ---------- faq ---------- */
.faq { background: var(--plaster); }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; align-items: start; border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 0.85rem 0; font-family: var(--display); font-size: 1.05rem; color: var(--navy);
}
.faq-item .faq-plus { width: 24px; height: 24px; }
.faq-item p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 0.94rem; max-width: 60ch; }

/* ---------- 404 ---------- */
.notfound { padding-block: var(--section); min-height: 60vh; }
.notfound-inner { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.arch { border-radius: var(--arch); overflow: hidden; aspect-ratio: 4 / 5; background: var(--plaster-2); box-shadow: var(--shadow); border: 8px solid var(--paper); }
.arch-404 { display: grid; place-items: center; background: var(--navy); color: var(--oak-light); font-family: var(--display); font-size: clamp(3rem, 8vw, 6rem); }
.notfound h1 { margin: 0 0 1rem; color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 60; background: rgba(13, 26, 42, 0.92); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lb-figure { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.lb-figure img { max-height: 78vh; width: auto; max-width: 100%; border-radius: var(--radius-sm); }
.lb-figure figcaption { color: var(--plaster); font-size: 0.95rem; text-align: center; max-width: 60ch; }
.lb-btn { position: absolute; background: var(--paper); color: var(--navy); border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- footer (one row) ---------- */
.footer { background: var(--navy-deep); color: rgba(244, 239, 230, 0.8); padding-top: 1.8rem; }
.footer-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem 2.5rem; padding-bottom: 1.4rem; border-bottom: 1px solid rgba(244, 239, 230, 0.12); }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1.3; }
.footer-brand strong { color: #fff; font-family: var(--display); font-weight: 400; font-size: 1rem; }
.footer-brand span { font-size: 0.84rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; font-size: 0.9rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--amber); }
.footer-ext a { color: var(--oak-light); }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem 2rem; padding-block: 1rem; font-size: 0.8rem; color: rgba(244, 239, 230, 0.55); }

/* ---------- desktop breakpoints ---------- */
@media (min-width: 1400px) {
  :root { --wrap: 1260px; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.9rem; }
  .proof { grid-template-columns: repeat(2, auto); gap: 0.8rem 1.4rem; }
  .scope { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-auto-rows: 150px; }
}

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .tile:hover .tile-btn img, .day:hover:not(:disabled) { transform: none; }
}

/* ---------- mobile (append-only; mirrors desktop at 2-up, contact form full width) ---------- */
@media (max-width: 760px) {
  :root { --section: clamp(2rem, 7vw, 2.8rem); --gutter: 0.9rem; }
  body { font-size: 0.96rem; }
  h1 { font-size: clamp(1.55rem, 6.2vw, 2.1rem); }
  h2 { font-size: clamp(1.35rem, 5.2vw, 1.75rem); }
  h3 { font-size: 1.1rem; }
  .sub, .lede { font-size: 0.96rem; }
  .section-head-row { grid-template-columns: 1fr; gap: 0.4rem; align-items: start; }
  .section-head { margin-bottom: 1rem; }

  /* nav */
  .nav-inner { min-height: 60px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-text span:last-child { font-size: 0.98rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -24px rgba(13, 26, 42, 0.5);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem var(--gutter); border-top: 1px solid var(--line); }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 0.7rem var(--gutter) 0.9rem; border-radius: 999px; text-align: center; }

  /* hero stays 2-up */
  .hero { padding-block: 1.2rem 1.6rem; }
  .hero::before { height: 6px; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 0.8rem; align-items: start; }
  .eyebrow { font-size: 0.74rem; margin-bottom: 0.5rem; }
  .hero-copy h1 { margin-bottom: 0.6rem; }
  .hero-actions { gap: 0.45rem; margin: 0.8rem 0 0.9rem; }
  .btn { padding: 0.65rem 0.9rem; font-size: 0.86rem; }
  .proof { grid-template-columns: 1fr 1fr; gap: 0.45rem 0.7rem; }
  .proof strong { font-size: 1.15rem; }
  .proof span { font-size: 0.7rem; max-width: 12ch; }
  .hero-figure { margin-top: 0.4rem; }
  .frame { border-width: 3px; border-radius: 14px; aspect-ratio: 3 / 4; }
  .hero-chip { position: static; margin-top: 0.5rem; font-size: 0.66rem; padding: 0.4rem 0.55rem; max-width: none; }
  .hero-badge { top: -0.3rem; right: -0.2rem; padding: 0.35rem 0.6rem; transform: rotate(2deg); }
  .hero-badge strong { font-size: 0.72rem; }
  .hero-badge span { font-size: 0.56rem; }

  /* services: scope 2-up, menu 2-up */
  .scope { grid-template-columns: 1fr 1fr; gap: 0.45rem; margin-bottom: 0.9rem; }
  .scope li { padding: 0.5rem 0.6rem; }
  .scope li:last-child { grid-column: 1 / -1; }
  .scope strong { font-size: 0.9rem; }
  .scope span { font-size: 0.72rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .menu-col { padding: 0.8rem 0.7rem; border-radius: 14px; border-top-width: 4px; }
  .menu-title { flex-direction: column; align-items: flex-start; gap: 0.15rem; padding-bottom: 0.5rem; }
  .menu-title h3 { font-size: 1.15rem; }
  .menu-title span { font-size: 0.62rem; text-align: left; }
  .menu-item { padding: 0.55rem 0; }
  .menu-head { flex-wrap: wrap; gap: 0.15rem 0.4rem; }
  .menu-head h4 { font-size: 0.86rem; flex-basis: 100%; }
  .menu-head::after { display: none; }
  .menu-price { font-size: 0.88rem; white-space: normal; }
  .menu-item-quote .menu-price { font-size: 0.7rem; }
  .menu-size { font-size: 0.62rem; margin: 0.05rem 0 0.2rem; }
  .menu-incl { font-size: 0.78rem; }
  .menu-quote { font-size: 0.76rem; }
  .field label, .field legend { font-size: 0.72rem; }
  .field input, .field textarea, .select-wrap select { padding: 0.55rem 0.65rem; font-size: 0.86rem; }
  .select-wrap select { padding-right: 2rem; }
  .sel-btn { padding: 0.55rem 2rem 0.55rem 0.65rem; font-size: 0.86rem; }
  .sel-list li { padding: 0.5rem 0.65rem; font-size: 0.86rem; }

  /* gallery: 2 columns, same tiles */
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 128px; gap: 0.5rem; }
  .tile-p { grid-row: span 2; }
  .tile-w { grid-column: span 2; }
  .tile-label { font-size: 0.6rem; top: 0.45rem; left: 0.45rem; }

  /* rentals: 2-up */
  .rentals-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; }
  .rentals .hero-actions { margin-top: 0.8rem; }
  .rentals-points { grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 0.7rem; }
  .rentals-points strong { font-size: 0.86rem; }
  .rentals-points span { font-size: 0.74rem; }
  .rentals-quote { padding: 0.8rem 0.8rem 0.7rem 2rem; border-radius: 12px; }
  .rentals-quote::before { font-size: 2.4rem; top: 0.1rem; left: 0.5rem; }
  .rentals-quote p { font-size: 0.82rem; }
  .rentals-quote footer { font-size: 0.68rem; }

  /* reviews: 2 columns, third card spans */
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .review { padding: 0.9rem 0.85rem 0.8rem; border-radius: 12px; gap: 0.4rem; }
  .review:nth-child(3) { grid-column: span 2; }
  .review-text { font-size: 0.88rem; }
  .review-job { font-size: 0.62rem; }
  .review-meta { font-size: 0.78rem; }

  /* contact: the one exception, full-width form with 2-up fields inside */
  .contact-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .contact-panel { padding: 0.2rem 0.9rem; }
  .panel-row { grid-template-columns: 4.2rem 1fr; padding: 0.55rem 0; gap: 0.5rem; }
  .panel-v { font-size: 0.86rem; }
  a.panel-row .panel-v { font-size: 0.96rem; }
  .crew { grid-template-columns: 84px 1fr; gap: 0.8rem; margin-top: 1rem; padding-top: 0.9rem; }
  .crew img { width: 84px; border-width: 3px; }
  .crew-copy p { font-size: 0.84rem; }
  .crew-facts { gap: 1rem; }
  .crew-facts strong { font-size: 1.15rem; }
  .crew-facts span { font-size: 0.68rem; }
  .contact-card { padding: 0.9rem 0.8rem; border-radius: 14px; }
  .contact-form { grid-template-columns: 1fr 1fr; gap: 0.7rem 0.7rem; }
  .book-demo { font-size: 0.72rem; }
  .days { grid-template-columns: repeat(5, 1fr); gap: 0.3rem; }
  .day-n { font-size: 1rem; }
  .slots { gap: 0.5rem; }
  .slot { padding: 0.6rem 0.7rem; }
  .slot strong { font-size: 0.98rem; }
  .slot span { font-size: 0.72rem; }
  .slot em { top: 0.5rem; right: 0.5rem; font-size: 0.56rem; }
  .form-actions { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .form-mode { max-width: none; font-size: 0.78rem; }

  /* faq: one column of items, still the last section */
  .faq-list { grid-template-columns: 1fr; gap: 0; }
  .faq-item summary { font-size: 0.94rem; padding: 0.7rem 0; gap: 0.6rem; }
  .faq-item .faq-plus { width: 22px; height: 22px; }
  .faq-item p { font-size: 0.84rem; }

  /* 404 */
  .notfound-inner { grid-template-columns: 0.7fr 1.3fr; gap: 1rem; }

  /* lightbox */
  .lightbox { padding: 3.6rem 0.6rem 1rem; }
  .lb-btn { width: 40px; height: 40px; font-size: 1.4rem; }
  .lb-close { top: 0.6rem; right: 0.6rem; }
  .lb-prev { left: 0.4rem; }
  .lb-next { right: 0.4rem; }

  /* footer */
  .footer { padding-top: 1.2rem; }
  .footer-row { gap: 0.8rem 1.2rem; padding-bottom: 0.9rem; }
  .footer-brand img { width: 40px; height: 40px; }
  .footer-brand strong { font-size: 0.9rem; }
  .footer-brand span { font-size: 0.74rem; }
  .footer-links { font-size: 0.8rem; gap: 0.3rem 0.9rem; }
  .footer-base { font-size: 0.7rem; padding-block: 0.7rem; }
}
