:root {
    --ink: #111111;
    --muted: #5f5f5f;
    --line: #e6dfc8;
    --soft: #fff8df;
    --white: #ffffff;
    --teal: #9a6b00;
    --teal-dark: #111111;
    --amber: #f5c400;
    --coral: #d99b00;
    --shadow: 0 20px 60px rgba(17, 17, 17, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 14px clamp(20px, 4vw, 64px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.payment-summary,
address {
    display: flex;
    align-items: center;
}

.brand {
    flex: 0 0 auto;
    width: clamp(132px, 14vw, 184px);
}

.brand-logo {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.menu-button {
    display: none;
}

.nav {
    gap: 26px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.93rem;
}

.nav-call {
    display: none;
}

.nav a:hover,
.header-call:hover {
    color: #b88700;
}

.header-call {
    color: var(--teal-dark);
    font-weight: 800;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    overflow-x: clip;
    padding: clamp(48px, 7vw, 70px) clamp(20px, 4vw, 64px);
    background-color: #fffdf2;
    background-image: linear-gradient(135deg, rgba(255, 253, 242, 0.9) 0%, rgb(44 44 41 / 35%) 100%), radial-gradient(circle at 4% 10%, rgb(245 196 0 / 0%), transparent 32%), url('../images/hero-back.png');
    background-position: center, center, center top;
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(3.4rem, 9vw, 7.6rem);
    line-height: 0.9;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.lead {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--ink);
    background: var(--amber);
    box-shadow: 0 12px 24px rgba(245, 196, 0, 0.26);
}

.button-secondary {
    color: var(--teal-dark);
    background: var(--white);
    border-color: var(--line);
}

.quick-points,
.feature-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.quick-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 740px;
}

.quick-points li,
.feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-weight: 750;
}

.quick-points li::before,
.feature-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--teal);
    content: "\2713";
    font-weight: 900;
}

.fare-calculator {
    min-width: 0;
    max-width: 100%;
    padding: clamp(24px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 7px solid var(--amber);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.fare-calculator-heading h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.fare-calculator-heading > p:last-child {
    margin-bottom: 24px;
    color: var(--muted);
}

.fare-calculator form {
    display: grid;
    gap: 16px;
}

.fare-calculator .qcab-address-field {
    margin-top: 8px;
}

.fare-calculator .qcab-address-field .qcab-address-input {
    margin-top: 0;
}

.fare-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    color: var(--ink);
    background: #fff8d8;
    border: 1px solid #eed983;
    border-radius: 8px;
    font-weight: 850;
}

.fare-result strong {
    color: var(--teal-dark);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.fare-calculator .button {
    width: 100%;
    border: 0;
}

.fare-estimate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 14px 16px;
    background: #fff8d8;
    border: 1px solid #eed983;
    border-radius: 8px;
}

.fare-estimate-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-width: 0;
}

.fare-estimate-label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.fare-estimate-item strong {
    color: var(--teal-dark);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 850;
    white-space: nowrap;
}

.fare-calculator .fare-estimate-row {
    background: #f8faf9;
    border-color: var(--line);
}

.fare-distance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    color: var(--muted);
    background: #f8faf9;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.95rem;
}

