/* ==========================================================================
   The Plus One Club - Main Stylesheet
   Full refactor: consistent spacing, mobile hamburger, city/home parity
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --color-primary:       #e91e8c;
    --color-primary-hover: #ff3ba5;
    --color-dark:          #0a0a0a;
    --color-light:         #ffffff;
    --color-light-muted:   rgba(255,255,255,0.85);
    --color-light-subtle:  rgba(255,255,255,0.6);

    --font-display: 'Josefin Sans', sans-serif;
    --font-body:    'Lato', sans-serif;

    --section-pad-v:  30px;
    --section-pad-h:  2rem;

    --gap-xs:  0.5rem;
    --gap-sm:  1rem;
    --gap-md:  1.5rem;
    --gap-lg:  2rem;
    --gap-xl:  2.5rem;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    --header-h: 64px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-dark);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

ul { list-style: none; }

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--section-pad-h);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.header__nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-light-muted);
    transition: color var(--transition-fast);
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--color-light);
}

.header__login {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-light);
    border-radius: 2px;
    color: var(--color-light);
    transition: all var(--transition-fast);
    white-space: nowrap;
    margin-left: auto;
}

.header__login:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

/* Hamburger button */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 210;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-light);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.header__hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    z-index: 190;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    padding: var(--gap-sm) 0 var(--gap-lg);
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), transform var(--transition-base);
    pointer-events: none;
}

.nav-drawer.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nav-drawer__link {
    display: block;
    padding: 0.9rem var(--section-pad-h);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-light-muted);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-drawer__link:last-child { border-bottom: none; }

.nav-drawer__link:hover { color: var(--color-light); }

.nav-drawer__link--cta {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: var(--gap-xs);
}

.nav-drawer__link--cta:hover { color: var(--color-primary-hover); }

/* --------------------------------------------------------------------------
   Shared Section Styles
   -------------------------------------------------------------------------- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--gap-sm);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-xl);
    max-width: 580px;
}

/* Shared full-bleed background */
.hero__background,
.about__background,
.how-it-works__background,
.pricing__background,
.faq__background,
.contact__background,
.checkout__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__image,
.about__image,
.how-it-works__image,
.pricing__image,
.faq__image,
.contact__image,
.checkout__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay,
.about__overlay,
.how-it-works__overlay,
.pricing__overlay,
.faq__overlay,
.contact__overlay,
.checkout__overlay,
.city-body__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* All sections: position relative, overflow hidden */
.hero,
.about,
.how-it-works,
.pricing,
.faq,
.contact,
.checkout,
.city-body,
.city-cta {
    position: relative;
    overflow: hidden;
}

/* All content wrappers: above overlay */
.hero__content,
.about__content,
.how-it-works__content,
.pricing__content,
.faq__content,
.contact__content,
.checkout__content,
.city-hero__content,
.city-body__content,
.city-cta__content {
    position: relative;
    z-index: 10;
    padding: var(--section-pad-v) var(--section-pad-h);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    width: 100%;
    height: 100vh;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.hero__image { object-position: 75% center; }

.hero__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.40) 50%,
        rgba(0,0,0,0.50) 100%);
}

.hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    padding-top: calc(var(--header-h) + var(--section-pad-v));
    padding-bottom: var(--section-pad-v);
}

.brand { margin-bottom: var(--gap-md); }

.brand__name {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--gap-xs);
}

.brand__tagline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--color-light-muted);
}

.hero__intro { margin-bottom: var(--gap-md); }

.hero__intro-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-md);
}

.hero__stat {
    font-size: 0.9rem;
    color: var(--color-light-subtle);
    padding-left: var(--gap-sm);
    border-left: 2px solid var(--color-primary);
    margin-bottom: var(--gap-sm);
}

.hero__stat strong {
    color: var(--color-light);
    font-weight: 600;
}

.hero__footer {
    position: relative;
    z-index: 10;
    padding: 0 var(--section-pad-h) 30px;
}

.hero__footer-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--gap-sm);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-xs);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    border-radius: 2px;
    transition: all var(--transition-base);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-light);
}

.btn--primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,30,140,0.35);
}

.btn--full {
    width: 100%;
    max-width: 400px;
}

.btn--mobile-full { width: 100%; }
.btn--desktop-only { display: none; }

.btn__arrow {
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about__image { object-position: 60% center; }

.about__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.70) 100%);
}

.about__content { max-width: 750px; }

