/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    --gold:        #b89728;
    --gold-light:  #d4b445;
    --gold-dark:   #8f7216;
    --gold-primary: #b89728;
    --gold-faint:  #f9f4e8;

    --dark:        #0d0d0d;
    --charcoal:    #1c1c1c;
    --white:       #ffffff;
    --off-white:   #f8f7f5;
    --light:       #f2f1ef;
    --border:      #e5e4e0;

    --text-dark:   #111111;
    --text-mid:    #4a4a4a;
    --text-light:  #888888;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
    --shadow-lg:   0 24px 64px rgba(0,0,0,0.13);
    --shadow-gold: 0 8px 32px rgba(184,151,40,0.25);

    --ease:          cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:      cubic-bezier(0.0, 0, 0.2, 1);
    --duration-fast: 0.25s;
    --duration-mid:  0.45s;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-mid);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section-padding {
    padding: clamp(80px, 10vw, 140px) 0;
}

.text-center { text-align: center; }
.relative    { position: relative; }
.mb-4        { margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.mb-5        { margin-bottom: clamp(2rem, 4vw, 3rem); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.08;
    font-weight: 700;
}

.modern-title {
    font-size: clamp(2.1rem, 4.5vw, 4rem);
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.modern-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.gold     { color: var(--gold); }
.gold-text { color: var(--gold); }

.line-accent {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

.line-accent.center-line {
    margin: 0 auto 28px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: all var(--duration-fast) var(--ease);
    white-space: nowrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.88rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-glass {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.55);
    color: #ffffff;
}
.btn-glass:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.80);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-glass-dark {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-dark);
}
.btn-glass-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--duration-mid) var(--ease);
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height var(--duration-fast) var(--ease);
}
.header.scrolled .logo img { height: 46px; }

.nav { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 38px);
}

.nav-list a {
    font-size: 0.76rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--duration-fast) var(--ease);
}
.nav-list a:hover::after,
.nav-list a.active::after { width: 100%; }

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    white-space: nowrap;
}
.header-phone i { color: var(--gold); font-size: 0.7rem; }
.header-phone:hover { color: var(--gold); }

/* Mobile hamburger */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    position: absolute;
    width: 100%;
    height: 1.5px;
    background: var(--text-dark);
    transition: all var(--duration-fast) var(--ease);
    left: 0;
}
.hamburger         { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after  { content: ''; bottom: -8px; }

.mobile-toggle.active .hamburger          { background: transparent; }
.mobile-toggle.active .hamburger::before  { transform: rotate(45deg);  top: 0; }
.mobile-toggle.active .hamburger::after   { transform: rotate(-45deg); top: 0; bottom: auto; }

/* ---- Header: white elements when transparent (over hero) ---- */
.header:not(.scrolled):not(.menu-open) .nav-list a    { color: rgba(255,255,255,0.92); }
.header:not(.scrolled):not(.menu-open) .header-phone  { color: rgba(255,255,255,0.92); }
.header:not(.scrolled):not(.menu-open) .header-phone i { color: var(--gold-light); }
.header:not(.scrolled):not(.menu-open) .hamburger,
.header:not(.scrolled):not(.menu-open) .hamburger::before,
.header:not(.scrolled):not(.menu-open) .hamburger::after { background: var(--white); }

/* ---- Dark header when mobile menu is open ---- */
.header.menu-open {
    background: var(--dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.header.menu-open .logo img {
    filter: brightness(0) invert(1);
}
.header.menu-open .hamburger,
.header.menu-open .hamburger::before,
.header.menu-open .hamburger::after {
    background: var(--white);
}

/* ---- Mobile CTA inside nav (hidden on desktop) ---- */
.nav-mobile-cta { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.30) 0%,
        rgba(10,10,10,0.52) 50%,
        rgba(10,10,10,0.72) 100%
    );
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.07); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 120px clamp(20px, 5vw, 60px) 80px;
}

