/* =====================================================================
   Yong's Tailor - 3606 Oak Lawn Ave, Dallas, TX
   A working shop's counter, not an atelier: slate grounds, chalk paper,
   and the yellow of a measuring tape. The house ornament is the TAPE RULE,
   a ruled edge with inch ticks, and the house shape is the CLAIM TICKET,
   the docket written at the counter and pinned to the work.

   Type is deliberately not the fleet's tailoring register: a condensed
   signwriter's grotesque (Oswald) over a plain civic sans (Public Sans),
   instead of a high-contrast serif over a geometric.

   Every colour pair on this page was measured on rendered pixels
   (_work/contrast.cjs), not eyeballed. No external requests. No inline
   styles anywhere.
   ===================================================================== */

@font-face {
  font-family: 'Oswald';
  src: url('fonts/oswald-latin-var.woff2') format('woff2');
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Public Sans';
  src: url('fonts/publicsans-latin-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* dark grounds */
  --slate:    #232A2E;
  --slate-2:  #1B2124;
  --slate-3:  #2C3438;
  --slate-d:  #161B1E;

  /* light grounds */
  --chalk:    #F2F0EA;
  --chalk-2:  #E6E3DA;
  --card:     #FCFBF7;

  /* ink */
  --text:     #1B2124;
  --muted:    #4E5A5C;
  --rule:     #D3CFC4;

  /* the tape */
  --tape:     #E7B10F;   /* fills, rules, ticks. Decoration only. */
  --tape-d:   #7A5405;   /* tape-coloured TEXT on light grounds */
  --tape-l:   #F6CC4A;   /* tape-coloured TEXT on dark grounds */

  /* text on dark grounds */
  --dim:      #C3C9C8;
  --dim-2:    #A4ADAC;

  --display: 'Oswald', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --sans:    'Public Sans', 'Segoe UI', Helvetica, Arial, sans-serif;

  --shell: 1180px;
  --gut: 32px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--slate-2);
  color: var(--chalk);
  padding: 12px 20px;
  font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--tape);
  outline-offset: 3px;
}

/* ===================================================== PREVIEW BANNER (furniture) */
.pbar {
  background: var(--slate-d);
  color: var(--dim);
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 2px solid var(--tape);
}
.pbar-in {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.pbar-txt { margin: 0; max-width: 62ch; }
.pbar-acts {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}
.pbar-btn {
  background: var(--tape);
  color: var(--slate-d);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.pbar-btn:hover { background: var(--tape-l); }
.pbar-mail { color: var(--tape-l); white-space: nowrap; }

/* ================================================================ MASTHEAD */
.mast {
  background: var(--slate-2);
  color: var(--chalk);
}
.mast-in {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { flex: none; border-radius: 10px; }
.brand-txt { display: block; }
.brand-name {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: .012em;
}
.brand-sub {
  display: block;
  font-size: 12.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin-top: 3px;
}

.nav { display: flex; gap: 22px; }
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--chalk); border-bottom-color: var(--tape); }

.burger {
  display: none;
  width: 46px; height: 40px;
  background: none;
  border: 1px solid rgba(246, 204, 74, .45);
  border-radius: 3px;
  cursor: pointer;
  padding: 10px 9px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--tape-l);
  margin: 3px 0;
}

/* ================================================================= BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .045em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 2px;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { font-size: 16px; padding: 16px 28px; }

.btn-tape { background: var(--tape); color: var(--slate-d); }
.btn-tape:hover { background: var(--tape-l); }

.btn-ghost { border-color: rgba(246, 204, 74, .55); color: var(--tape-l); }
.btn-ghost:hover { background: rgba(246, 204, 74, .12); }

/* =================================================== SHARED SECTION FURNITURE */
section { padding: 84px 0; }

.label {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tape-d);
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: "";
  width: 34px;
  height: 8px;
  flex: none;
  border-top: 2px solid var(--tape);
  background-image: repeating-linear-gradient(to right,
    var(--tape) 0 2px, transparent 2px 9px);
}
.label-d { color: var(--tape-l); }