.about__text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-md);
}

.about__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm) var(--gap-xl);
    margin: var(--gap-xl) 0;
}

.about__trust-item {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-size: 0.95rem;
    color: var(--color-light-muted);
}

.about__trust-check {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   How It Works Section
   -------------------------------------------------------------------------- */
.how-it-works {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.how-it-works__image { object-position: 50% center; }

.how-it-works__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.70) 50%,
        rgba(0,0,0,0.75) 100%);
}

.how-it-works__content {
    max-width: 900px;
    width: 100%;
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
    margin: var(--gap-xl) 0;
}

.how-it-works__step {
    padding: var(--gap-lg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    background: rgba(0,0,0,0.3);
}

.how-it-works__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-light);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: var(--gap-sm);
}

.how-it-works__step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--gap-xs);
}

.how-it-works__step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-light-muted);
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing__image { object-position: 55% center; }

.pricing__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.72) 100%);
}

.pricing__content {
    text-align: center;
    max-width: 620px;
    width: 100%;
}

.pricing__card {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: var(--gap-xl) var(--gap-lg);
    margin: var(--gap-xl) auto;
    max-width: 440px;
}

.pricing__amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--gap-xs);
}

.pricing__currency {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.pricing__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-light);
    line-height: 1;
}

.pricing__duration {
    font-size: 1rem;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-md);
}

.pricing__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-light-subtle);
    margin-bottom: var(--gap-lg);
}

.pricing__features {
    text-align: left;
    margin-bottom: var(--gap-xl);
}

.pricing__features li {
    font-size: 0.95rem;
    color: var(--color-light-muted);
    padding: var(--gap-xs) 0;
    padding-left: var(--gap-md);
    position: relative;
}

.pricing__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.pricing__note {
    font-size: 0.88rem;
    color: var(--color-light-subtle);
    margin-top: var(--gap-md);
}

.pricing__note a {
    color: var(--color-primary);
    text-decoration: underline;
}

.pricing__note a:hover { color: var(--color-primary-hover); }

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.faq__image { object-position: 45% center; }

.faq__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.75) 50%,
        rgba(0,0,0,0.80) 100%);
}

.faq__content {
    max-width: 820px;
    width: 100%;
}

.faq__list { margin-top: var(--gap-xl); }

.faq__item { border-bottom: 1px solid rgba(255,255,255,0.1); }

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--gap-md) 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-light);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition-fast);
}

.faq__question:hover { color: var(--color-primary); }

.faq__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--gap-sm);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-light-muted);
    padding-bottom: var(--gap-md);
}

.faq__item.active .faq__icon   { transform: rotate(45deg); }
.faq__item.active .faq__answer { max-height: 500px; }

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.contact__image { object-position: 75% center; }

.contact__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.80) 0%,
        rgba(0,0,0,0.70) 50%,
        rgba(0,0,0,0.75) 100%);
}

.contact__content { max-width: 680px; }

.contact__options { margin-top: var(--gap-lg); }

.contact__option h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--gap-xs);
}

.contact__option p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-sm);
}

.contact__email {
    display: inline-block;
    font-size: 1rem;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}

.contact__email:hover { color: var(--color-primary-hover); }

/* --------------------------------------------------------------------------
   Checkout Section
   -------------------------------------------------------------------------- */
.checkout {
    min-height: auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout__image { object-position: 55% 40%; }

.checkout__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.72) 100%);
}

.checkout__content {
    text-align: center;
    max-width: 520px;
    width: 100%;
}

.checkout__price {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-light);
    margin-bottom: var(--gap-md);
}

.checkout__disclaimer {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-xl);
}

.checkout__note {
    font-size: 0.85rem;
    color: var(--color-light-subtle);
    margin-top: var(--gap-md);
}

.checkout__final {
    font-size: 0.8rem;
    color: var(--color-light-subtle);
    margin-top: var(--gap-xs);
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   City Pages
   -------------------------------------------------------------------------- */
.city-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.city-body__overlay {
    background: linear-gradient(135deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.70) 50%,
        rgba(0,0,0,0.75) 100%);
}

.city-body__content {
    max-width: 820px;
    width: 100%;
}

.city-body__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3.5vw, 2.1rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--gap-md);
    margin-top: var(--gap-xl);
}

.city-body__content h2:first-of-type { margin-top: 0; }

.city-body__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-md);
}

