/* ==========================================================================
   Tiger Hibachi — Hibachi Party at Home CT (hibachipartyathomect.com)
   Palette: charcoal griddle, torch ember, sake gold, bamboo green, rice cream.
   ========================================================================== */

:root {
    --ink:        #12100e;
    --ink-2:      #1d1916;
    --ink-3:      #2b2420;
    --ember:      #e03a17;
    --ember-2:    #ff6a2b;
    --gold:       #f2a71b;
    --gold-2:     #ffc85c;
    --bamboo:     #1f6f52;
    --cream:      #fcf7f0;
    --cream-2:    #f4ebdd;
    --white:      #ffffff;
    --text:       #221c18;
    --text-soft:  #5f524a;
    --line:       #e6dac8;
    --line-dark:  rgba(255, 255, 255, .14);

    --radius:     16px;
    --radius-lg:  26px;
    --radius-sm:  10px;
    --shadow:     0 10px 28px rgba(18, 16, 14, .09);
    --shadow-lg:  0 26px 64px rgba(18, 16, 14, .24);
    --transition: .25s ease;
    --header-h:   74px;
    --maxw:       1180px;

    --font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
    --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 14px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.72;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--ember); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ember-2); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.08;
    margin: 0 0 .55em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.95rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); letter-spacing: .8px; }
h4 { font-size: 1.05rem; letter-spacing: 1px; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .4em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 830px; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    background: var(--ember); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
}
.header-inner {
    height: var(--header-h);
    display: flex; align-items: center; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.logo a { display: flex; align-items: center; gap: 11px; color: var(--white); }
.logo a:hover { opacity: .85; color: var(--white); }
.logo img { width: 46px; height: 46px; border-radius: 50%; background: #fff; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--font-display); font-size: 1.32rem; letter-spacing: 1.4px; color: var(--gold-2); }
.logo-sub { font-size: .66rem; letter-spacing: 2.6px; text-transform: uppercase; color: rgba(255,255,255,.66); margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
    color: rgba(255,255,255,.84); font-size: .93rem; font-weight: 600;
    letter-spacing: .3px; padding: 6px 0; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-2); border-bottom-color: var(--ember); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { color: var(--white); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.header-phone:hover { color: var(--gold-2); }

.nav-toggle {
    display: none; background: none; border: 1px solid var(--line-dark);
    border-radius: 9px; width: 46px; height: 42px; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px auto; }

.mobile-nav {
    position: fixed; inset: 0; z-index: 150; background: var(--ink);
    height: 100dvh; overflow-y: auto; padding: 26px 24px 40px;
    transform: translateX(100%); transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
    display: block; color: #fff; font-family: var(--font-display); font-size: 1.5rem;
    letter-spacing: 1px; padding: 14px 0; border-bottom: 1px solid var(--line-dark);
    text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--gold-2); }
.mobile-nav-close {
    background: none; border: 0; color: #fff; font-size: 2.2rem; line-height: 1;
    margin-left: auto; display: block; cursor: pointer; padding: 0 4px 14px;
}
.mobile-nav .btn { margin-top: 22px; }
.mobile-nav .btn:hover { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-body); font-weight: 700; font-size: .95rem;
    letter-spacing: .3px; padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 8px 22px rgba(224, 58, 23, .3); }
.btn-primary:hover { background: var(--ember-2); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); color: var(--ink); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); color: #fff; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Section furniture ---------- */
section { position: relative; }
.section { padding: 84px 0; }
.section-sm { padding: 58px 0; }
.section-dark { background: var(--ink); color: rgba(255,255,255,.86); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-cream { background: var(--cream-2); }

.eyebrow {
    display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; color: var(--ember); margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold-2); }

.section-head { max-width: 760px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-soft); font-size: 1.06rem; margin-bottom: 0; }
.section-dark .section-head p { color: rgba(255,255,255,.76); }

