/* ==========================================================================
   Virtually Rory - style.css
   ========================================================================== */

:root {
    --ink: #1a1a2e;
    --stone: #44403c;
    --warm: #6b6b7b;
    --sand: #f5f0e8;
    --cream: #faf8f4;
    --white: #ffffff;
    --accent: #5b7fb5;
    --accent-hover: #3d6399;
    --accent-soft: #e8eef6;
    --green: #16a34a;
    --green-soft: #f0fdf4;
    --green-wa: #25d366;
    --red-soft: #fef2f2;
    --red: #b91c1c;
    --border: #e2ddd5;
    --border-light: #f0ebe4;
    --blue-mist: #e8eef6;
    --blue-light: #dfe8f4;
    --blue-deeper: #2c4f7a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --radius: 8px;
    --radius-lg: 16px;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.2; }
h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* --- Focus visible for accessibility --- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   NAV
   ========================================================================== */

nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    font-size: 0.875rem; font-weight: 500; color: var(--warm);
    transition: color 0.2s; letter-spacing: -0.01em;
}
.nav-links a:hover:not(.nav-guide) { color: var(--ink); }
.nav-links a.active:not(.nav-guide) { color: var(--accent); }
.nav-links .nav-guide {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent); color: #fff; padding: 8px 16px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 500;
    text-decoration: none; border-bottom: none;
}
.nav-links .nav-guide:hover { background: var(--accent); color: #fff; opacity: 0.85; text-decoration: none; border-bottom: none; }
.nav-links .nav-guide:focus,
.nav-links .nav-guide.active { background: var(--accent); color: #fff; opacity: 1; text-decoration: none; border-bottom: none; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right .logo-phone { margin-left: 4px; }
.nav-guide-mobile {
    display: none; align-items: center; gap: 6px;
    background: var(--accent); color: #fff; padding: 8px 16px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 500;
    border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.nav-guide-mobile:hover { background: var(--accent-hover); color: #fff; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; transition: 0.3s; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.9rem;
    border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
    letter-spacing: -0.01em;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #292524; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-wa { background: var(--green-wa); color: #fff; }
.btn-wa:hover { background: #1fb855; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.25); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: #f5f5f5; color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 8px 18px; font-size: 0.84rem; }

.wa-icon { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    padding: 80px 0 100px;
    background: linear-gradient(170deg, var(--cream) 0%, var(--blue-mist) 50%, var(--cream) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(91,127,181,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-slim { padding: 56px 0 64px; }
.hero-into-blue { background: linear-gradient(170deg, var(--cream) 0%, var(--blue-mist) 100%); }

.hero-grid {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 80px; align-items: center;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 500; color: var(--green);
    margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    letter-spacing: -0.03em; margin-bottom: 20px;
    color: var(--ink);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--warm); }
.hero-body { font-size: 1.05rem; color: var(--warm); max-width: 540px; margin-bottom: 32px; line-height: 1.75; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-card {
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-photo {
    width: 100%; height: 280px;
    object-fit: cover; object-position: center top;
}
.hero-card-inner { padding: 24px; }
.hero-card-inner h3 { font-size: 1.2rem; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.hero-card-inner p { font-size: 0.85rem; color: var(--warm); margin-bottom: 14px; line-height: 1.55; }
.hero-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em;
    padding: 4px 10px; border-radius: 4px;
    background: var(--blue-light); color: var(--accent); border: 1px solid rgba(91,127,181,0.1);
}

/* ==========================================================================
   SECTION SPACING & ALTERNATING BACKGROUNDS
   ========================================================================== */

section { padding: 96px 0; }
.section-compact { padding: 48px 0; }
.section-blue { background: var(--blue-mist); overflow: hidden; }
.section-white { background: var(--white); }
.section-dark { background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deeper) 100%); color: var(--white); }

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-intro { margin-bottom: 56px; }
.services-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.services-intro p { font-size: 1rem; color: var(--warm); max-width: 560px; }

.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--stone);
    color: inherit;
}
.svc-card h3 {
    font-size: 1.05rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}
.svc-card p {
    font-size: 0.88rem;
    color: var(--warm);
    line-height: 1.65;
    flex: 1;
}
.svc-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink);
    transition: text-decoration 0.15s;
}
.svc-card:hover .svc-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.svc-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-mist);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.svc-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}
.svc-price {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.svc-hidden { display: none; }
.svc-hidden.svc-visible {
    display: flex;
    animation: svcReveal 0.4s ease forwards;
}
@keyframes svcReveal {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.svc-toggle-wrap { text-align: center; margin-top: 32px; }
.svc-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 24px; border-radius: 50px;
    border: 1.5px solid var(--border); background: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
    color: var(--warm); cursor: pointer; transition: all 0.2s;
}
.svc-toggle:hover { border-color: var(--ink); color: var(--ink); }
.svc-toggle-icon { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s; }
.svc-toggle-icon.flipped { transform: rotate(180deg); }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.steps-list {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    counter-reset: step;
}
.step {
    counter-increment: step;
    position: relative;
    padding: 32px 28px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.step:hover { border-color: var(--stone); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step::before {
    content: counter(step);
    font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 600;
    color: var(--blue-light); line-height: 1; margin-bottom: 12px; display: block;
}
.step h3 { font-size: 0.95rem; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.step p { font-size: 0.88rem; color: var(--warm); line-height: 1.6; }

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about-grid {
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: 72px; align-items: start;
}
.about-photos-col { display: flex; flex-direction: column; }
.about-photos { position: relative; max-width: 380px; margin-bottom: 0; padding-bottom: 20px; }
.about-photos picture:first-child .about-photo {
    border-radius: 4px;
    object-fit: cover; aspect-ratio: 4/3; width: 100%;
    border: 6px solid var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}
.about-photos picture:first-child .about-photo:hover { transform: rotate(-1deg) scale(1.02); }
.about-photos picture:last-of-type {
    position: absolute; bottom: -30px; left: -30px;
    width: 55%;
}
.about-photos picture:last-of-type .about-photo {
    border-radius: 4px;
    object-fit: cover; aspect-ratio: 1; width: 100%;
    border: 6px solid var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}
.about-photos picture:last-of-type .about-photo:hover { transform: rotate(2deg) scale(1.02); }
.about-dotty-label {
    font-size: 0.82rem; font-weight: 500; color: var(--warm);
    text-align: center; margin-top: 48px; max-width: 360px;
    background: var(--white); padding: 6px 16px; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 6px;
    border: 1px solid var(--border);
}
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); letter-spacing: -0.02em; margin-bottom: 16px; }
.about-text > p { color: var(--warm); font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; }

.about-detail { margin-bottom: 24px; }
.about-detail h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--ink); }
.about-detail p { font-size: 0.9rem; color: var(--warm); line-height: 1.7; }
.about-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }

