/* ===========================================================================
   Ventura Cleaners — Kissimmee, FL

   Design concept: the claim ticket.
   Everything on the page is cut like the paper tag you're handed at the
   counter — punched corners, perforation rules, tabular ticket numbers set in
   typewriter mono, and services hung off a horizontal rail rather than dropped
   into a card grid.

   Corner-radius philosophy: no rounded rectangles anywhere. Panels are
   chamfered at 14px with clip-path, the way a ticket is die-cut. Circles exist
   only where something is genuinely punched (perforations, the score dot).
   =========================================================================== */

:root {
  color-scheme: light;

  /* --- color system --------------------------------------------------- */
  --porcelain:   #f4f2ec;  /* pressed cotton */
  --porcelain-2: #eae7de;
  --white:       #ffffff;
  --navy:        #12303f;  /* pressed navy — the brand */
  --navy-2:      #1b475e;
  --navy-3:      #2c6683;
  --ink:         #14202a;
  --ink-soft:    #55636f;
  --ink-faint:   #5a6774;  /* small text; 5.2:1 on porcelain, 4.7:1 on porcelain-2 */
  --hairline:    #8b97a2;  /* drawn lines only -- never text */
  --line:        #d6d1c5;
  --steam:       #7fb0c9;
  --brass:       #ac7d24;  /* rules, large numerals, decorative marks */
  --brass-ink:   #835c16;  /* brass as small text on light: 5.3:1 */
  --brass-lt:    #d4a951;  /* brass as small text on navy: 7.5:1 */

  /* --- type ----------------------------------------------------------- */
  --display: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ticket:  "Courier Prime", ui-monospace, "Courier New", monospace;

  --wrap: 1180px;
  --gut: 26px;

  /* the die-cut used on every panel */
  --chamfer: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

img, iframe, svg { max-width: 100%; }

.vis-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --- type hierarchy ----------------------------------------------------
   Instrument Serif is set tight and large; it carries every heading. Inter
   handles running text. Courier Prime is reserved for anything that would be
   stamped or written onto a ticket. */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
  color: var(--navy);
}

a { color: var(--navy-2); }

/* The ticket tag: every eyebrow on the page. Typewriter caps behind a punched
   square, the way a tag number is stamped. */
.tag {
  font-family: var(--ticket);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.tag::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--brass);
  flex: none;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}
.tag-light { color: rgba(244, 242, 236, .66); }

.skip {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* A perforation rule — the page's divider. Punched holes, not a border. */
.perf,
.section + .section::before {
  display: block;
  height: 1px;
  background-image: radial-gradient(circle, var(--line) 0 1.6px, transparent 1.8px);
  background-size: 9px 9px;
  background-repeat: repeat-x;
  background-position: center;
}

/* =====================  HEADER  ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--display); font-size: 25px; letter-spacing: -0.015em; }
.brand-sub {
  font-family: var(--ticket);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  padding-block: 5px;
  position: relative;
}
/* Hover slides a brass rule in from the left — mechanical, not a fade. */
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s cubic-bezier(.3,.8,.3,1);
}
.nav a:hover::after { transform: scaleX(1); }

.header-end { display: flex; align-items: center; gap: 18px; }

.lang {
  display: flex;
  border: 1px solid var(--navy);
  flex: none;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}
.lang button {
  font: inherit;
  font-family: var(--ticket);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 11px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}
.lang button[aria-pressed="true"] { background: var(--navy); color: #fff; }

.header-call {
  font-family: var(--ticket);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--brass);
  padding-bottom: 1px;
}

/* =====================  BUTTONS  =====================
   Die-cut corners, no pills, no shadows. The press on hover is a 1px shift
   down and in — a stamp coming down on paper. */

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 0;
  clip-path: var(--chamfer);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  box-shadow: inset 0 0 0 1.5px transparent;
  transition: background-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #0b2431; }

