/*
Theme Name: Rise High Mobile Mechanics
Theme URI: https://rise-high-mobile-mechanics.lovable.app
Author: Rise High Mobile Mechanics
Author URI: https://rise-high-mobile-mechanics.lovable.app
Description: Two-page custom theme (Home + About The Owner) for Rise High Mobile Mechanics — DFW mobile mechanic service. Full 1:1 visual port of the production website with hero, services, about, how-it-works, reviews, gallery + lightbox, service area + map, online booking, contact form, and footer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rise-high
Tags: business, automotive, two-columns, custom-logo, custom-menu, featured-images, theme-options, threaded-comments
*/

/* ==========================================================================
   Design tokens (mirror of src/index.css)
   ========================================================================== */
:root {
    --background: #ffffff;
    --foreground: #131c2c;

    --card: #ffffff;
    --card-foreground: #131c2c;

    --primary: #131c2c;            /* deep navy */
    --primary-foreground: #ffffff;

    --secondary: #f3f4f7;
    --secondary-foreground: #131c2c;

    --muted: #f3f4f7;
    --muted-foreground: #5b6273;

    --accent: #ff4910;             /* automotive orange-red */
    --accent-2: #ec3a0a;
    --accent-foreground: #ffffff;

    --border: #e3e6eb;

    --navy: #131c2c;
    --navy-deep: #0b1220;

    --gradient-hero: linear-gradient(135deg, rgba(11,18,32,.92) 0%, rgba(19,28,44,.78) 50%, rgba(255,73,16,.35) 100%);
    --gradient-accent: linear-gradient(135deg, #ff4910 0%, #ec3a0a 100%);
    --gradient-navy: linear-gradient(180deg, #131c2c 0%, #0b1220 100%);

    --shadow-card: 0 4px 20px -4px rgba(19,28,44,.08);
    --shadow-card-hover: 0 16px 40px -10px rgba(19,28,44,.18);
    --shadow-accent: 0 10px 30px -8px rgba(255,73,16,.45);
    --shadow-cta: 0 14px 30px -10px rgba(255,73,16,.55);

    --radius: 0.5rem;
}

/* ==========================================================================
   Resets & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 64px; /* room for mobile call bar */
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
    font-family: 'Barlow Condensed', Oswald, Impact, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--primary);
    margin: 0 0 .5em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
.section-muted { background: var(--secondary); }
.section-navy {
    background: var(--gradient-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #fff; }

.eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }
.max-prose { max-width: 60ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded-img { border-radius: 1rem; box-shadow: var(--shadow-card-hover); width: 100%; height: auto; object-fit: cover; }

.grid-2 { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 992px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    text-transform: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-decoration: none;
    line-height: 1;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn-accent {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-cta);
}
.btn-accent:hover { color: #fff; }
.btn-outline {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: #fff; color: var(--primary); }
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover { background: #1c2740; color: #fff; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: background .3s, box-shadow .3s;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img, .brand .custom-logo { height: 48px; width: 48px; object-fit: contain; }
.brand-text .name {
    font-family: 'Barlow Condensed', Oswald, sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1;
    text-transform: uppercase;
}
.brand-text .tag {
    font-size: .65rem;
    font-weight: 700;
    color: var(--muted-foreground);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: .25rem;
}

.main-nav ul {
    display: none;
    gap: 2rem;
    align-items: center;
    margin: 0; padding: 0;
}
@media (min-width: 1024px) { .main-nav ul { display: flex; } }
.main-nav a {
    font-size: .85rem;
    font-weight: 700;
    color: rgba(19,28,44,.85);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color .2s;
}
.main-nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width .3s;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-cta .btn { padding: .75rem 1.1rem; font-size: .85rem; }

.menu-toggle {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--primary);
    cursor: pointer;
    font-size: 1.25rem;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.main-nav.open ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    left: 0; right: 0; top: 80px;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .5rem 1.25rem 1rem;
    box-shadow: var(--shadow-card);
}
.main-nav.open a {
    padding: 1rem .25rem;
    border-bottom: 1px solid rgba(227,230,235,.6);
    font-size: 1rem;
}

.site-content { padding-top: 80px; }

/* ==========================================================================
   Hero (front page)
   ========================================================================== */
.hero {
    position: relative;
    background: var(--gradient-navy);
    color: #fff;
    overflow: hidden;
    padding: 5rem 0 0;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: var(--gradient-hero), rgba(11,18,32,.45);
}
.hero-inner {
    position: relative;
    z-index: 1;
    padding: 4rem 0 6rem;
}
@media (min-width: 768px) { .hero-inner { padding: 6rem 0 8rem; } }
.hero-inner .container { max-width: 1200px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,73,16,.15);
    border: 1px solid rgba(255,73,16,.35);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.2); }
}
.hero h1 { color: #fff; margin-top: 1.5rem; font-size: clamp(2.75rem, 7vw, 6rem); }
.hero h1 .accent { color: var(--accent); display: block; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 640px; margin-top: 1.5rem; }
.hero p.sub  { font-size: .95rem; color: rgba(255,255,255,.78); max-width: 640px; margin-top: 1rem; }

.hero .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 640px;
}
@media (min-width: 600px) { .hero-trust { grid-template-columns: repeat(3, 1fr); } }
.hero-trust .item {
    display: flex; align-items: center; gap: .75rem;
    color: rgba(255,255,255,.92);
    font-size: .85rem; font-weight: 600;
}
.hero-trust .icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,73,16,.18);
    border: 1px solid rgba(255,73,16,.4);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
}