.glass-panel {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
    max-width: 900px;
    width: 100%;
    border: none;
    box-shadow: none;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-light);
    background: rgba(184,151,40,0.15);
    border: 1px solid rgba(184,151,40,0.35);
    padding: 8px 18px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.8rem);
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.02;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.hero-rating i    { color: var(--gold-light); font-size: 0.9rem; }
.hero-rating span { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-left: 6px; }

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    background: var(--dark);
    padding: 22px 0;
}

.trust-bar-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.82);
    white-space: nowrap;
}
.trust-item .gold-icon {
    color: var(--gold-light);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: -2%;
    left: -2%;
    font-family: var(--font-heading);
    font-size: clamp(10rem, 18vw, 22rem);
    font-weight: 800;
    color: rgba(0,0,0,0.025);
    z-index: 0;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.stats-row {
    display: flex;
    gap: clamp(24px, 4vw, 52px);
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    color: var(--text-light);
}

.image-stack {
    position: relative;
    aspect-ratio: 4/5;
}

.img-back {
    position: absolute;
    top: 0; right: 0;
    width: 88%;
    height: 88%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.glass-card.front-card {
    position: absolute;
    bottom: 0; left: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(22px, 3vw, 40px);
    width: 62%;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.7);
}

.gold-icon {
    color: var(--gold);
    font-size: 1.7rem;
    margin-bottom: 14px;
    display: block;
}

.glass-card h4 {
    font-size: 1.1rem;
    margin-bottom: 7px;
    color: var(--text-dark);
}

.glass-card p { font-size: 0.88rem; color: var(--text-light); }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--off-white); }

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: clamp(44px, 6vw, 80px);
}

.services-intro {
    max-width: 380px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 40px);
}

.service-img-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 22px;
}

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

.service-item:hover .service-img-container img { transform: scale(1.06); }

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease);
}
.service-item:hover .service-overlay { opacity: 1; }

.discover-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(14px);
    transition: all var(--duration-fast) var(--ease);
}
.service-item:hover .discover-btn { transform: translateY(0); }
.discover-btn:hover { background: var(--gold); color: var(--white); }

.service-info {
    position: relative;
    padding-left: 54px;
}

.service-number {
    position: absolute;
    left: 0; top: 4px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
}

.service-info h3 {
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-info p { font-size: 0.93rem; line-height: 1.75; }

/* =============================================
   PROCESS
   ============================================= */
.process { background: var(--white); }

.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 1px; height: 100%;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 34px 50px;
    position: relative;
}

.timeline-item.right { margin-left: 50%; }

.timeline-item::after {
    content: '';
    position: absolute;
    top: 46px;
    right: -7px;
    width: 14px; height: 14px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--border);
}

.timeline-item.right::after { left: -7px; right: auto; }

.timeline-content h3 {
    font-size: clamp(1.3rem, 2.3vw, 1.8rem);
    margin-bottom: 14px;
}

.timeline-content p { font-size: 0.94rem; line-height: 1.8; }
.timeline-content a { color: var(--gold); font-weight: 600; }
.timeline-content a:hover { color: var(--dark); }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--off-white); }

.aggregate-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 10px;
    flex-wrap: wrap;
}
.aggregate-rating i { color: var(--gold); font-size: 0.82rem; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.5vw, 32px);
    margin-top: clamp(40px, 5vw, 64px);
}

.review-card {
    background: var(--white);
    padding: clamp(26px, 3vw, 44px);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-fast) var(--ease),
                box-shadow var(--duration-fast) var(--ease);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 40px;
    background: var(--gold);
    transition: width var(--duration-mid) var(--ease);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.review-card:hover::before { width: 100%; }

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.review-stars i { color: var(--gold); font-size: 0.78rem; }

.review-card blockquote p {
    font-size: 0.97rem;
    line-height: 1.82;
    color: var(--text-mid);
    font-style: italic;
    margin-bottom: 20px;
}

.review-card cite {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-style: normal;
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--white); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(40px, 7vw, 100px);
}

.faq-intro p { font-size: 1.03rem; line-height: 1.8; }

.faq-accordion {
    border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.9vw, 1.38rem);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color var(--duration-fast) var(--ease);
}
.faq-question:hover { color: var(--gold); }

.faq-question i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}
.faq-question.active i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
}