/* ==========================================================================
   CREDENTIALS
   ========================================================================== */

.creds { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; padding: 48px 0; }
.cred { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cred img {
    width: 150px; height: 150px; object-fit: contain;
    border-radius: 50%; background: var(--white);
    padding: 16px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.cred span { font-size: 0.8rem; font-weight: 600; color: var(--stone); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
    display: flex; gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonials-grid .testimonial { flex: 0 0 calc((100% - 40px) / 3); }

.testimonials-wrap { position: relative; }
.testimonials-wrap::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--blue-mist));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
}
.testimonials-wrap.scrolled-end::after { opacity: 0; }

.testimonial {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1px solid var(--border);
    display: flex; flex-direction: column;
    height: 220px;
}
.testimonial.expanded { height: auto; }
.testimonial .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; flex-shrink: 0; }
.testimonial blockquote {
    font-size: 0.92rem; color: var(--stone); line-height: 1.7;
    font-style: italic; flex: 1 1 auto; margin-bottom: 0;
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.testimonial.expanded blockquote { -webkit-line-clamp: unset; overflow: visible; }
.testimonial-toggle {
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500;
    color: var(--accent); flex-shrink: 0; text-align: left;
    margin: 8px 0 12px; transition: color 0.2s;
}
.testimonial-toggle:hover { color: var(--accent-hover); }
.testimonial-toggle.hidden { display: none; }
.testimonial cite {
    font-style: normal; font-size: 0.82rem; font-weight: 600;
    color: var(--ink); padding-top: 12px; border-top: 1px solid var(--border-light);
    display: block; flex-shrink: 0; margin-top: auto;
}

/* ==========================================================================
   RATES
   ========================================================================== */

.rate-tabs {
    display: inline-flex; gap: 2px; background: var(--sand);
    border-radius: 50px; padding: 3px; margin-bottom: 40px;
    border: 1px solid var(--border-light);
}
.rate-tab {
    padding: 8px 20px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem; font-weight: 500; cursor: pointer; transition: all 0.2s;
    border: none; background: transparent; color: var(--warm);
}
.rate-tab:hover { color: var(--ink); }
.rate-tab.active { background: var(--ink); color: var(--white); }
.rate-panel { display: none; }
.rate-panel.active { display: block; }

.rates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rate-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 28px; border: 1.5px solid var(--border);
    transition: all 0.2s; position: relative;
}
a.rate-card { text-decoration: none; color: inherit; display: block; }
.rate-card:hover { border-color: var(--stone); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rate-card.popular { border-color: var(--ink); }
.rate-card.popular::after {
    content: 'Popular'; position: absolute; top: -10px; right: 20px;
    background: var(--ink); color: var(--white); font-size: 0.7rem; font-weight: 600;
    padding: 2px 12px; border-radius: 50px; letter-spacing: 0.03em;
}
.rate-card h3 { font-size: 1rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.rate-price { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.rate-price span { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--warm); }
.rate-card > p { font-size: 0.88rem; color: var(--warm); line-height: 1.6; }
.rate-hours {
    display: inline-block; margin-top: 12px; font-size: 0.78rem; font-weight: 600;
    color: var(--ink); background: var(--sand); padding: 4px 12px; border-radius: 4px;
}
.retainer-note { font-size: 0.9rem; color: var(--warm); max-width: 580px; margin-bottom: 32px; line-height: 1.7; }
.rate-card .service-link { display: inline-block; margin-top: 12px; font-size: 0.84rem; font-weight: 500; color: var(--ink); transition: text-decoration 0.15s; }
a.rate-card:hover .service-link { text-decoration: underline; text-underline-offset: 3px; }

.costs-aside {
    margin-top: 48px; padding: 36px; background: var(--blue-light);
    border-radius: var(--radius-lg); border: 1px solid rgba(91,127,181,0.1);
}
.costs-aside h3 { font-size: 1.15rem; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 6px; }
.costs-aside > p { font-size: 0.88rem; color: var(--warm); margin-bottom: 20px; }
.costs-list { display: flex; flex-wrap: wrap; gap: 8px; }
.cost-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.82rem; color: var(--stone); background: var(--red-soft);
    padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(185,28,28,0.1);
}
.cost-tag svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    width: 100%; padding: 20px 0; display: flex; justify-content: space-between;
    align-items: center; background: none; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
    color: var(--ink); text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; color: var(--warm); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 0 20px; }