.btn-line {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-line:hover { box-shadow: inset 0 0 0 1.5px var(--navy); background: rgba(18,48,63,.05); }

.btn-invert { background: var(--white); color: var(--navy); }
.btn-invert:hover { background: var(--brass); color: #fff; }

.btn-line-light {
  background: transparent;
  color: var(--porcelain);
  box-shadow: inset 0 0 0 1.5px rgba(244,242,236,.4);
}
.btn-line-light:hover { box-shadow: inset 0 0 0 1.5px var(--porcelain); background: rgba(244,242,236,.1); }

/* =====================  HERO  =====================
   Asymmetric: copy on the porcelain field, a navy panel bled to the right
   edge, and the ticket straddling the seam between them. */

.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 34%;
  background: var(--navy);
  clip-path: polygon(56px 0, 100% 0, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 60px;
  align-items: center;
  padding-block: 92px 100px;
}

.hero h1 {
  font-size: clamp(46px, 7.4vw, 94px);
  line-height: .95;
  margin-bottom: 26px;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { font-style: italic; color: var(--navy-3); padding-left: .06em; }

.lede {
  font-size: clamp(18px, 1.7vw, 20.5px);
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 32px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 28px 0 0;
  font-size: 14.5px;
}
.stars { color: var(--brass); letter-spacing: .1em; }
.stars.big { font-size: 19px; }
.hero-rating a { color: var(--ink-soft); text-underline-offset: 3px; }

/* --- the claim ticket --- */

.hero-ticket { display: flex; justify-content: center; }

.ticket {
  width: 100%;
  max-width: 340px;
  background: var(--white);
  color: var(--navy);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  padding: 22px 24px 20px;
  transform: rotate(-1.6deg);
  border-top: 3px solid var(--brass);
}

.ticket-stub {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--ticket);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  padding-bottom: 14px;
}
.ticket-brand { color: var(--navy); }
.ticket-no { color: var(--brass-ink); font-variant-numeric: tabular-nums; }

/* the tear line across the ticket */
.ticket-perf {
  height: 1px;
  margin-inline: -24px;
  background-image: radial-gradient(circle, var(--line) 0 1.7px, transparent 1.9px);
  background-size: 9px 9px;
  background-repeat: repeat-x;
  background-position: center;
}

.ticket-body { padding-block: 16px 6px; }
.ticket-art { display: block; width: 100%; height: auto; }
.ticket-art .rail { stroke: var(--brass); stroke-width: 2.2; stroke-linecap: round; fill: none; }
.ticket-art .garment path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ticket-art .lead path  { stroke: var(--navy); stroke-width: 2.1; }
.ticket-art .ghost path { stroke: var(--steam); stroke-width: 2.2; opacity: .5; }
.ticket-art .crease { stroke: var(--steam); stroke-width: 1.4; }

.ticket-foot {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--ticket);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-soft);
}

/* =====================  SECTIONS  ===================== */

.section { padding-block: 92px; position: relative; }
.section + .section::before {
  content: "";
  position: absolute;
  top: 0; left: var(--gut); right: var(--gut);
}

.sec-head { max-width: 44ch; margin-bottom: 54px; }
.section h2 { font-size: clamp(34px, 4.6vw, 54px); }
.sec-lede { margin: 18px 0 0; color: var(--ink-soft); font-size: 17.5px; }

/* --- value ------------------------------------------------------------- */

.statement {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  max-width: 20ch;
  margin-bottom: 58px;
}
.statement span, .statement em { display: block; }
.statement em { font-style: italic; color: var(--navy-3); }

.reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  counter-reset: reason;
}
.reasons > div {
  counter-increment: reason;
  padding: 0 34px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 26px;
}
.reasons > div:first-child { border-left: 0; padding-left: 0; }
.reasons > div::before {
  content: counter(reason, decimal-leading-zero);
  display: block;
  font-family: var(--ticket);
  font-size: 12px;
  font-weight: 700;
  color: var(--brass-ink);
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.reasons h3 { font-size: 27px; margin-bottom: 10px; }
.reasons p { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* --- services on a rail ------------------------------------------------
   The three services hang from one brass rail, the way garments hang behind
   the counter. Deliberately not a card grid. */

.services-sec { background: var(--porcelain-2); }

.rail {
  list-style: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  position: relative;
  padding-top: 74px;
}
.rail::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brass);
}
.rail li {
  counter-increment: item;
  position: relative;
}
/* the hook joining each service to the rail */
.rail li::before {
  content: "";
  position: absolute;
  top: -74px; left: 26px;
  width: 1.5px; height: 40px;
  background: var(--hairline);
}
.rail-icon {
  position: absolute;
  top: -46px; left: 6px;
  width: 42px; height: 42px;
  padding: 5px;
  background: var(--porcelain-2);
  color: var(--navy);
}
.rail h3 { font-size: 29px; margin-bottom: 10px; }
.rail p { margin: 0; color: var(--ink-soft); font-size: 16px; max-width: 34ch; }