.faq-answer p {
    padding-bottom: 26px;
    padding-right: 44px;
    font-size: 0.95rem;
    line-height: 1.82;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.locations { background: var(--off-white); }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(14px, 2vw, 22px);
    margin-top: clamp(40px, 5vw, 64px);
}

.location-card {
    background: var(--white);
    padding: clamp(22px, 2.5vw, 34px);
    border: 1px solid var(--border);
    transition: all var(--duration-fast) var(--ease);
}

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

.location-card h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    line-height: 1.5;
}

.location-card h3 strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    color: var(--text-dark);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 5px;
}

.location-card p {
    font-size: 0.85rem;
    line-height: 1.68;
    margin: 12px 0 16px;
    color: var(--text-mid);
}

.btn-link {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    transition: color var(--duration-fast) var(--ease);
}
.btn-link:hover { color: var(--dark); }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-info-side { padding-right: 10px; }

.contact-details { margin: 32px 0; }

.detail-item { margin-bottom: 28px; }

.detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.detail-value {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    color: var(--text-dark);
    transition: color var(--duration-fast) var(--ease);
    line-height: 1.3;
    display: block;
}
.detail-value:hover { color: var(--gold); }

.locales-list { margin-top: 38px; }

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tags span {
    padding: 7px 14px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-mid);
    background: var(--off-white);
    transition: all var(--duration-fast) var(--ease);
}
.tags span:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-faint);
    cursor: default;
}

/* Form */
.form-side {
    background: var(--off-white);
    padding: clamp(32px, 5vw, 60px);
    border: 1px solid var(--border);
}

.form-group {
    position: relative;
    margin-bottom: 36px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    -webkit-appearance: none;
    appearance: none;
}

.form-group textarea { resize: none; }
.form-group select { color: var(--text-light); }

.form-group label {
    position: absolute;
    top: 10px; left: 0;
    font-size: 0.88rem;
    color: var(--text-light);
    transition: all 0.28s var(--ease);
    pointer-events: none;
}

.form-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--border);
}

.form-line::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.38s var(--ease);
}