.faq-a p { font-size: 0.9rem; color: var(--warm); line-height: 1.7; margin-bottom: 8px; }
.faq-a ul { list-style: disc; padding-left: 20px; margin: 8px 0; }
.faq-a ul li { font-size: 0.9rem; color: var(--warm); line-height: 1.7; margin-bottom: 4px; }

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.cta-card h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 10px; color: var(--ink); }
.cta-card > p { font-size: 0.95rem; color: var(--warm); margin-bottom: 28px; }
.cta-card .cta-actions { justify-content: center; }
@media (max-width: 600px) { .cta-card { padding: 40px 24px; } }

.cta { padding: 80px 0; text-align: center; }
.cta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.02em; margin-bottom: 8px; }
.cta .cta-sub { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 28px; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); letter-spacing: -0.02em; margin-bottom: 12px; }
.contact-info > p { font-size: 0.95rem; color: var(--warm); margin-bottom: 28px; line-height: 1.7; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 0.9rem; }
.contact-line svg { width: 18px; height: 18px; color: var(--warm); flex-shrink: 0; }
.contact-socials { display: flex; gap: 8px; margin-top: 24px; }

.contact-form-box {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--border);
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 4px; color: var(--stone); }
.form-group input, .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; color: var(--ink); background: var(--cream);
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.88rem; }
.form-msg.success { background: var(--green-soft); color: #166534; }
.form-msg.error { background: var(--red-soft); color: var(--red); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer { padding: 48px 0 28px; background: var(--sand); }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 36px; margin-bottom: 32px;
}
.footer-brand .footer-logo { height: 46px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.82rem; color: var(--warm); max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 0.84rem; color: var(--warm); margin-bottom: 6px; }
.footer-col a:hover { color: var(--ink); }

.nl-form { display: flex; flex-direction: column; gap: 6px; }
.nl-form input[type="text"],
.nl-form input[type="email"] {
    width: 100%; padding: 8px 12px; border: 1.5px solid var(--border); border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif; font-size: 0.84rem; background: var(--white);
}
.nl-form input[type="text"]:focus,
.nl-form input[type="email"]:focus { outline: none; border-color: var(--accent); }
.nl-form button {
    padding: 8px 14px; border-radius: var(--radius); background: var(--ink); color: var(--white);
    border: none; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500;
    cursor: pointer; white-space: nowrap; width: 100%;
}
.nl-form button:hover { background: #292524; }
.nl-consent { display: flex; align-items: flex-start; gap: 6px; width: 100%; font-size: 0.75rem; color: var(--warm); line-height: 1.4; cursor: pointer; margin: 4px 0 2px; }
.nl-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.nl-consent a { color: var(--accent); text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 16px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--warm); }
.footer-bottom a { font-size: 0.78rem; color: var(--warm); margin-left: 16px; }
.footer-bottom a:hover { color: var(--ink); }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--white); border-top: 1px solid var(--border);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.06); padding: 20px 24px;
    display: none;
}
.cookie-banner.show { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h4 { font-size: 0.9rem; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.cookie-text p { font-size: 0.82rem; color: var(--warm); margin: 0; }
.cookie-text a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn {
    padding: 8px 20px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: 0.2s;
    border: 1.5px solid var(--border); background: var(--white); color: var(--ink);
}
.cookie-btn:hover { border-color: var(--ink); }
.cookie-btn.accept { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cookie-btn.accept:hover { background: #292524; }

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.show { display: flex; }
.modal-box {
    background: var(--white); border-radius: var(--radius-lg);
    max-width: 680px; width: 100%; max-height: 85vh;
    display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
    animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 1.05rem; font-family: 'DM Sans', sans-serif; }
.modal-close {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: var(--sand); cursor: pointer; font-size: 1.1rem; color: var(--warm);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.modal-close:hover { background: var(--border); color: var(--ink); }
.modal-body {
    padding: 20px 24px; overflow-y: auto;
    font-size: 0.88rem; color: var(--warm); line-height: 1.7;
}
.modal-body h2 { font-size: 1.05rem; color: var(--ink); margin: 20px 0 6px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.modal-body h3 { font-size: 0.95rem; color: var(--ink); margin: 16px 0 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.modal-body h4 { font-size: 0.9rem; color: var(--ink); margin: 14px 0 4px; }
.modal-body p { margin-bottom: 8px; }
.modal-body ul { padding-left: 20px; margin-bottom: 8px; }
.modal-body ul li { margin-bottom: 4px; }

/* ==========================================================================
   GUIDE MODAL
   ========================================================================== */

.guide-modal { max-width: 440px; }
.guide-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 28px 28px 0;
}
.guide-header h3 { font-size: 1.2rem; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink); line-height: 1.3; }
.guide-body { padding: 12px 28px 28px; }
.guide-body > p { font-size: 0.88rem; color: var(--warm); line-height: 1.6; margin-bottom: 20px; }
.guide-form .form-group { margin-bottom: 14px; }
.guide-form .form-group label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 4px; color: var(--stone); }
.guide-form .form-group input {
    width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; color: var(--ink); background: var(--cream);
    transition: border-color 0.2s;
}
.guide-form .form-group input:focus { outline: none; border-color: var(--accent); background: var(--white); }
.guide-consent {
    display: flex; align-items: flex-start; gap: 6px; margin-bottom: 16px;
    font-size: 0.75rem; color: var(--warm); line-height: 1.4; cursor: pointer;
}
.guide-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.guide-consent a { color: var(--accent); text-decoration: underline; }
.guide-msg {
    padding: 10px 14px; border-radius: var(--radius); margin-bottom: 14px;
    font-size: 0.84rem; display: none;
}
.guide-msg.success { background: var(--green-soft); color: #166534; display: block; }
.guide-msg.error { background: var(--red-soft); color: var(--red); display: block; }
.guide-submit {
    width: 100%; justify-content: center;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.9rem;
    border: none; cursor: pointer; transition: all 0.2s;
    background: var(--ink); color: var(--white);
}
.guide-submit:hover { background: #292524; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.guide-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ==========================================================================
   WA FLOAT
   ========================================================================== */

.wa-float {
    position: fixed; bottom: 54px; right: 24px; z-index: 99;
    width: 56px; height: 56px; background: var(--green-wa); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.4); color: #fff; }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   COMING SOON CARDS
   ========================================================================== */

.svc-coming-soon { position: relative; pointer-events: none; cursor: default; }
.svc-coming-soon > h3,
.svc-coming-soon > p,
.svc-coming-soon > .rate-price { opacity: 0.4; filter: blur(1px); }
.svc-coming-soon::after {
    content: 'Coming Soon'; position: absolute; top: 12px; right: 12px;
    background: #1e293b; color: #fff; font-size: 0.72rem; font-weight: 600;
    font-family: 'DM Sans', sans-serif; padding: 4px 10px; border-radius: 20px;
    letter-spacing: 0.02em; z-index: 10;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; max-width: 360px; }
    .services-cards { grid-template-columns: 1fr 1fr; }
    .steps-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .rates-grid { grid-template-columns: 1fr 1fr !important; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photos-col { align-items: center; }
    .about-photos { max-width: 320px; overflow: visible; }
    .about-photos picture:last-of-type { left: -20px; bottom: -20px; width: 50%; }
    .testimonials-grid .testimonial { min-width: 300px; }
    .rates-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 600px) {
    .nav-toggle { display: block; }
    .nav-guide-mobile { display: inline-flex; }
    .nav-links {
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: var(--cream); flex-direction: column; padding: 20px 24px;
        border-bottom: 1px solid var(--border); gap: 14px; box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links .nav-guide { align-self: flex-start; }
    .nav-links .logo-phone { display: none; }
    .hero { padding: 48px 0 64px; text-align: center; }
    .hero-slim { padding: 40px 0 48px; }
    .hero-visual { margin: 0 auto; }
    .hero-body { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-card-inner { text-align: center; }
    .hero-tags { justify-content: center; }
    .steps-list { grid-template-columns: 1fr; }
    .services-cards { grid-template-columns: 1fr; }
    .rates-grid { grid-template-columns: 1fr !important; }
    .costs-list { flex-direction: column; }
    section { padding: 64px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .about-photos { max-width: 280px; }
    .about-photos picture:last-of-type { left: -15px; bottom: -15px; width: 45%; }
    .about-photos picture:first-child .about-photo { transform: rotate(-1.5deg); }
    .about-photos picture:last-of-type .about-photo { transform: rotate(2deg); }
    .testimonials-grid .testimonial { min-width: 280px; }
}