.lede { font-size: 1.13rem; color: var(--text-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(18,16,14,.72) 0%, rgba(18,16,14,.55) 42%, rgba(18,16,14,.93) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 130px 22px 68px; }
.hero h1 { color: #fff; text-shadow: 0 3px 24px rgba(0,0,0,.4); }
.hero h1 .accent { display: block; color: var(--gold-2); }
.hero-lede { max-width: 660px; font-size: 1.1rem; color: rgba(255,255,255,.9); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.hero-badges span, .hero-badges li {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px; padding: 7px 16px; font-size: .85rem; font-weight: 600;
}

/* page hero (inner pages) */
.page-hero { background: var(--ink); color: #fff; padding: 118px 0 62px; position: relative; overflow: hidden; }
.page-hero::before {
    content: ''; position: absolute; right: -120px; top: -160px; width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(224,58,23,.5) 0%, rgba(224,58,23,0) 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 700px; margin-bottom: 0; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 16px; letter-spacing: .4px; }
.breadcrumb a { color: rgba(255,255,255,.82); }
.breadcrumb a:hover { color: var(--gold-2); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(226px, 1fr)); }

.card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow); transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
    color: #fff; font-size: 1.5rem; margin-bottom: 18px;
}
.section-dark .card {
    background: var(--ink-2); border-color: var(--line-dark); color: rgba(255,255,255,.8);
    box-shadow: none;
}

.step { position: relative; padding-left: 66px; }
.step-num {
    position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 50%;
    background: var(--ember); color: #fff; font-family: var(--font-display); font-size: 1.4rem;
    display: grid; place-items: center;
}
.step h3 { margin-bottom: .35em; }

/* split media + text */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 46px; align-items: center; }
.split img, .split video { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split-media { position: relative; }
.split-tag {
    position: absolute; left: 18px; bottom: 18px; background: rgba(18,16,14,.82); color: #fff;
    border-radius: 999px; padding: 8px 18px; font-size: .82rem; font-weight: 700; letter-spacing: .4px;
}

/* checklist */
.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.check-list li { position: relative; padding-left: 32px; margin-bottom: .7em; }
.check-list li::before {
    content: '✔'; position: absolute; left: 0; top: 0; color: var(--bamboo); font-weight: 700;
}
.section-dark .check-list li::before { color: var(--gold-2); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.price-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 24px; text-align: center; display: flex; flex-direction: column;
    box-shadow: var(--shadow); transition: var(--transition);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.featured { border: 2px solid var(--ember); position: relative; }
.price-card.featured::after {
    content: 'Most Booked'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--ember); color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: 1.4px;
    text-transform: uppercase; padding: 5px 15px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { margin-bottom: .2em; }
.price-tag { font-family: var(--font-display); font-size: 2.6rem; color: var(--ember); line-height: 1; margin-bottom: 4px; }
.price-unit { font-size: .82rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--text-soft); margin-bottom: 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.price-card ul li { padding-left: 24px; position: relative; font-size: .95rem; }
.price-card ul li::before { content: '›'; position: absolute; left: 8px; color: var(--gold); font-weight: 800; }
.price-card .btn { margin-top: auto; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 420px; }
th, td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
th { background: var(--cream-2); font-weight: 800; letter-spacing: .4px; }
tbody tr:last-child td { border-bottom: 0; }
td.price-col, th.price-col { text-align: right; font-weight: 700; white-space: nowrap; }

/* pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.pill-list li {
    background: var(--white); border: 1px solid var(--line); border-radius: 999px;
    padding: 8px 18px; font-size: .9rem; font-weight: 600; margin: 0;
}
.section-dark .pill-list li { background: var(--ink-2); border-color: var(--line-dark); color: rgba(255,255,255,.82); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.gallery-item.tall img, .gallery-item.tall video { aspect-ratio: 3 / 4; }
.gallery-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px;
    background: linear-gradient(180deg, rgba(18,16,14,0) 0%, rgba(18,16,14,.88) 100%);
    color: #fff; font-size: .86rem; font-weight: 600;
}
.video-card {
    background: var(--ink-2); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark);
}
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.video-card.portrait video { aspect-ratio: 3 / 4; }
.video-card .video-meta { padding: 16px 18px; color: rgba(255,255,255,.82); font-size: .9rem; }
.video-card .video-meta strong { display: block; color: #fff; font-family: var(--font-display); letter-spacing: .8px; font-size: 1.05rem; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
    cursor: pointer; padding: 19px 54px 19px 22px; font-weight: 700; font-size: 1.03rem;
    position: relative; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-size: 1.6rem; color: var(--ember); line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--text-soft); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Booking form ---------- */
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 34px; align-items: start; }
.form-panel {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 34px 30px; box-shadow: var(--shadow);
}
.form-step { border-top: 1px solid var(--line); padding-top: 26px; margin-top: 26px; }
.form-step:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.form-step-title { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.form-step-title span {
    width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: #fff;
    display: grid; place-items: center; font-family: var(--font-display); font-size: .95rem; flex: none;
}
.form-step-title h3 { margin: 0; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; }
.field label, .field-label { font-size: .82rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--text-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
    font-family: var(--font-body); font-size: 1rem; color: var(--text);
    padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--cream); transition: var(--transition); width: 100%;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--ember); background: #fff; box-shadow: 0 0 0 3px rgba(224,58,23,.12);
}
.field .hint { font-size: .8rem; color: var(--text-soft); margin-top: 6px; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 12px; margin-bottom: 8px; }
.choice {
    display: flex; align-items: flex-start; gap: 10px; border: 1px solid var(--line);
    border-radius: var(--radius-sm); padding: 12px 14px; background: var(--cream); cursor: pointer;
    transition: var(--transition); font-size: .93rem;
}
.choice:hover { border-color: var(--ember); }
.choice input { margin: 3px 0 0; accent-color: var(--ember); flex: none; }
.choice strong { display: block; font-size: .95rem; }
.choice small { color: var(--text-soft); }