.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: .006em;
  margin: 0 0 18px;
}
.h2-d { color: var(--chalk); }

.lede {
  font-size: 20px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0 0 8px;
  max-width: 56ch;
}
.lede-d { color: var(--dim); }

.frame {
  overflow: hidden;
  background: var(--slate-3);
  border-radius: 2px;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

.cap {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 10px;
}
.cap-d { color: var(--dim-2); }
.cap-src { display: block; }
.cap-note { display: block; }

.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--tape-d);
  background: #F3E6C4;
  border: 1px dashed #A8823A;
  border-radius: 2px;
  padding: 2px 9px;
}
.chip-d {
  color: #23292C;
  background: #E9D089;
  border-color: #E7B10F;
}

/* the key line of an honesty slot, used by the ticket-shaped prices panel */
.slot-k {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .03em;
  color: var(--tape-d);
  text-transform: uppercase;
}
/* ===================================================================== HERO */
.hero {
  background: var(--slate);
  color: var(--chalk);
  padding: 0 0 70px;
  position: relative;
}
.hero-in {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: start;
  padding-top: 72px;
}
.hero-eyebrow {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tape-l);
}
.hero-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: .004em;
  margin: 0 0 22px;
  max-width: 15ch;
}
.hero-lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--dim);
  margin: 0 0 30px;
  max-width: 46ch;
}
.hero-cta {
  margin: 0 0 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* the hero proof: one five-star line, no numbers anywhere on this page */
.hquote {
  margin: 0;
  background: var(--slate-3);
  border-left: 4px solid var(--tape);
  padding: 22px 26px;
  max-width: 52ch;
}
.hquote blockquote { margin: 0; }
.hquote p {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.38;
  color: var(--chalk);
}
.hquote figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--dim-2);
}
.stars {
  margin: 0 0 12px;
  color: var(--tape-l);
  font-size: 17px;
  letter-spacing: .22em;
  line-height: 1;
}

.hquote .q-src { color: var(--tape-l); }

.hero-fig { margin: 0; }
.hero-shot { aspect-ratio: 4 / 5; }
.hero-fig .cap { color: var(--dim-2); }

/* ========================================================== THE THIRTY YEARS */
.years {
  background: var(--chalk);
  border-bottom: 1px solid var(--rule);
}
.years-in {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.years-fig { margin: 0; }
.years-fig .frame { aspect-ratio: 15 / 9; }

.years-q {
  margin: 0 0 22px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: .004em;
  color: var(--text);
}
.years-src {
  margin: 0 0 26px;
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  border-left: 3px solid var(--tape);
}
.years-body { margin: 0; font-size: 18px; color: var(--muted); max-width: 52ch; }

/* ================================================================= THE WORK */
.work {
  background: var(--slate-2);
  color: var(--chalk);
}
.work-head {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 44px;
}
.work-fig { margin: 0; }
.work-fig .frame { aspect-ratio: 14 / 9; }

/* the ticket board */
.tickets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ticket {
  position: relative;
  background: var(--card);
  color: var(--text);
  padding: 26px 22px 24px;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
  border-top: 4px solid var(--tape);
}
.ticket::after {
  content: "";
  position: absolute;
  top: 16px; right: 18px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--chalk-2);
  border: 1px solid var(--rule);
}
.ticket .ticket-n {
  color: var(--text);
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: .012em;
}
.ticket p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
}
/* the lead ticket runs double width, so the board fills its rows instead of
   leaving an orphan cell beside the last class */
.ticket-lead { grid-column: span 2; }

.ticket-slot {
  grid-column: 1 / -1;
  background: #2C2A22;
  color: var(--dim);
  border-top: 4px dashed var(--tape);
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
  padding: 24px 24px 22px;
  font-size: 15.5px;
  line-height: 1.6;
}
.ticket-slot::after { display: none; }
.ticket-slot p { color: var(--dim); font-size: 15.5px; margin: 0 0 9px; }
.ticket-slot p:last-child { margin-bottom: 0; }
.ticket-slot /* the key line of an honesty slot, used by the ticket-shaped prices panel */
.slot-k { display: block; margin-bottom: 8px; font-size: 19px; }

