/* ============================================================
   Ankeny Auto Detailing — Dark · Minimal · Professional
   Bitter (serif headings) + Inter (body)
   Accent: #77CCFC
   ============================================================ */

:root {
    --dark:      #0a0a0a;
    --dark-2:    #111111;
    --dark-3:    #161616;
    --dark-card: #131313;

    --light:     #ffffff;
    --muted:     #888888;
    --dim:       #505050;

    --accent:    #77CCFC;
    --accent-bg: rgba(119, 204, 252, 0.10);
    --accent-border: rgba(119, 204, 252, 0.35);

    --border:    rgba(255, 255, 255, 0.07);
    --border-2:  rgba(255, 255, 255, 0.12);

    --serif: 'Bitter', Georgia, 'Times New Roman', serif;
    --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-w: 1200px;
    --pad:   clamp(1rem, 4vw, 2rem);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ──────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--dark);
    color: var(--light);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Navigation ─────────────────────────────────────────── */

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    transition: background 0.3s var(--ease), border-color 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo { display: flex; align-items: center; }
.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta {
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: var(--accent) !important;
    border: 1px solid var(--accent-border);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
}

/* Mobile toggle — two thin lines */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--light);
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.70) 55%,
        rgba(10, 10, 10, 0.90) 100%
    );
}

.hero-body {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hero-logo {
    width: 300px;
    max-width: 78vw;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.7));
}

.hero-sub {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-btn {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--dark);
    background: var(--accent);
    padding: 0.875rem 2.75rem;
    border-radius: 2px;
    transition: opacity 0.2s, transform 0.2s var(--ease);
}

.hero-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.2s;
    animation: scroll-bob 2.8s ease-in-out infinite;
}

.hero-scroll:hover { color: rgba(255, 255, 255, 0.6); }

@keyframes scroll-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Services ───────────────────────────────────────────── */

.services { background: var(--dark-2); }

.services-intro {
    max-width: 660px;
    margin: 0 auto;
    padding: 5.5rem var(--pad) 3rem;
    text-align: center;
}

.services-intro h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
}

.services-area {
    margin-top: 0.75rem;
    font-size: 0.8rem !important;
    letter-spacing: 0.04em;
    color: var(--dim) !important;
}

/* Category */

.service-category { margin-bottom: 2px; }

.category-label-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem var(--pad) 0;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
}

.category-label span {
    font-family: var(--serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.category-label span::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 0.875rem;
}

/* Service Groups */

.service-group {
    padding: 0 clamp(1rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.service-group:first-of-type { margin-top: 2rem; }
.service-group:last-child { margin-bottom: 5rem; }

.sg-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.sg-label span {
    font-family: var(--serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.sg-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
}

/* Service Card Grid */

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.service-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s var(--ease);
}

.service-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}

.sc-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.service-card:hover .sc-img img { transform: scale(1.04); }

.sc-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.sc-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.sc-body h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.625rem;
    color: var(--light);
}

.sc-body > p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0.875rem;
}

.sc-body ul {
    flex: 1;
    margin-bottom: 1rem;
}

.sc-body li {
    position: relative;
    padding-left: 1.125rem;
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

.sc-body li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.sc-note {
    font-size: 0.75rem;
    color: var(--dim);
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.sc-price {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.sc-price sup {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
}

.sc-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-border);
    padding: 0.5rem 1.1rem;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.sc-btn:hover {
    background: var(--accent-bg);
    border-color: var(--accent);
}

/* ── Before & After ─────────────────────────────────────── */

.beforeafter {
    background: var(--dark);
    padding: 5rem 0;
}

.ba-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.ba-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ba-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.625rem;
}

.ba-header p {
    font-size: 0.9rem;
    color: var(--muted);
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    cursor: col-resize;
    user-select: none;
    border: 1px solid var(--border);
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.7);
}

.ba-handle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.ba-tag {
    position: absolute;
    bottom: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
    pointer-events: none;
}

.ba-tag-before { left: 1rem; }
.ba-tag-after  { right: 1rem; }

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

/* ── CTA Band ───────────────────────────────────────────── */