.city-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 750px;
    padding-top: calc(var(--header-h) + var(--section-pad-v));
}

.city-hero__content .brand__tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--color-primary);
}

.city-cta {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-cta__content {
    text-align: center;
    max-width: 520px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--gap-xl) var(--section-pad-h);
}

.footer__content { max-width: 1400px; margin: 0 auto; }

.footer__brand { margin-bottom: var(--gap-lg); }

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light);
}

.footer__tagline {
    font-size: 0.82rem;
    color: var(--color-light-subtle);
    margin-top: var(--gap-xs);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm) var(--gap-lg);
    margin-bottom: var(--gap-xl);
}

.footer__links a {
    font-size: 0.82rem;
    color: var(--color-light-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--color-light); }

.footer__cities { margin-bottom: var(--gap-xl); }

.footer__cities-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light-subtle);
    margin-bottom: var(--gap-sm);
}

.footer__cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs) var(--gap-md);
}

.footer__cities-grid a {
    font-size: 0.8rem;
    color: var(--color-light-subtle);
    transition: color var(--transition-fast);
}

.footer__cities-grid a:hover { color: var(--color-primary); }

.footer__legal {
    padding-top: var(--gap-lg);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__legal p {
    font-size: 0.78rem;
    color: var(--color-light-subtle);
    opacity: 0.6;
    margin-bottom: var(--gap-xs);
}

/* --------------------------------------------------------------------------
   Thank You Page
   -------------------------------------------------------------------------- */
.thankyou {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thankyou__content {
    position: relative;
    z-index: 10;
    padding: var(--section-pad-v) var(--section-pad-h);
    text-align: center;
    max-width: 600px;
}

.thankyou__content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: var(--gap-md);
}

.thankyou__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-light-muted);
    margin-bottom: var(--gap-md);
}

/* --------------------------------------------------------------------------
   Desktop — 769px+
   -------------------------------------------------------------------------- */
@media (min-width: 769px) {
    .header__hamburger  { display: none !important; }
    .nav-drawer         { display: none !important; }
    .hero__footer-ctas  { display: none; }
    .btn--desktop-only  { display: inline-flex; }
    .btn--mobile-full   { width: auto; }
}

/* --------------------------------------------------------------------------
   Mobile — 768px and below
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-pad-h: 1.25rem;
        --section-pad-v: 20px;
    }

    /* Swap nav for hamburger */
    .header__nav    { display: none; }
    .header__login  { display: none; }
    .header__hamburger { display: flex; }
    .nav-drawer     { display: flex; }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero__content {
        flex: 0 0 auto;
        justify-content: flex-start;
        padding-top: calc(var(--header-h) + 20px);
        padding-bottom: 20px;
    }

    .hero__footer { padding: 0 var(--section-pad-h) 30px; }

    .brand__name        { letter-spacing: 0.08em; }
    .hero__intro-text   { font-size: 0.95rem; }
    .hero__stat         { font-size: 0.85rem; }
    .btn--desktop-only  { display: none; }

    /* Image focal points */
    .hero__image          { object-position: 80% center; }
    .about__image         { object-position: 65% center; }
    .how-it-works__image  { object-position: 50% center; }
    .pricing__image       { object-position: 60% 40%;   }
    .faq__image           { object-position: 40% center; }
    .contact__image       { object-position: 80% center; }
    .checkout__image      { object-position: 60% 40%;   }

    /* How It Works: 1 col */
    .how-it-works__steps {
        grid-template-columns: 1fr;
        gap: var(--gap-md);
    }

    /* About trust: stack */
    .about__trust {
        flex-direction: column;
        gap: var(--gap-sm);
    }

    /* Pricing */
    .pricing__card   { padding: var(--gap-xl) var(--gap-md); }
    .pricing__number { font-size: 3rem; }

    /* FAQ */
    .faq__question { font-size: 0.93rem; }

    /* Footer */
    .footer__links       { flex-direction: column; gap: var(--gap-sm); }
    .footer__cities-grid { gap: var(--gap-xs); }

    /* City hero */
    .city-hero__content { padding-top: calc(var(--header-h) + 20px); }

    /* Stronger overlays on mobile */
    .hero__overlay,
    .about__overlay,
    .how-it-works__overlay,
    .pricing__overlay,
    .faq__overlay,
    .contact__overlay,
    .checkout__overlay,
    .city-body__overlay {
        background: rgba(0,0,0,0.78) !important;
    }
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
