/* Praha Clean — plain CSS, no framework or preprocessing. */
@font-face {
  font-family: Manrope; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url("./assets/fonts/manrope-81401990.woff2") format("woff2");
}
@font-face {
  font-family: Manrope; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url("./assets/fonts/manrope-76dcfc73.woff2") format("woff2");
  unicode-range: U+0100-02FF,U+1E00-1EFF,U+2020,U+20A0-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("./assets/fonts/cormorant-garamond-e99b45a2.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("./assets/fonts/cormorant-garamond-21114939.woff2") format("woff2");
  unicode-range: U+0100-02FF,U+1E00-1EFF,U+2020,U+20A0-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
:root {
  --navy: #07233c; --gold: #d6b371; --gold-light: #ead3a4; --gold-dark: #a98242;
  --cream: #f7f2e9; --background: #fbfaf7; --text: #102739; --muted: #596779;
  --border: #e2e8f0; --heading: "Cormorant Garamond", Georgia, serif;
  --body: Manrope, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--text); background: var(--background); font: 16px/1.6 var(--body); -webkit-font-smoothing: antialiased; }
h1,h2,h3,p { margin: 0; }
h1,h2,h3 { text-wrap: balance; }
a { color: inherit; text-decoration: none; }
a,button,input,select,textarea { -webkit-tap-highlight-color: transparent; }
button,input,select,textarea { font: inherit; }
button,a,input,select,textarea { touch-action: manipulation; }
button { cursor: pointer; }
button:disabled { cursor: wait; opacity: .55; }
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 4px; }
img { display: block; max-width: 100%; }
svg { display: block; }
[hidden] { display: none !important; }
.container { width: min(100%,1280px); margin-inline: auto; padding-inline: 32px; }
.section { padding-block: 96px; }
.cream { background: var(--cream); }
.navy { background: var(--navy); color: #fff; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.visually-hidden,.honeypot { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: -80px; left: 20px; background: #fff; padding: 12px 20px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; padding: 11px 22px; font-size: 14px; font-weight: 700; line-height: 1.4; text-align: center; transition: background .2s,transform .2s; }
.button:hover { transform: translateY(-1px); }
.button-gold { color: var(--navy); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.button-navy { color: #fff; background: var(--navy); }
.button-navy:hover { background: #123f62; }
.button-outline { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
.button-outline:hover { background: rgba(255,255,255,.2); }
.button-soft { border-color: rgba(7,35,60,.2); background: rgba(255,255,255,.3); }
.button-large { min-height: 52px; padding-inline: 28px; font-size: 16px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.full-width { width: 100%; }
.eyebrow { color: var(--gold-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; }
.section-title { margin-top: 12px; color: var(--navy); font: 600 48px/1.12 var(--heading); letter-spacing: -.025em; }
.section-lead { margin-top: 20px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.section-intro { max-width: 680px; }
.small-copy { color: var(--muted); font-size: 14px; line-height: 1.7; }
.icon-box { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--navy); color: var(--gold); }
.icon-box .icon { width: 25px; height: 25px; }
.gold-box { color: var(--navy); background: var(--gold); }
.cream-box { color: var(--gold-dark); background: var(--cream); }
/* Header and hero */
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; background: rgba(7,35,60,.97); color: #fff; border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); }
.header-row { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; gap: 12px; align-items: center; flex-shrink: 0; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(214,179,113,.5); border-radius: 50%; color: var(--gold); background: rgba(255,255,255,.05); }
.brand strong { display: block; font: 700 21px/1 var(--heading); letter-spacing: .16em; }
.brand em { display: block; color: var(--gold); font: italic 20px/1 var(--heading); }
.desktop-nav { display: flex; gap: 25px; font-size: 14px; color: rgba(255,255,255,.75); }
.desktop-nav a:hover,.site-footer a:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; white-space: nowrap; }
.header-phone .icon { width: 16px; color: var(--gold); }
.menu-toggle { display: none; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; width: 44px; height: 44px; font-size: 22px; }
.mobile-nav { display: none; }
.hero { position: relative; isolation: isolate; min-height: 820px; padding-top: 80px; color: #fff; background: var(--navy); }
.hero-image,.hero-shade { position: absolute; inset: 0; z-index: -1; }
/* Enlarge the flyer background vertically so its outdated contact strip is never shown. */
.hero-image { background: url("./assets/prahaclean-reference.png") center top / auto 150% no-repeat; }
.hero-shade { background: linear-gradient(90deg,rgba(7,35,60,.98),rgba(7,35,60,.88) 46%,rgba(7,35,60,.32) 78%,rgba(7,35,60,.2)); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; padding-top: 96px; padding-bottom: 96px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.1); text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.hero-badge .icon { width: 16px; height: 16px; color: var(--gold); }
.hero h1 { margin-top: 24px; font: 600 72px/1.02 var(--heading); letter-spacing: -.04em; }
.hero h1 em { display: block; margin-top: 8px; font-weight: 400; color: var(--gold); }
.hero-lead { margin: 28px 0 36px; font-size: 20px; line-height: 1.6; color: rgba(255,255,255,.78); }
.hero-benefits { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; font-size: 13px; color: rgba(255,255,255,.8); }
.hero-benefits li { display: flex; gap: 8px; align-items: flex-start; }
.hero-benefits .icon { width: 16px; height: 20px; color: var(--gold); }
.hero-pricing { padding: 32px; border-radius: 32px; background: rgba(247,242,233,.97); color: var(--navy); border: 1px solid rgba(255,255,255,.4); box-shadow: 0 25px 50px rgba(7,35,60,.3); }
.hero-pricing h2 { margin: 8px 0; font: 600 32px/1.2 var(--heading); }
.quick-prices { display: grid; gap: 12px; margin: 28px 0 20px; }
.quick-prices > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 12px 16px; }
.quick-prices strong { font-size: 13px; }
.quick-prices small { color: #64748b; font-size: 11px; margin-left: 4px; }
.quick-prices b { font: 600 22px var(--heading); white-space: nowrap; }
/* Services and pricing */
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.service-card { padding: 32px; background: #fff; border: 1px solid rgba(7,35,60,.08); border-radius: 28px; box-shadow: 0 2px 5px rgba(7,35,60,.03); transition: transform .3s,box-shadow .3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(7,35,60,.08); }
.service-card h3 { margin: 28px 0 12px; font: 600 32px/1.2 var(--heading); color: var(--navy); }
.service-card p { color: var(--muted); line-height: 1.75; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--gold-dark); font-size: 14px; font-weight: 800; }
.section-heading-row { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.section-heading-row > * { flex: 1; }
.section-heading-row .small-copy { max-width: 520px; }
.price-table-wrap { margin-top: 48px; border: 1px solid var(--border); border-radius: 28px; overflow-x: auto; background: #fff; }
.price-table { width: 100%; border-collapse: collapse; text-align: left; }
.price-table thead { color: rgba(255,255,255,.75); background: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.price-table th,.price-table td { padding: 20px 28px; }
.price-table thead th { padding-block: 16px; }
.price-table tbody tr:not(:last-child) { border-bottom: 1px solid #f1f5f9; }
.price-table tbody { font-size: 14px; }
.price-table td:last-child { color: var(--gold-dark); font-weight: 800; }
.price-table td:nth-child(2) { color: #64748b; }
.extras-title { margin-top: 64px; font: 600 32px var(--heading); color: var(--navy); }
.extra-price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 24px; }
.extra-price { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: #fff; font-size: 13px; }
.extra-price > span { display: flex; gap: 12px; align-items: center; font-weight: 700; }
.extra-price .icon { color: var(--gold-dark); }
.extra-price strong { color: var(--gold-dark); white-space: nowrap; }
.seasonal { background: var(--cream); border-color: rgba(214,179,113,.4); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.included-card { padding: 40px; border-radius: 32px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.included-card h2 { margin-top: 28px; font: 600 40px/1.2 var(--heading); }
.light-card { background: #fff; color: var(--navy); }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 16px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.75); }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list .icon { margin-top: 2px; color: var(--gold); }
.light-card .check-list { color: var(--muted); }
.light-card .check-list .icon { color: var(--gold-dark); }
/* Native accessible calculator controls */
.calculator-layout { display: grid; grid-template-columns: minmax(0,1fr) 380px; align-items: start; gap: 28px; margin-top: 48px; }
.calculator-form { display: grid; gap: 24px; min-width: 0; }
.calculator-panel { min-width: 0; margin: 0; padding: 28px; border: 1px solid rgba(7,35,60,.08); border-radius: 28px; background: #fff; box-shadow: 0 2px 5px rgba(7,35,60,.03); }
.calculator-panel legend { float: left; display: flex; align-items: center; gap: 16px; width: 100%; padding: 0; font: 600 26px/1.2 var(--heading); color: var(--navy); }
.step-number { display: inline-grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--navy); color: var(--gold); font: 700 14px var(--body); }
.step-note { clear: both; padding-top: 7px; margin-left: 52px; font-size: 14px; color: #64748b; }
.choice-grid { display: grid; gap: 12px; margin-top: 24px; }
.two-columns { grid-template-columns: 1fr 1fr; }
.size-grid { grid-template-columns: repeat(3,1fr); }
.choice { position: relative; cursor: pointer; min-width: 0; }
.choice > input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice-card,.option-card { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--border); border-radius: 16px; padding: 16px; background: #fff; transition: border-color .2s,background .2s,color .2s; }
.choice-card { min-height: 145px; padding: 20px; background: var(--cream); border-width: 2px; border-color: transparent; }
.choice-card .icon { width: 24px; height: 24px; }
.choice-card strong { font-size: 18px; margin-top: 20px; }
.option-card { min-height: 82px; justify-content: center; }
.option-card strong { font-size: 14px; }
.choice small { display: block; font-size: 12px; color: #64748b; margin-top: 4px; }
.choice:hover .choice-card,.choice:hover .option-card,.choice:hover .extra-card { border-color: var(--gold); }
.choice > input:checked + .choice-card,.choice > input:checked + .option-card { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 8px 16px rgba(7,35,60,.1); }
.choice > input:checked + span small { color: rgba(255,255,255,.65); }
.choice > input:checked + .choice-card .icon { color: var(--gold); }
.choice > input:focus-visible + span { outline: 3px solid var(--gold-dark); outline-offset: 3px; }
.extra-card { display: flex; align-items: center; gap: 10px; height: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 16px; }
.extra-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; background: var(--cream); color: var(--gold-dark); border-radius: 12px; }
.extra-copy { flex: 1; }
.extra-copy strong { display: block; font-size: 13px; line-height: 1.4; }
.choice-check { display: grid; place-items: center; width: 20px; height: 20px; flex-shrink: 0; border: 1px solid #cbd5e1; border-radius: 50%; }
.choice-check .icon { display: none; width: 14px; height: 14px; }
.choice > input:checked + .extra-card { border-color: var(--gold); background: rgba(214,179,113,.08); }
.choice > input:checked + .extra-card small { color: #64748b; }
.choice > input:checked + .extra-card .choice-check { background: var(--navy); color: #fff; border-color: var(--navy); }
.choice > input:checked + .extra-card .choice-check .icon { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; font-size: 14px; font-weight: 700; color: var(--navy); }
.form-field input,.form-field select,.form-field textarea { width: 100%; min-width: 0; border: 1px solid var(--border); border-radius: 12px; background: #fff; padding: 12px 15px; min-height: 48px; font-size: 16px; color: var(--text); font-weight: 400; }
.form-field textarea { resize: vertical; min-height: 115px; }
.form-field input:focus,.form-field textarea:focus,.form-field select:focus { border-color: var(--gold-dark); }
.full-span { grid-column: 1/-1; }
.carpet-area { margin-top: 20px; max-width: 250px; }
.form-placeholder { margin: 20px 0 24px; color: #64748b; font-size: 12px; }
.order-summary { position: sticky; top: 112px; border-radius: 32px; background: var(--navy); color: #fff; padding: 28px; box-shadow: 0 24px 50px rgba(7,35,60,.18); }
.order-summary .eyebrow { color: var(--gold); }
.order-summary h3 { margin-top: 12px; font: 600 32px/1.2 var(--heading); }
.order-summary dl { display: grid; gap: 16px; margin: 28px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.order-summary dl > div { display: flex; justify-content: space-between; gap: 16px; }
.order-summary dt { color: rgba(255,255,255,.55); }
.order-summary dd { margin: 0; font-weight: 700; text-align: right; }
.summary-price-label { color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
#summary-price { display: block; color: var(--gold); font: 600 48px/1.2 var(--heading); margin-top: 4px; overflow-wrap: anywhere; }
.summary-note { font-size: 12px; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,.5); }
.order-summary .button { margin-top: 28px; }
.notice { margin-top: 20px; padding: 16px; border-radius: 16px; background: #fff7e0; color: #704916; font-size: 14px; line-height: 1.7; }
.notice.success { background: #ecfdf5; color: #065f46; }
.notice.error { background: #fef2f2; color: #991b1b; }
.email-fallback { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 12px; font-size: 14px; }
/* Office, reviews and footer */
.office-card { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--navy); color: #fff; border-radius: 36px; overflow: hidden; }
.office-image { min-height: 320px; background: linear-gradient(rgba(7,35,60,.25),rgba(7,35,60,.25)),url("./assets/prahaclean-reference.png") center top / auto 145% no-repeat; }
.office-content { padding: 64px; }
.office-content .eyebrow { color: var(--gold); }
.office-content h2 { margin-top: 12px; font: 600 48px/1.15 var(--heading); }
.office-offer { margin: 32px 0 24px; font-size: 18px; font-weight: 700; }
.benefits-section { padding-block: 64px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.benefit-grid article { padding: 24px; background: #fff; border-radius: 24px; }
.benefit-grid .icon { color: var(--gold-dark); width: 25px; height: 25px; }
.benefit-grid h3 { margin-top: 20px; font-size: 16px; }
.benefit-grid p { margin-top: 8px; font-size: 14px; color: #64748b; }
.reviews { text-align: center; }
.reviews .section-title,.reviews .section-lead { max-width: 680px; margin-inline: auto; }
.review-placeholder { display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; padding: 12px 24px; border: 1px solid rgba(214,179,113,.3); border-radius: 999px; background: var(--cream); font-size: 14px; font-weight: 700; }
.review-placeholder span { color: var(--gold-dark); font-size: 22px; white-space: nowrap; }
.transport { padding-block: 24px; background: var(--gold); color: var(--navy); }
.transport-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.transport h2 { font: 700 26px var(--heading); }
.transport p { color: rgba(7,35,60,.7); font-size: 14px; }
.site-footer { background: var(--navy); color: #fff; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
.footer-grid p { max-width: 390px; margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-grid h2 { color: var(--gold); font: 800 12px var(--body); text-transform: uppercase; letter-spacing: .2em; }
.footer-grid address,.footer-grid nav { display: grid; gap: 12px; margin-top: 20px; font-size: 14px; color: rgba(255,255,255,.75); font-style: normal; overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 12px; }
.mobile-actions { display: none; }
@media (max-width: 1199px) {
  .header-phone { display: none; }
  .hero h1 { font-size: 64px; }
  .hero-grid { gap: 32px; }
  .size-grid { grid-template-columns: 1fr 1fr; }
  .extra-price-grid { grid-template-columns: 1fr 1fr; }
  .calculator-layout { grid-template-columns: minmax(0,1fr) 330px; }
  .office-content { padding: 40px; }
}
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; padding-block: 64px; gap: 48px; }
  .hero-copy { max-width: 680px; }
  .hero-pricing { width: 100%; max-width: 650px; }
  .hero-benefits { max-width: 570px; }
  .service-grid { grid-template-columns: 1fr; }
  .section-heading-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .included-card { padding: 28px; }
  .calculator-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .office-card { grid-template-columns: 1fr; }
  .office-image { min-height: 320px; background-size: auto 155%; }
}
@media (max-width: 767px) {
  .container { padding-inline: 20px; }
  .section { padding-block: 64px; }
  .desktop-nav { display: none; }
  .menu-toggle:not([hidden]) { display: grid; place-items: center; }
  .mobile-nav { display: grid; padding: 12px 20px 20px; gap: 4px; border-top: 1px solid rgba(255,255,255,.1); }
  .mobile-nav a { display: block; padding: 10px 12px; border-radius: 12px; }
  .mobile-nav a:hover { background: rgba(255,255,255,.1); }
  body:not(.js-ready) .site-header { position: relative; }
  body:not(.js-ready) .hero { padding-top: 0; }
  .section-title { font-size: 40px; }
  .included-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .transport-row { flex-direction: column; align-items: flex-start; }
  .price-table th,.price-table td { padding: 16px 12px; }
  .price-table thead { font-size: 10px; letter-spacing: 0; }
}
@media (max-width: 639px) {
  .header-order { display: none; }
  .hero h1 { font-size: 54px; }
  .hero-badge { font-size: 10px; letter-spacing: .1em; padding-inline: 12px; }
  .hero-lead { font-size: 18px; }
  .hero .button-row { flex-direction: column; }
  .hero-benefits { grid-template-columns: 1fr 1fr; }
  .hero-pricing { padding: 24px; }
  .quick-prices small { display: block; margin-left: 0; }
  .quick-prices b { font-size: 21px; }
  .section-lead { font-size: 16px; }
  .service-card { padding: 28px; }
  .extra-price-grid { grid-template-columns: 1fr; }
  .price-table tbody { font-size: 12px; }
  .price-table td,.price-table th { padding-inline: 9px; }
  .price-table td:nth-child(2) { white-space: normal; }
  .included-card h2 { font-size: 36px; }
  .calculator-panel { padding: 20px; }
  .calculator-panel legend { font-size: 24px; gap: 12px; }
  .step-note { margin-left: 48px; font-size: 12px; }
  .choice-grid.two-columns:has(.extra-card) { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .choice-card { padding: 16px; }
  .option-card { padding: 12px; }
  .office-content { padding: 28px; }
  .office-content h2 { font-size: 40px; }
  .review-placeholder { flex-direction: column; border-radius: 24px; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 110px; }
  .mobile-actions { position: fixed; z-index: 45; bottom: max(12px,env(safe-area-inset-bottom)); left: 12px; right: 12px; display: flex; gap: 8px; padding: 8px; border-radius: 999px; background: var(--navy); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; padding: 12px 16px; color: #fff; font-size: 14px; font-weight: 700; }
  .mobile-actions a:last-child { flex: 1.35; border-radius: 999px; background: var(--gold); color: var(--navy); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition: none !important; animation: none !important; }
}