/* ================================================================== REVIEWS */
.words { background: var(--chalk-2); }
.words-head { margin-bottom: 40px; }
.pull {
  font-family: var(--display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: .004em;
  margin: 0 0 16px;
  max-width: 24ch;
}
.words-attr { margin: 0; font-size: 15px; color: var(--muted); }
.q-src { display: block; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--tape-d); margin-top: 3px; }

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quote {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--tape);
  border-radius: 2px;
  padding: 26px 26px 22px;
}
.quote .stars { color: var(--tape-d); }
.quote blockquote { margin: 0; }
.quote blockquote p {
  margin: 0;
  font-size: 17px;
  line-height: 1.66;
}
.quote figcaption {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 700;
}

.themes {
  margin-top: 38px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 26px 28px 24px;
}
.themes-h {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .02em;
}
.theme-l {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.theme-l li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--chalk);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 7px 13px;
  font-size: 15px;
}
.theme-n {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--tape-d);
}
.src { margin: 0; font-size: 13px; color: var(--muted); }

/* ==================================================================== VISIT */
.visit {
  background: var(--slate-3);
  color: var(--chalk);
}
.visit-in {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: start;
}
.visit-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: 46px;
  line-height: 1.06;
  margin: 0 0 6px;
  color: var(--chalk);
}
.visit-city { margin: 0 0 26px; font-size: 22px; color: var(--dim); }
.visit-cta { margin: 0 0 30px; display: flex; flex-wrap: wrap; gap: 14px; }

.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(246, 204, 74, .22);
}
.facts-k {
  flex: none;
  width: 150px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tape-l);
  padding-top: 3px;
}
.facts-v { color: var(--chalk); }

.hours {
  background: var(--slate-2);
  border-top: 4px solid var(--tape);
  padding: 30px 30px 26px;
}
.hours-h {
  margin: 0 0 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: .02em;
  color: var(--chalk);
}
.hours-open {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.05;
  color: var(--tape-l);
}
.hours-open-k {
  margin: 0 0 22px;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim-2);
}
.hrs { margin: 0; }
.hrs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(246, 204, 74, .18);
}
.hrs-row dt { font-size: 15.5px; color: var(--dim); }
.hrs-row dd { margin: 0; }
.hours-note {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim-2);
  border-left: 2px dashed #8A7638;
  padding-left: 14px;
}
/* ================================================================== REQUEST */
.ask { background: var(--chalk); }
.ask-in {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: start;
}
.ask-fig { margin: 26px 0 0; }
.ask-fig .frame { aspect-ratio: 22 / 15; }
.ask-alt { margin: 22px 0 0; font-size: 16px; color: var(--muted); }
.ask-alt a { font-weight: 700; color: var(--tape-d); }

.form-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--tape);
  border-radius: 2px;
  padding: 32px 32px 28px;
}
.form-h {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: .02em;
}
.form-sub { margin: 0 0 22px; font-size: 16px; color: var(--muted); }