/* the "not sure?" panel — the one navy block in this section */
.ask {
  margin-top: 64px;
  background: var(--navy);
  color: rgba(244,242,236,.8);
  clip-path: var(--chamfer);
  padding: 38px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 48px;
  align-items: center;
}
.ask h3 { color: #fff; font-size: 30px; margin-bottom: 10px; }
.ask p { margin: 0; font-size: 16.5px; max-width: 60ch; }

/* --- how it works: three torn ticket stubs ----------------------------- */

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.steps li {
  counter-increment: step;
  background: var(--white);
  clip-path: var(--chamfer);
  border-top: 3px solid var(--navy);
  padding: 26px 28px 30px;
  position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--ticket);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--brass);
  margin-bottom: 20px;
}
/* the tear between the number and the copy */
.steps li::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 92px;
  height: 1px;
  background-image: radial-gradient(circle, var(--line) 0 1.6px, transparent 1.8px);
  background-size: 9px 9px;
  background-repeat: repeat-x;
  background-position: center;
}
.steps h3 { font-size: 26px; margin-bottom: 9px; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 15.8px; }

/* --- reviews ------------------------------------------------------------ */

.reviews { background: var(--porcelain-2); }

.reviews-inner {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

/* the score, cut as a hanging tag with a punched hole */
.score-tag {
  background: var(--white);
  clip-path: polygon(50% 0, 100% 22px, 100% 100%, 0 100%, 0 22px);
  padding: 44px 24px 30px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--brass);
}
.score-tag::before {
  content: "";
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--porcelain-2);
}
.score {
  display: block;
  font-family: var(--display);
  font-size: 74px;
  line-height: 1;
  color: var(--navy);
  margin-top: 18px;
}
.score-sub {
  display: block;
  font-family: var(--ticket);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}
.score-tag .stars { display: block; margin-top: 6px; }

.reviews-copy h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 16px; max-width: 18ch; }
.reviews-copy p { color: var(--ink-soft); max-width: 52ch; margin: 0 0 26px; }

/* --- hours & location ---------------------------------------------------- */

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.hours th, .hours td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.hours tr:first-child th, .hours tr:first-child td { border-top: 2px solid var(--navy); }
.hours th { color: var(--ink); }
.hours td {
  text-align: right;
  color: var(--ink-soft);
  font-family: var(--ticket);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.hours .closed th, .hours .closed td { color: var(--ink-faint); }

.note { margin: 18px 0 0; color: var(--ink-faint); font-size: 14px; }

address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
}
.visit-phone { margin: 0 0 26px; }
.visit-phone a {
  font-family: var(--ticket);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--brass);
}

.map {
  margin-top: 56px;
  clip-path: var(--chamfer);
  background: var(--porcelain-2);
  border-top: 3px solid var(--navy);
}
.map iframe { display: block; width: 100%; height: 400px; border: 0; }

/* --- faq ----------------------------------------------------------------- */

.faq-sec { background: var(--porcelain-2); }

.faq { margin: 0; border-top: 2px solid var(--navy); }
.faq > div {
  display: grid;
  grid-template-columns: minmax(0, 26ch) minmax(0, 1fr);
  gap: 20px 48px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.faq dt {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
}
.faq dd { margin: 0; color: var(--ink-soft); font-size: 16px; }

/* =====================  CLOSER  ===================== */

.closer { background: var(--navy); color: var(--porcelain); }
.closer-inner { padding-block: 100px 108px; }
.closer h2 {
  color: #fff;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.closer h2 span, .closer h2 em { display: block; }
.closer h2 em { font-style: italic; color: var(--steam); }
.closer-lede {
  font-size: 18.5px;
  color: rgba(244,242,236,.72);
  max-width: 50ch;
  margin: 0 0 36px;
}

/* =====================  FOOTER  ===================== */

.site-footer {
  background: #0c222e;
  color: rgba(244,242,236,.62);
  padding-top: 60px;
  font-size: 15px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 48px;
}
.site-footer p { margin: 0 0 6px; }
.site-footer a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }
.site-footer a:hover { border-bottom-color: var(--brass); }

.footer-name {
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px !important;
}
.footer-h {
  font-family: var(--ticket);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-lt);
  margin-bottom: 12px !important;
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 20px 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--ticket);
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(244,242,236,.62);
}
.footer-legal p { margin: 0; }