.hero-strip {
    background: var(--gradient-navy);
    border-top: 1px solid rgba(255,73,16,.25);
    border-bottom: 1px solid rgba(255,73,16,.25);
    padding: 1rem 0;
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.hero-strip .row {
    display: flex; flex-wrap: wrap;
    justify-content: center; align-items: center;
    gap: .5rem 1.5rem;
}
.hero-strip .sep {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ==========================================================================
   Generic section heads
   ========================================================================== */
.sec-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.sec-head .eyebrow { margin-bottom: .75rem; }
.sec-head p { font-size: 1.1rem; color: var(--muted-foreground); margin-top: 1rem; }

/* ==========================================================================
   Why Mobile / feature cards
   ========================================================================== */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.feature-card .ic {
    width: 64px; height: 64px;
    border-radius: 14px;
    background: var(--gradient-accent);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-accent);
    margin-bottom: 1.25rem;
}
.feature-card h3 { font-size: 1.5rem; }
.feature-card p { color: var(--muted-foreground); margin: 0; }

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 600px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.service-card .ic {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: background .25s, transform .25s;
}
.service-card:hover .ic { background: var(--gradient-accent); transform: rotate(6deg); }
.service-card h3 { font-size: 1.15rem; color: var(--primary); text-transform: none; line-height: 1.25; }
.service-card p { font-size: .9rem; color: var(--muted-foreground); margin: .25rem 0 1rem; }
.service-card .req {
    color: var(--accent); font-weight: 700; font-size: .85rem;
    display: inline-flex; align-items: center; gap: .35rem;
}

.cta-band {
    margin-top: 4rem;
    background: var(--gradient-navy);
    color: #fff;
    border-radius: 18px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card-hover);
}
.cta-band h3 { color: #fff; font-size: clamp(1.75rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.8); margin: .5rem 0 1.5rem; }

/* ==========================================================================
   About (image + checks)
   ========================================================================== */
.about-img-wrap { position: relative; }
.about-img-wrap .img {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    aspect-ratio: 4 / 5;
}
.about-img-wrap .img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap .badge-years {
    position: absolute;
    right: -1rem; bottom: -1rem;
    width: 150px; height: 150px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 18px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cta);
    text-align: center;
    padding: 1rem;
}
.about-img-wrap .badge-years .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3rem; line-height: 1; }
.about-img-wrap .badge-years .lab { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-top: .5rem; }
.about-img-wrap .badge-est {
    position: absolute;
    left: -1rem; top: -1rem;
    background: var(--primary);
    color: #fff;
    padding: .85rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card-hover);
    display: none;
}
.about-img-wrap .badge-est .lab { font-size: .65rem; color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.about-img-wrap .badge-est .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.75rem; line-height: 1; }
@media (min-width: 768px) {
    .about-img-wrap .badge-years,
    .about-img-wrap .badge-est { display: flex; }
}

.checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    margin-top: 2rem;
}
@media (min-width: 600px) { .checks { grid-template-columns: 1fr 1fr; } }
.checks li {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .9rem; font-weight: 600; color: var(--primary);
}
.checks .tick {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 900;
    box-shadow: var(--shadow-accent);
    margin-top: 2px;
}

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 1.75rem;
    color: #fff;
    transition: background .25s, border-color .25s;
}
.step-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,73,16,.4); }
.step-card .top { display: flex; justify-content: space-between; align-items: flex-start; }
.step-card .ic {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--gradient-accent);
    color: #fff; display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; box-shadow: var(--shadow-accent);
}
.step-card .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 3rem;
    color: rgba(255,255,255,.12);
}
.step-card h3 { color: #fff; font-size: 1.5rem; margin-top: 1rem; }
.step-card p { color: rgba(255,255,255,.72); font-size: .9rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.review-hero {
    max-width: 640px; margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.review-hero .stars { color: var(--accent); font-size: 1.5rem; letter-spacing: .15em; }
.review-hero .score {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 2rem; color: var(--primary);
    margin-left: .5rem;
}
.review-grid {
    display: grid; gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
}
@media (min-width: 768px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.review-card .stars { color: var(--accent); letter-spacing: .15em; }
.review-card blockquote {
    margin: 1rem 0 1.25rem;
    font-weight: 500; color: var(--primary);
    line-height: 1.55;
}
.review-card .meta {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    font-size: .7rem; color: var(--muted-foreground);
    text-transform: uppercase; letter-spacing: .12em; font-weight: 700;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: var(--secondary);
    cursor: pointer;
    border: 0; padding: 0;
    display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,18,32,.92), rgba(11,18,32,.3) 50%, transparent);
    opacity: .8;
    transition: opacity .25s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .info {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1rem;
    color: #fff;
    text-align: left;
}
.gallery-item .cat {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: .65rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .1em;
    padding: .25rem .5rem;
    border-radius: 4px;
}
.gallery-item .cap { font-size: .85rem; font-weight: 600; margin-top: .5rem; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(11,18,32,.95);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center; justify-content: center;
    padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: 14px; }
.lightbox .close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.1); color: #fff;
    border: 0; font-size: 1.5rem; cursor: pointer;
}

/* ==========================================================================
   Service area + cities
   ========================================================================== */
.area-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .area-grid { grid-template-columns: 2fr 1fr; } }
.area-map {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}
.area-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.area-map .pin {
    position: absolute; left: 1rem; bottom: 1rem;
    background: rgba(255,255,255,.95);
    color: var(--primary);
    font-weight: 700; font-size: .85rem;
    padding: .5rem .9rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(8px);
    text-decoration: none;
}
.area-cta {
    background: var(--gradient-navy);
    color: #fff;
    padding: 2.25rem;
    border-radius: 18px;
    box-shadow: var(--shadow-card-hover);
    display: flex; flex-direction: column; justify-content: center;
}
.area-cta h3 { color: #fff; font-size: 1.75rem; }

.city-grid {
    margin-top: 2.5rem;
    display: grid; gap: .75rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .city-grid { grid-template-columns: repeat(5, 1fr); } }
.city-grid li {
    background: var(--card);
    border: 1px solid var(--border);
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: .85rem; font-weight: 600; color: var(--primary);
    transition: border-color .2s, transform .2s;
    display: flex; align-items: center; gap: .5rem;
}
.city-grid li::before {
    content: '➤'; color: var(--accent); font-size: .75rem;
}
.city-grid li:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ==========================================================================
   Booking
   ========================================================================== */
.book-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .book-grid { grid-template-columns: 1fr 1fr; } }
.book-list { margin-top: 2rem; display: grid; gap: .75rem; }
.book-list li { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.9); }
.book-list .tick { color: var(--accent); font-weight: 900; }
.book-frame {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow-card-hover);
}
.book-frame .top {
    display: flex; justify-content: space-between; align-items: center;
    padding: .25rem .5rem .75rem;
    color: rgba(255,255,255,.75);
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
}
.book-frame .iframe-wrap {
    border-radius: 12px; overflow: hidden; background: #fff;
}
.book-frame iframe { width: 100%; height: 620px; border: 0; display: block; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 3.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info {
    background: var(--gradient-navy);
    color: #fff;
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: var(--shadow-card-hover);
}
.contact-info h3 { color: #fff; }
.contact-info .call-card {
    margin-top: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: background .2s;
}
.contact-info .call-card:hover { background: rgba(255,255,255,.1); color: #fff; }
.contact-info .call-card .ic {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--gradient-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; box-shadow: var(--shadow-accent);
}
.contact-info .call-card .lab { font-size: .7rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.contact-info .call-card .num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; }

.alert-box {
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255,73,16,.1);
    border: 1px solid rgba(255,73,16,.35);
    color: #fff;
}
.alert-box .lab {
    color: var(--accent); font-weight: 800; text-transform: uppercase;
    font-size: .75rem; letter-spacing: .12em;
}

.hours-block { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; color: rgba(255,255,255,.85); }
.hours-block .lab { color: var(--accent); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; display: block; margin-bottom: .25rem; }

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
}
.contact-form h3 { color: var(--primary); }
.field-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 600px) { .field-grid { grid-template-columns: 1fr 1fr; } }
.field-grid .full { grid-column: 1 / -1; }
.contact-form label {
    display: block;
    font-size: .7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--primary);
    margin-bottom: .5rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(243,244,247,.6);
    font-family: inherit;
    font-size: .9rem;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,73,16,.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.required { color: var(--accent); margin-left: .25rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--gradient-navy);
    color: #fff;
    padding: 5rem 0 2rem;
}
.site-footer h4 {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}
.footer-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-grid .brand .name { color: #fff; }
.footer-grid p, .footer-grid a, .footer-grid li { color: rgba(255,255,255,.78); font-size: .9rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid ul { display: grid; gap: .5rem; }
.footer-grid .services-list { grid-template-columns: 1fr 1fr; }
.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .9rem;
    transition: background .2s, color .2s;
}
.socials a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-direction: column; gap: .5rem;
    align-items: center; justify-content: space-between;
    font-size: .75rem; color: rgba(255,255,255,.6);
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ==========================================================================
   Mobile call bar
   ========================================================================== */
.mobile-call-bar {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 40;
    background: var(--gradient-accent);
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    font-weight: 800;
    box-shadow: 0 -8px 30px rgba(0,0,0,.25);
    text-decoration: none;
    animation: pulse 2s infinite;
}
.mobile-call-bar:hover { color: #fff; }
@media (min-width: 768px) { .mobile-call-bar { display: none; } }

/* ==========================================================================
   About The Owner page
   ========================================================================== */
.owner-hero {
    background: var(--gradient-navy);
    color: #fff;
    padding: 6rem 0 5rem;
}
.owner-hero h1 { color: #fff; }
.owner-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 56ch; }
.owner-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.owner-badges span {
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    font-size: .85rem; font-weight: 600;
}
.owner-portrait {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    aspect-ratio: 4 / 5;
    max-width: 420px;
    margin: 0 auto;
}
.owner-portrait img { width: 100%; height: 100%; object-fit: cover; }

.story-section { padding: 5rem 0; }
.story-section.alt { background: var(--secondary); }
.story-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 992px) { .story-grid { grid-template-columns: 1fr 1fr; } }
.story-grid.reverse > div:first-child { order: 2; }
@media (max-width: 991px) { .story-grid.reverse > div:first-child { order: 0; } }
.story-img {
    border-radius: 18px; overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-card-hover);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-eyebrow-row { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.story-eyebrow-row .ic {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gradient-accent); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-accent);
    font-size: 1rem;
}

/* ==========================================================================
   404
   ========================================================================== */
.notfound { text-align: center; padding: 8rem 1rem; }
.notfound h1 { font-size: clamp(4rem, 12vw, 9rem); color: var(--accent); }

/* Visually hidden helper for accessibility */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