.fare-distance-row strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.fare-status {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.fare-status[data-state="error"] {
    color: #b42318;
}

.fare-status[data-state="loading"] {
    color: var(--teal-dark);
}

.booking-fare-estimate {
    margin: 4px 0 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.booking-fare-estimate-row {
    margin-top: 4px;
}

.booking-fare-estimate.is-invalid .fare-estimate-row {
    border-color: #fecdca;
    background: #fef3f2;
}

body.landing-payment-modal-open {
    overflow: hidden;
}

.landing-payment-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgb(15 23 42 / 58%);
}

.landing-payment-modal[hidden] {
    display: none !important;
}

.landing-payment-dialog {
    width: min(100%, 520px);
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.landing-payment-dialog h3 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.landing-payment-lead {
    margin-bottom: 18px;
    color: var(--muted);
}

.landing-payment-summary {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 16px;
    background: #fff8d8;
    border: 1px solid #eed983;
    border-radius: 10px;
}

.landing-payment-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.landing-payment-summary div[hidden] {
    display: none !important;
}

.landing-payment-summary dt {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.landing-payment-summary dd {
    margin: 0;
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 1.1rem;
}

.landing-payment-error {
    margin: 0 0 14px;
    color: #b42318;
    font-size: 0.92rem;
}

.landing-payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.section,
.booking-section,
.choice-band,
.footer {
    padding: clamp(58px, 8vw, 104px) clamp(20px, 4vw, 64px);
    scroll-margin-top: 86px;
}

.section-heading {
    max-width: 880px;
    margin-bottom: 34px;
}

.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
    gap: 24px;
    align-items: stretch;
}

.about-copy,
.about-highlight {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.about-copy {
    padding: clamp(22px, 3vw, 34px);
}

.about-copy p {
    color: var(--muted);
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.about-highlight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(22px, 3vw, 34px);
    color: var(--ink);
    background: var(--amber);
}

.about-highlight span {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-highlight strong {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.03;
}

.service-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card,
.review-card,
.booking-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
}

.service-card {
    padding: 28px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    color: var(--teal-dark);
    background: #fff1a8;
    border-radius: 8px;
    font-weight: 950;
}

.service-card p,
.booking-intro p,
.review-card blockquote {
    color: var(--muted);
}

.fixed-fares-section {
    background: var(--soft);
}

.fixed-fares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.fixed-fare-card {
    display: grid;
    gap: 12px;
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
    overflow: hidden;
}

.fixed-fare-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.fixed-fare-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    margin-top: auto;
}

.fixed-fare-price {
    margin: 0;
    min-width: 0;
    color: var(--teal-dark);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 950;
    line-height: 1;
}

.fixed-fare-book {
    flex-shrink: 0;
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    box-shadow: 0 8px 18px rgba(245, 196, 0, 0.22);
}

.choice-band {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
    gap: 36px;
    align-items: start;
    color: var(--white);
    background: var(--teal-dark);
}

.choice-band .eyebrow,
.choice-band .feature-list li::before {
    color: var(--amber);
}

.choice-band h2 {
    margin-bottom: 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
}

.feature-list li {
    color: var(--white);
}

.booking-section {
    position: relative;
    scroll-margin-top: 104px;
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
    overflow-x: clip;
    background-color: var(--soft);
    background-image: linear-gradient(135deg, rgba(255, 253, 242, 0.9) 0%, rgb(44 44 41 / 35%) 100%), radial-gradient(circle at 4% 10%, rgb(245 196 0 / 0%), transparent 32%), url('../images/calculator.jpg');
    background-position: center, center, center top;
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
}

.booking-intro {
    position: sticky;
    top: 104px;
}

.payment-summary {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.payment-summary span {
    padding: 8px 12px;
    color: var(--teal-dark);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 850;
}

.booking-form {
    display: grid;
    gap: 18px;
    min-width: 0;
    max-width: 100%;
    padding: clamp(20px, 3vw, 34px);
}

.booking-form-validation {
    margin: 0;
    padding: 0.85rem 1rem;
    color: #7a1b12;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.booking-form-validation[hidden] {
    display: none !important;
}

.booking-form .field-invalid {
    border-color: #d92d20 !important;
    box-shadow: 0 0 0 2px rgb(217 45 32 / 12%);
}

.booking-form .field-validation-error {
    display: block;
    margin-top: 0.45rem;
    color: #b42318;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.booking-form .field-validation-error[hidden] {
    display: none !important;
}

.qcab-address-field {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 8px;
}

.qcab-address-field .qcab-address-input {
    margin-top: 0;
    padding-right: 2.75rem;
}

.qcab-address-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    padding: 0;
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 999px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.qcab-address-clear:hover,
.qcab-address-clear:focus-visible {
    color: #0f172a;
    background: rgb(15 23 42 / 8%);
    outline: none;
}

.qcab-address-clear[hidden] {
    display: none !important;
}

.booking-fare-estimate.is-invalid {
    border: 0;
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-row-full {
    display: block;
}

.form-row--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

label,
legend {
    display: block;
    min-width: 0;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #ddd2a9;
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--amber);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.22);
}

.qcab-places-dropdown {
    z-index: 2147483000;
    box-sizing: border-box;
    max-width: calc(100vw - 16px);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
    font-family: inherit;
}

fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.radio {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 750;
}

.radio input {
    width: auto;
    margin: 0;
}

.form-submit {
    width: 100%;
    border: 0;
}

.alert {
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 800;
}

.success {
    color: #135e38;
    background: #ddf8e7;
    border: 1px solid #9de8bb;
}

.error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 0.82rem;
}

.field-hint {
    display: block;
    margin-top: 6px;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.4;
}

.payment-note {
    margin: 0.75rem 0 0;
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    color: #7a4d00;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
    background: #fff4d6;
    border: 1px solid #f2d27a;
}

.payment-note[hidden] {
    display: none !important;
}

.booking-policy-note {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    color: #334155;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.5;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
}

.landing-toast-root {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(22rem, calc(100vw - 1.5rem));
    pointer-events: none;
}

.landing-toast {
    position: relative;
    overflow: hidden;
    padding: 1rem 2.5rem 1rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(52, 211, 153, 0.35);
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.96), rgba(15, 23, 42, 0.98));
    color: #ecfdf5;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    pointer-events: auto;
    animation: landing-toast-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-toast.is-leaving {
    animation: landing-toast-out 0.32s ease forwards;
}