/* =====================  MOBILE CALL BAR  ===================== */

.call-bar { display: none; }

/* =====================  MOTION  =====================
   Crisp and short — this is a shop that presses things, not a shop that
   drifts. Hidden state only applies once JS has marked the document, so a
   failed script can never blank the phone number or the hours. */

@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(12px); }
  .js .reveal.in {
    opacity: 1;
    transform: none;
    transition: opacity .45s cubic-bezier(.25,.8,.35,1), transform .45s cubic-bezier(.25,.8,.35,1);
    transition-delay: var(--d, 0ms);
  }

  /* The ticket drops onto the counter, then the garments slide along the rail. */
  .js .ticket {
    opacity: 0;
    transform: rotate(-5deg) translateY(-18px);
    animation: drop .7s cubic-bezier(.2,.9,.3,1) .1s forwards;
  }
  .js .ticket-art .garment {
    opacity: 0;
    animation: slide .55s cubic-bezier(.25,.8,.35,1) forwards;
  }
  .js .ticket-art .garment:nth-child(2) { animation-delay: .6s; }
  .js .ticket-art .garment:nth-child(3) { animation-delay: .78s; }
  .js .ticket-art .garment:nth-child(4) { animation-delay: .96s; }
}

@keyframes drop  { to { opacity: 1; transform: rotate(-1.6deg) translateY(0); } }
@keyframes slide { from { transform: translateX(14px); } to { opacity: 1; transform: none; } }

/* =====================  RESPONSIVE  ===================== */

@media (max-width: 1020px) {
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-block: 64px 76px; }
  .hero-ticket { justify-content: flex-start; }
  .ticket { max-width: 300px; }
  .reasons { grid-template-columns: 1fr; }
  .reasons > div { border-left: 0; padding: 0 0 26px; border-bottom: 1px solid var(--line); }
  .reasons > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .reasons > div + div { padding-top: 26px; }
  /* Stacked, the rail turns on its side: one vertical brass line down the
     left with each service ticked off it, instead of three hooks hanging
     from a horizontal bar that is no longer above them. */
  .rail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 0;
    padding-left: 46px;
  }
  .rail::before {
    top: 10px;
    bottom: 10px;
    left: 0;
    right: auto;
    width: 3px;
    height: auto;
  }
  .rail li::before {
    top: 21px;
    left: -46px;
    width: 26px;
    height: 1.5px;
  }
  .rail-icon {
    position: static;
    display: block;
    width: 34px; height: 34px;
    padding: 0;
    background: none;
    margin-bottom: 12px;
  }
  .rail p { max-width: none; }
  .steps { grid-template-columns: 1fr; }
  .steps li::after { top: 88px; }
  .reviews-inner { grid-template-columns: 1fr; gap: 32px; }
  .score-tag { max-width: 240px; }
  .visit { grid-template-columns: 1fr; gap: 46px; }
  .faq > div { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  :root { --gut: 20px; }

  .header-inner { min-height: 64px; gap: 14px; }
  .nav, .header-call { display: none; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-name { font-size: 21px; }

  .section { padding-block: 62px; }
  .closer-inner { padding-block: 72px 78px; }
  .sec-head { margin-bottom: 40px; }

  .btn { flex: 1 1 auto; justify-content: center; }
  .ask { grid-template-columns: 1fr; padding: 28px 24px; }
  .map { margin-top: 40px; }
  .map iframe { height: 300px; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-legal { flex-direction: column; gap: 8px; }

  /* On a phone the phone number is the whole point of the page. */
  .call-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-top: 3px solid var(--brass);
  }
  .call-bar svg { width: 19px; height: 19px; }
  .site-footer { padding-bottom: 72px; }
}

@media print {
  .site-header, .call-bar, .map, .lang { display: none; }
  body { background: #fff; }
  .closer, .site-footer { background: #fff; color: #000; }
  .closer h2, .footer-name { color: #000; }
}