.estimate-panel {
    background: var(--ink); color: rgba(255,255,255,.82); border-radius: var(--radius-lg);
    padding: 28px 26px; position: sticky; top: calc(var(--header-h) + 18px);
}
.estimate-panel h3 { color: #fff; margin-bottom: .4em; }
.estimate-line { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line-dark); font-size: .93rem; }
.estimate-line span:last-child { font-weight: 700; color: #fff; white-space: nowrap; }
.estimate-total { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-top: 16px; }
.estimate-total .label { font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); }
.estimate-total .value { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-2); line-height: 1; }
.estimate-note { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 14px; }
.estimate-alert {
    background: rgba(224,58,23,.16); border: 1px solid rgba(255,106,43,.5); color: #ffd0bd;
    border-radius: var(--radius-sm); padding: 11px 14px; font-size: .85rem; margin-top: 14px;
}

/* contact info blocks */
.info-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 24px; box-shadow: var(--shadow);
}
.info-card h3 { margin-bottom: .5em; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico { color: var(--ember); font-size: 1.1rem; flex: none; }
.info-list strong { display: block; font-size: .78rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--ink) 0%, #3a1a10 55%, var(--ember) 160%);
    color: #fff; padding: 70px 0; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 640px; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* stats strip */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; text-align: center; }
.stat-strip .stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-strip .stat-label { font-size: .84rem; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* town columns */
.town-cols { columns: 3 200px; column-gap: 30px; }
.town-cols ul { list-style: none; padding: 0; margin: 0; }
.town-cols li { padding: 6px 0; border-bottom: 1px dashed var(--line); break-inside: avoid; font-size: .95rem; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,.76); padding: 62px 0 26px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 34px; margin-bottom: 34px; }
.footer-section h3 { color: #fff; font-size: 1.14rem; margin-bottom: .8em; }
.footer-section p, .footer-section a, .footer-section li { color: rgba(255,255,255,.76); line-height: 1.8; font-size: .94rem; }
.footer-section a:hover { color: var(--gold-2); }
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; background: #fff; }
.footer-bottom {
    text-align: center; padding-top: 24px; border-top: 1px solid var(--line-dark);
    color: rgba(255,255,255,.58); font-size: .88rem;
}
.footer-bottom p { margin-bottom: .5rem; }
.footer-partner { margin-top: 14px; font-size: .86rem; color: rgba(255,255,255,.62); }
.footer-partner a { color: var(--gold-2); }
.footer-partner a:hover { color: #fff; }
.lang-zh { display: inline; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .booking-layout { grid-template-columns: 1fr; }
    .estimate-panel { position: static; }
}

@media (max-width: 900px) {
    .main-nav, .header-phone { display: none; }
    .nav-toggle { display: block; }
    .section { padding: 62px 0; }
    .hero { min-height: 78vh; }
    .hero-inner { padding: 96px 22px 52px; }
    .page-hero { padding: 78px 0 48px; }
    .split { gap: 30px; }
    .town-cols { columns: 2 160px; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .logo-sub { display: none; }
    .logo img { width: 40px; height: 40px; }
    .logo-name { font-size: 1.15rem; }
    .header-cta .btn { padding: 10px 16px; font-size: .86rem; }
    .form-panel { padding: 26px 18px; }
    .btn { width: 100%; }
    .btn-row .btn { width: 100%; }
    .header-cta .btn { width: auto; }
    .town-cols { columns: 1; }
    .estimate-total .value { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