.landing-toast--error {
    border-color: rgba(251, 113, 133, 0.4);
    background: linear-gradient(135deg, rgba(76, 5, 25, 0.96), rgba(15, 23, 42, 0.98));
    color: #ffe4e6;
}

.landing-toast-message {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.landing-toast-close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.landing-toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.landing-toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #34d399, #2dd4bf);
    transform-origin: left center;
    animation-name: landing-toast-progress;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@keyframes landing-toast-in {
    from {
        opacity: 0;
        transform: translateX(110%) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes landing-toast-out {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(40%) scale(0.94);
    }
}

@keyframes landing-toast-progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

.reviews {
    background: #fff8df;
    scroll-margin-top: 104px;
}

.reviews-section-actions,
.reviews-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.review-author {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.review-flash {
    margin: 0 0 20px;
    padding: 0.85rem 1rem;
    color: #135e38;
    background: #ddf8e7;
    border: 1px solid #9de8bb;
    border-radius: 8px;
    font-weight: 700;
}

.reviews-empty {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.reviews-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px) 56px;
}

.reviews-page-header {
    margin-bottom: 24px;
}

.reviews-page h1 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 3.2vw, 3.35rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.reviews-page .legal-lead {
    max-width: 52ch;
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-page:has(.reviews-page) {
    padding-top: clamp(92px, 11vw, 108px);
    padding-bottom: clamp(40px, 5vw, 56px);
}

.reviews-page-grid {
    margin-bottom: 28px;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
}

.pagination-link--disabled {
    opacity: 0.45;
    pointer-events: none;
}

.pagination-status {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(17, 17, 17, 0.55);
}

.review-modal[hidden] {
    display: none !important;
}

body.review-modal-open {
    overflow: hidden;
}

.review-modal-dialog {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 28px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.review-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: #f8faf9;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.review-modal h2 {
    margin: 0 0 8px;
    font-size: 1.6rem;
}

.review-modal-lead {
    margin: 0 0 20px;
    color: var(--muted);
}

.review-form {
    display: grid;
    gap: 16px;
}

.review-form textarea {
    min-height: 120px;
}

.review-char-count {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: right;
}

.review-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.review-form-error {
    margin: 0 0 12px;
    padding: 0.75rem 0.9rem;
    color: #7a1b12;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 8px;
    font-weight: 700;
}

.review-card {
    margin: 0;
    padding: 26px;
}

.stars {
    margin-bottom: 14px;
    color: var(--amber);
    letter-spacing: 0.06em;
}

blockquote {
    margin: 0;
    font-size: 1.04rem;
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 28px;
    align-items: center;
    color: var(--white);
    background: #111111;
}

.footer-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-style: normal;
    font-weight: 750;
}

.footer-address span {
    max-width: 280px;
    line-height: 1.45;
}

.footer h2 {
    max-width: 720px;
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.footer-logo {
    width: min(220px, 70vw);
    height: auto;
    max-height: 96px;
    margin-bottom: 22px;
    padding: 10px 14px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: var(--amber);
}

.landing-legal-body {
    background: var(--soft);
}

.legal-page {
    padding: clamp(120px, 14vw, 148px) clamp(20px, 4vw, 64px) clamp(48px, 6vw, 72px);
}

.legal-page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 44px);
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

.legal-page-content h1 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    line-height: 1.05;
}

.legal-updated {
    margin: 0 0 18px;
    color: rgba(17, 17, 17, 0.58);
    font-size: 0.92rem;
    font-weight: 600;
}

.legal-lead {
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.65;
}

.legal-page-content section {
    margin-top: 28px;
}

.legal-page-content h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.legal-page-content p,
.legal-page-content li {
    line-height: 1.65;
}

.legal-page-content ul {
    margin: 10px 0 0;
    padding-left: 1.25rem;
}

.legal-page-content li + li {
    margin-top: 8px;
}

.legal-page-content a {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page-content a:hover {
    color: #9a7200;
}

.legal-back {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

address:not(.footer-address) {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-style: normal;
    font-weight: 750;
}

address a:hover {
    color: var(--amber);
}

.whatsapp-contact {
    display: grid;
    gap: 10px;
    justify-items: center;
    width: 260px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.whatsapp-contact img {
    width: 250px;
    height: 300px;
    /* padding: 7px; */
    object-fit: cover;
    background: var(--white);
    /* border-radius: 8px; */
}

.whatsapp-contact:hover {
    color: var(--amber);
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #25d366;
    color: #0f172a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float:focus-visible {
    outline: 2px solid #25d366;
    outline-offset: 2px;
}

.whatsapp-float svg {
    width: 1.75rem;
    height: 1.75rem;
}

.whatsapp-float-tooltip {
    position: absolute;
    right: calc(100% + 0.5rem);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    background: #0f172a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float-tooltip,
.whatsapp-float:focus-visible .whatsapp-float-tooltip {
    opacity: 1;
}

@media (min-width: 640px) {
    .whatsapp-float {
        right: 1.5rem;
    }
}

@media (max-width: 980px) {
    body {
        padding-top: 70px;
    }

    .site-header {
        position: fixed;
        right: 0;
        left: 0;
        align-items: center;
        flex-direction: row;
        min-height: 70px;
        padding: 10px 16px;
        z-index: 50;
    }

    .brand {
        width: 156px;
    }

    .menu-button {
        position: relative;
        z-index: 60;
        display: grid;
        flex: 0 0 auto;
        gap: 5px;
        place-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        color: var(--ink);
        background: var(--amber);
        border: 1px solid rgba(17, 17, 17, 0.12);
        border-radius: 8px;
        cursor: pointer;
        box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
    }

    .menu-button span {
        display: block;
        width: 22px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle:checked + .brand + .menu-button {
        color: var(--white);
        background: var(--ink);
    }

    .nav-toggle:checked + .brand + .menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .brand + .menu-button span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .brand + .menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 55;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        padding: 86px 16px 18px;
        color: var(--white);
        background: var(--ink);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 24px 50px rgba(17, 17, 17, 0.32);
        overflow: visible;
        transform: translateX(105%);
        transition: transform 260ms ease;
    }

    .nav-toggle:checked ~ .nav {
        transform: translateX(0);
    }

    .nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        min-height: 92px;
        padding: 16px 12px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        font-size: 0.96rem;
        text-align: center;
    }

    .nav a::before {
        display: inline-grid;
        flex: 0 0 auto;
        place-items: center;
        width: 34px;
        height: 34px;
        color: var(--ink);
        background: var(--amber);
        border-radius: 50%;
        font-size: 1rem;
        font-weight: 950;
        line-height: 1;
    }

    .nav a:nth-child(1)::before {
        content: "H";
    }

    .nav a:nth-child(2)::before {
        content: "i";
    }

    .nav a:nth-child(3)::before {
        content: "S";
    }

    .nav a:nth-child(4)::before {
        content: "?";
    }

    .nav a:nth-child(5)::before {
        content: "+";
    }

    .nav a:nth-child(6)::before {
        content: "@";
    }

    .nav-call::before {
        content: "\260E";
    }

    .nav a:hover {
        color: var(--amber);
    }

    .nav-call {
        display: block;
        grid-column: 1 / -1;
        margin-top: 0;
        min-height: 74px;
        padding: 16px;
        color: var(--ink);
        text-align: center;
        background: var(--amber);
        border: 0;
        border-radius: 8px;
        font-weight: 900;
    }

    .header-call {
        display: none;
    }

    .hero,
    .choice-band,
    .booking-section,
    .about-content,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        scroll-margin-top: 86px;
    }

    .booking-intro {
        position: static;
    }

    .service-grid,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-header {
        position: fixed;
    }

    .hero,
    .section,
    .booking-section,
    .choice-band,
    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-copy,
    .fare-calculator,
    .booking-form,
    .form-row,
    .form-row--triple {
        min-width: 0;
        grid-template-columns: 1fr;
    }

    .fare-estimate-row {
        gap: 10px 14px;
    }

    .fare-estimate-item {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
    }

    .fare-estimate-label,
    .fare-estimate-item strong {
        white-space: normal;
    }

    h1 {
        font-size: clamp(3rem, 18vw, 4.2rem);
    }

    .quick-points,
    .feature-list,
    .service-grid,
    .review-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .button:not(.fixed-fare-book),
    .hero-actions {
        width: 100%;
    }

    .fixed-fare-card {
        padding: 18px 16px;
    }

    .fixed-fare-footer {
        gap: 10px;
    }

    .fixed-fare-price {
        font-size: 1.4rem;
    }

    .fixed-fare-book {
        min-height: 36px;
        padding: 0.38rem 0.7rem;
        font-size: 0.76rem;
    }
}