.form-group input:focus ~ .form-line::after,
.form-group textarea:focus ~ .form-line::after,
.form-group select:focus ~ .form-line::after,
.form-group input:not(:placeholder-shown) ~ .form-line::after,
.form-group textarea:not(:placeholder-shown) ~ .form-line::after { width: 100%; }

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -18px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-submit {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 28px;
    margin-top: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.modern-footer {
    background: var(--dark);
    padding: clamp(60px, 8vw, 100px) 0 40px;
    color: rgba(255,255,255,0.5);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo img {
    height: 54px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: all var(--duration-fast) var(--ease);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-nap {
    font-style: normal;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    line-height: 2.2;
}
.footer-nap strong { color: rgba(255,255,255,0.88); }
.footer-nap a:hover { color: var(--gold); }

.footer-services,
.footer-areas {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.38);
    margin-bottom: 12px;
    line-height: 2;
}

.footer-services strong,
.footer-areas strong {
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links { display: flex; gap: 22px; }
.footer-links a { color: rgba(255,255,255,0.35); }
.footer-links a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE — ≤1200px
   ============================================= */
@media (max-width: 1200px) {
    .nav-list { gap: 22px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .flex-header { flex-direction: column; align-items: flex-start; gap: 18px; }
    .services-intro { max-width: 100%; }
}

/* =============================================
   RESPONSIVE — ≤992px
   ============================================= */
@media (max-width: 992px) {
    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 56px);
    }

    .contact-info-side { padding-right: 0; }

    .image-stack {
        aspect-ratio: 3/2;
        max-height: 400px;
    }

    .timeline::before { left: 14px; transform: none; }
    .timeline-item { width: 100%; padding: 26px 0 26px 46px; }
    .timeline-item.right { margin-left: 0; }
    .timeline-item::after { left: 8px !important; right: auto !important; }

    .reviews-grid { grid-template-columns: 1fr; }
    .trust-bar-grid { gap: 20px; }
}

/* =============================================
   RESPONSIVE — ≤768px  (mobile)
   ============================================= */
@media (max-width: 768px) {
    /* Nav */
    .mobile-toggle { display: block; }
    .header-phone  { display: none; }

    /* ── Full-screen dark overlay nav ── */
    .nav {
        position: fixed;
        inset: 0;
        background: var(--dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
        z-index: 999;
        padding: 90px clamp(32px, 8vw, 64px) 56px;
        overflow-y: auto;
    }
    .nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* ── Nav list: left-aligned, numbered, staggered ── */
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        counter-reset: nav-counter;
    }
    .nav-list li {
        counter-increment: nav-counter;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        opacity: 0;
        transform: translateX(28px);
        transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
    }
    .nav.active .nav-list li:nth-child(1) { opacity:1; transform:none; transition-delay:0.06s; }
    .nav.active .nav-list li:nth-child(2) { opacity:1; transform:none; transition-delay:0.13s; }
    .nav.active .nav-list li:nth-child(3) { opacity:1; transform:none; transition-delay:0.20s; }
    .nav.active .nav-list li:nth-child(4) { opacity:1; transform:none; transition-delay:0.27s; }
    .nav.active .nav-list li:nth-child(5) { opacity:1; transform:none; transition-delay:0.34s; }
    .nav.active .nav-list li:nth-child(6) { opacity:1; transform:none; transition-delay:0.41s; }

    .nav-list a {
        display: flex;
        align-items: center;
        gap: 20px;
        font-family: var(--font-heading);
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        font-weight: 700;
        letter-spacing: -0.5px;
        text-transform: none;
        color: rgba(255,255,255,0.72);
        padding: 20px 0;
        width: 100%;
        position: relative;
        transition: color 0.28s ease, padding-left 0.28s var(--ease);
    }
    /* Gold number prefix via counter */
    .nav-list a::before {
        content: "0" counter(nav-counter);
        font-family: var(--font-body);
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: var(--gold);
        opacity: 0.55;
        flex-shrink: 0;
        transition: opacity 0.28s ease;
    }
    /* Kill the desktop underline bar */
    .nav-list a::after { display: none !important; }

    .nav-list a:hover {
        color: var(--white);
        padding-left: 8px;
    }
    .nav-list a:hover::before { opacity: 1; }

    .nav-cta { display: none; }

    /* ── CTA buttons — fade up after items ── */
    .nav-mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 36px;
        padding-top: 36px;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 0.45s ease 0.48s, transform 0.45s ease 0.48s;
    }
    .nav.active .nav-mobile-cta { opacity: 1; transform: none; }
    .nav-mobile-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 17px 24px;
        font-size: 0.82rem;
    }
    .nav-mobile-cta .btn-glass-dark {
        border-color: rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.72);
        background: transparent;
    }
    .nav-mobile-cta .btn-glass-dark:hover {
        border-color: var(--gold);
        color: var(--gold-light);
        background: rgba(184,151,40,0.08);
        transform: none;
    }

    /* Hero */
    .glass-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 340px;
    }

    /* Services */
    .modern-service-grid { grid-template-columns: 1fr; }
    .service-img-container { aspect-ratio: 16/9; }

    /* Process */
    .timeline-content p { font-size: 0.92rem; }

    /* Locations */
    .locations-grid { grid-template-columns: 1fr 1fr; }

    /* Trust bar — horizontal scroll on very small */
    .trust-bar-grid {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 0;
        gap: 28px;
    }
    .trust-bar-grid::-webkit-scrollbar { display: none; }
    .trust-item { font-size: 0.72rem; }

    /* Footer */
    .footer-top    { flex-direction: column; text-align: center; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer-links  { gap: 18px; }
}

/* =============================================
   RESPONSIVE — ≤480px  (small mobile)
   ============================================= */
@media (max-width: 480px) {
    .locations-grid  { grid-template-columns: 1fr; }
    .stats-row       { gap: 20px; }
    .form-side       { padding: 26px 18px; }
    .glass-panel     { padding: 34px 22px; }
    .hero-rating     { font-size: 0.78rem; }
    .footer-nap      { font-size: 0.8rem; }
    .tags span       { font-size: 0.76rem; padding: 6px 11px; }
}