.cta-band {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.75rem var(--pad);
}

.cta-band-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band-inner p {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.cta-band-inner a {
    display: inline-block;
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--dark);
    background: var(--accent);
    padding: 0.875rem 2.5rem;
    border-radius: 2px;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s var(--ease);
}

.cta-band-inner a:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ── About ──────────────────────────────────────────────── */

.about {
    padding: 6rem 0;
    background: var(--dark);
}

.about-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.about-text h3 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2rem;
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--light);
    margin-bottom: 1.1rem;
}

.about-lead strong { color: var(--accent); font-weight: 600; }

.about-text p {
    font-size: 0.925rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-text p strong { color: rgba(255, 255, 255, 0.85); }

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-n {
    display: block;
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-l {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-photo {
    border-radius: 3px;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* ── Why Choose Us ──────────────────────────────────────── */

.why {
    padding: 5.5rem 0;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
}

.why-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.why h2 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.why-item h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.625rem;
}

.why-item p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Instagram CTA ──────────────────────────────────────── */

.instagram-cta {
    padding: 5rem 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    text-align: center;
}

.instagram-cta-inner { padding: 0 var(--pad); }

.instagram-cta h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent);
    transition: opacity 0.2s;
}

.ig-link svg { width: 32px; height: 32px; flex-shrink: 0; }
.ig-link:hover { opacity: 0.72; }

/* ── Footer ─────────────────────────────────────────────── */

.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.625rem;
}

.footer-brand p {
    font-size: 0.825rem;
    color: var(--muted);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.825rem;
    color: var(--muted);
    transition: color 0.2s;
}

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

.footer-copy {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.25rem var(--pad) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-copy p { font-size: 0.775rem; color: var(--dim); }

/* ── Booking page ───────────────────────────────────────── */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.page-header {
    padding: 9rem 0 3.5rem;
    background: var(--dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.gif');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.page-header .container { position: relative; z-index: 1; }

.page-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--muted);
}

.booking {
    padding: 4rem 0 6rem;
    background: var(--dark);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.booking-calendar {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.calendly-container { width: 100%; }
.calendly-inline-widget { min-width: 100% !important; }

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.5rem;
}

.info-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.service-item .service-name { color: var(--muted); }

.service-item .service-price {
    font-weight: 600;
    color: var(--accent);
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.expectation-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

.expectation-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.notice-card {
    border-color: rgba(119, 204, 252, 0.25) !important;
    background: rgba(119, 204, 252, 0.05) !important;
}

.notice-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    color: var(--accent);
}

.notice-icon span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.notice-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    transition: opacity 0.2s;
}

.instagram-link svg { width: 18px; height: 18px; }
.instagram-link:hover { opacity: 0.75; }

/* Social link in footer of book page */
.footer-social { display: flex; align-items: center; }
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: var(--muted);
    transition: color 0.2s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--light); }

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--light);
}

.footer-tagline {
    font-size: 0.825rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p { font-size: 0.775rem; color: var(--dim); }

/* ── Animations ─────────────────────────────────────────── */

.fade-in-up, [data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in-up.visible, [data-animate].visible {
    opacity: 1;
    transform: none;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: none; }

.fade-in-right {
    opacity: 0;
    transform: translateX(22px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 900px) {
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo { max-width: 420px; margin: 0 auto; }
    .about-stats { justify-content: center; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem var(--pad);
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link { font-size: 1rem; }
    .nav-cta  { padding: 0.5rem 0; border: none; font-size: 1rem !important; }
    .nav-cta::after { display: none; }

    .service-card { flex: 0 0 calc(50% - 0.75rem); }

    .cta-band-inner { flex-direction: column; text-align: center; }

    .footer-inner { flex-direction: column; }
    .footer-nav { gap: 1.5rem; }
}

@media (max-width: 640px) {
    .why-grid  { grid-template-columns: 1fr; gap: 2rem; }
    .hero-logo { width: 230px; }
    .about-stats { flex-direction: column; gap: 1.75rem; align-items: center; }
    .booking-info { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .service-card { flex: 0 0 100%; }
}

/* ── Reduced motion ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