.f { margin: 0 0 16px; display: block; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f label {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.f input, .f select, .f textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  background: #F1EEE6;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 11px 13px;
}
.f textarea { resize: vertical; line-height: 1.6; }
.f input::placeholder, .f textarea::placeholder { color: #6A7272; }

.f-send { margin: 22px 0 0; }
.btn-off {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #5F6A6B;
  background: transparent;
  border: 2px dashed #9AA3A3;
  border-radius: 2px;
  padding: 14px 26px;
}
.f-note {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  border-left: 2px dashed #B79B54;
  padding-left: 14px;
}

/* ==================================================== ABOUT THIS PREVIEW (furniture) */
.preview {
  background: var(--chalk-2);
  border-top: 1px solid var(--rule);
  padding: 66px 0;
}
.about-preview {
  max-width: 74ch;
  border-left: 3px solid var(--tape);
  padding-left: 26px;
}
.ap-h {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: .02em;
}
.about-preview p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}
.about-preview p:last-child { margin-bottom: 0; }

/* =================================================================== FOOTER */
.foot {
  background: var(--slate-2);
  color: var(--dim);
  padding-top: 58px;
}
.foot-in {
  display: grid;
  grid-template-columns: 1.25fr .85fr .95fr .95fr;
  gap: 40px;
  padding-bottom: 46px;
}
.foot-name {
  margin: 14px 0 6px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  color: var(--chalk);
  letter-spacing: .012em;
}
.foot-sub { margin: 0; font-size: 15px; line-height: 1.6; }
.foot-k {
  margin: 0 0 12px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tape-l);
}
.foot-col a { color: var(--dim); text-decoration: none; display: block; padding: 4px 0; }
.foot-col a:hover { color: var(--chalk); text-decoration: underline; }
.foot-col p { margin: 0 0 6px; font-size: 16px; }
.foot-bar {
  border-top: 1px solid rgba(246, 204, 74, .18);
  padding-top: 20px;
  padding-bottom: 26px;
}
.foot-bar p { margin: 0; font-size: 14px; color: var(--dim-2); }

/* ================================================================ 404 PAGE */
.nf {
  min-height: 74vh;
  display: flex;
  align-items: center;
  background: var(--slate);
  color: var(--chalk);
  padding: 70px 0;
}
.nf-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: 58px;
  line-height: 1.05;
  margin: 0 0 16px;
}
.nf p { color: var(--dim); font-size: 19px; max-width: 46ch; margin: 0 0 28px; }
.nf .nf-acts { display: flex; flex-wrap: wrap; gap: 14px; max-width: none; }

/* =============================================================== ANIMATION */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.in-view { opacity: 1; transform: none; }
.js .reveal-2 { transition-delay: .07s; }
.js .reveal-3 { transition-delay: .14s; }
.js .reveal-4 { transition-delay: .21s; }
.js .reveal-5 { transition-delay: .28s; }
.js .reveal-6 { transition-delay: .35s; }
.js .reveal-7 { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================== RESPONSIVE */
@media (max-width: 1080px) {
  .hero-h { font-size: 58px; }
  .tickets { grid-template-columns: repeat(2, 1fr); }
  .ticket-lead { grid-column: span 1; }
  .foot-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --gut: 24px; }
  section { padding: 64px 0; }

  .burger { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    z-index: 40;
    background: var(--slate-d);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    border-bottom: 2px solid var(--tape);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(246, 204, 74, .16); }
  .mast { position: relative; }
  .mast-cta { display: none; }

  .hero-in,
  .years-in,
  .work-head,
  .visit-in,
  .ask-in { grid-template-columns: 1fr; gap: 36px; }
  .hero-in { padding-top: 52px; }
  .hero { padding-bottom: 56px; }
  .hero-h { font-size: 46px; max-width: none; }
  .hero-lede, .lede { font-size: 18.5px; }
  .h2, .visit-h { font-size: 34px; }
  .pull { font-size: 30px; max-width: none; }
  .years-q { font-size: 28px; }
  .hours-open { font-size: 38px; }

  .quotes { grid-template-columns: 1fr; }
  .form-card { padding: 26px 22px 24px; }
  .ask-fig { margin-top: 20px; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .hero-h { font-size: 39px; }
  .h2, .visit-h { font-size: 30px; }
  .pull { font-size: 26px; }
  .years-q { font-size: 25px; }
  .hquote p { font-size: 20px; }
  .tickets { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .foot-in { grid-template-columns: 1fr; gap: 30px; }
  .facts-k { width: 100%; }
  .btn, .btn-lg { width: 100%; text-align: center; }
  .pbar-btn { width: 100%; text-align: center; }
  .hours { padding: 24px 20px 22px; }
  .brand-name { font-size: 21px; }
  .brand-sub { font-size: 10.6px; letter-spacing: .06em; white-space: nowrap; }
}
