/* ============================================
   ELITE LUX LIMO — Luxury Transportation
   Shared stylesheet
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Colors - dark luxury palette */
    --color-bg: #0a0a0a;
    --color-bg-elevated: #141414;
    --color-bg-card: #1a1a1a;
    --color-surface-1: #1f1f1f;
    --color-surface-2: #2a2a2a;
    --color-border: rgba(199, 159, 83, 0.18);
    --color-border-strong: rgba(199, 159, 83, 0.4);

    /* Gold palette - matched to logo */
    --gold-light: #e8c887;
    --gold: #c79f53;
    --gold-deep: #a07a35;
    --gold-shadow: rgba(199, 159, 83, 0.25);

    /* Text */
    --text-primary: #f5f1ea;
    --text-secondary: #b8b0a3;
    --text-muted: #807766;

    /* Typography */
    --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

    /* Spacing & sizing */
    --container: 1280px;
    --header-height: 152px;
    --header-height-mobile: 132px;

    /* Effects */
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(199, 159, 83, 0.15);
    --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

body {
    background: var(--color-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Subtle film grain over the whole page */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.035;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.08em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: 0.1em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: 0.08em;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.eyebrow::before {
    content: "—— ";
    color: var(--gold-deep);
}

.script-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-sm {
    padding: 4rem 0;
}

.section-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--color-border-strong),
        transparent
    );
    margin: 0 auto;
    max-width: 600px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.brand__logo-link {
    display: block;
    line-height: 0;
    transition: transform var(--transition);
}

.brand__logo-link:hover {
    transform: scale(1.04);
}

.brand__logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(199, 159, 83, 0.25));
}

.brand__contact {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.3;
}

.brand__contact a,
.brand__contact span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

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

.brand__contact .icon {
    color: var(--gold);
    margin-right: 0.5rem;
    display: inline-block;
    width: 14px;
    text-align: center;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.nav a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.6rem 0.85rem;
    position: relative;
    font-weight: 500;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav a:hover,
.nav a.active {
    color: var(--gold-light);
}

.nav a:hover::after,
.nav a.active::after {
    width: 60%;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.header-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(101%);
    transition: transform var(--transition);
    z-index: -1;
}

.header-cta:hover {
    color: var(--color-bg);
    border-color: var(--gold);
}

.header-cta:hover::before {
    transform: translateY(0);
}

.header-cta__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-light);
    transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #0a0a0a;
    box-shadow: 0 8px 24px rgba(199, 159, 83, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(199, 159, 83, 0.45);
}

.btn--ghost {
    border-color: var(--gold);
    color: var(--gold-light);
    background: transparent;
}

.btn--ghost:hover {
    background: rgba(199, 159, 83, 0.08);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn__arrow {
    display: inline-block;
    transition: transform var(--transition);
}

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

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.05);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.25) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 30%, rgba(10,10,10,0.95) 100%);
}

.hero__content {
    max-width: 720px;
    padding: 6rem 0;
}

.hero__title {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.hero__title .gold {
    color: var(--gold-light);
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 540px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Decorative corner ornaments */
.hero__ornament {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    opacity: 0.6;
}

.hero__ornament--tl { top: 2rem; left: 2rem; border-right: 0; border-bottom: 0; }
.hero__ornament--br { bottom: 2rem; right: 2rem; border-left: 0; border-top: 0; }

/* Page hero variant (smaller, for non-home pages) */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
    isolation: isolate;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.95);
}

.page-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.92) 100%);
}

.page-hero__title {
    text-align: center;
    margin-bottom: 1rem;
}

.page-hero__sub {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---------- Section heading ---------- */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.section-head__title {
    margin-bottom: 1rem;
}

.section-head__sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Decorative divider with crest */
.divider-crest {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.divider-crest__line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.divider-crest__line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.divider-crest__diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ---------- Cards & Grids ---------- */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    border-color: var(--color-border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.card:hover::before {
    opacity: 1;
}

.card__icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.card__title {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 880px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 720px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid var(--color-border);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 5;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand__logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(199, 159, 83, 0.2));
}

.footer-brand__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col a,
.footer-col li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom__copy,
.footer-bottom__tcp {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.footer-bottom__tcp {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.25em;
}

/* ---------- Pricing tables ---------- */
.price-table {
    width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-collapse: separate;
    border-spacing: 0;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
    gap: 1.5rem;
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row:hover {
    background: rgba(199, 159, 83, 0.04);
}

.price-row__label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-row__from {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price-row__to {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    font-weight: 500;
}

.price-row__amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.price-row__amount sup {
    font-size: 0.7em;
    color: var(--gold);
    margin-right: 0.1em;
}

/* Hourly rate cards */
.rate-card {
    background: linear-gradient(180deg, var(--color-bg-card) 0%, var(--color-bg-elevated) 100%);
    border: 1px solid var(--color-border);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.rate-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(199, 159, 83, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

.rate-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-card), var(--shadow-gold);
}

.rate-card:hover::before {
    opacity: 1;
}

.rate-card--featured {
    border-color: var(--gold);
}

.rate-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.rate-card__class {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.rate-card__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.rate-card__price {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-light);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.rate-card__price sup {
    font-size: 0.4em;
    vertical-align: super;
    color: var(--gold);
    margin-right: 0.1em;
}

.rate-card__per {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: block;
}

.rate-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.rate-card__features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.rate-card__features li::before {
    content: "✦";
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.75em;
}

/* ---------- Fleet showcase ---------- */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 980px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

.fleet-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.fleet-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fleet-card:hover img {
    transform: scale(1.06);
}

.fleet-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.75rem;
}

.fleet-card__class {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.fleet-card__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* ---------- Service tiles ---------- */
.service {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.95);
    transition: transform 0.8s, filter var(--transition);
}

.service:hover img {
    transform: scale(1.04);
    filter: brightness(0.7) saturate(1.05);
}

.service__overlay {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%);
}

.service__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service__text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.service__num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    opacity: 0.8;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-up {
    animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.fade-in {
    animation: fadeIn 1.2s ease-out both;
}

/* Stagger helpers */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }

/* ---------- Mobile Responsive ---------- */
@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .brand__logo {
        width: 60px;
        height: 60px;
    }

    .brand__contact a,
    .brand__contact span {
        font-size: 0.7rem;
        letter-spacing: 0.12em;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 0.85rem 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .nav a::after { display: none; }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-brand__tagline {
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .section {
        padding: 4.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero__content {
        padding: 4rem 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .brand__contact {
        display: none;
    }

    .price-row {
        padding: 1.1rem 1.25rem;
        gap: 1rem;
    }

    .price-row__amount {
        font-size: 1.25rem;
    }

    .rate-card {
        padding: 2.25rem 1.5rem;
    }

    .rate-card__price {
        font-size: 3.25rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .hero__ornament { width: 50px; height: 50px; }
    .hero__ornament--tl { top: 1rem; left: 1rem; }
    .hero__ornament--br { bottom: 1rem; right: 1rem; }
}
