/* ── HERO SECTION ────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: var(--color-white);
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: var(--color-burgundy);
}

.hero-video-bg video,
.hero-video-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(74, 14, 23, 0.2) 0%,
        rgba(74, 14, 23, 0.4) 50%,
        rgba(74, 14, 23, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1s ease 2.0s forwards;
}

.hero-cta-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1s ease 2.2s forwards;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fade-in 1s ease 2.4s forwards;
}

.hero-scroll-text {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-chevron {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    animation: scroll-pulse 2.2s infinite;
}

@keyframes scroll-pulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    to { opacity: 1; }
}


/* ── PAGE 2: BRAND STATEMENT + GALLERY TABS ──────────────────────── */
.tabs-gallery-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Central horizontal tab bar */
.gallery-tab-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: var(--color-burgundy);
    padding: 20px 0;
    margin-bottom: 80px;
    list-style: none;
}

.gallery-tab-item {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.gallery-tab-item:hover,
.gallery-tab-item.active {
    color: var(--color-white);
}

.gallery-tab-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-cream);
    transition: width 0.3s ease;
}

.gallery-tab-item.active::after {
    width: 100%;
}

/* Two-column layout */
.brand-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
}

/* Left Quote Block */
.brand-quote-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quote-heading-container {
    position: relative;
    margin-bottom: 28px;
    width: 100%;
}

.quote-heading-container::before,
.quote-heading-container::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(74, 14, 23, 0.15);
    margin: 12px 0;
}

.brand-quote-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--color-burgundy);
    line-height: 1.25;
}

.brand-quote-body {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 36px;
}

.brand-quote-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.brand-quote-ctas .btn-outline {
    width: fit-content;
}

/* Thumbnail nav strip */
.brand-thumbnail-strip {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-thumb {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.brand-thumb.active {
    border-color: var(--color-burgundy);
    transform: scale(1.08);
}

.brand-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-thumb-plus {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px dashed var(--color-muted-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted-gold);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-thumb-plus:hover {
    border-color: var(--color-burgundy);
    color: var(--color-burgundy);
}

/* Right Changing Photo Gallery */
.gallery-display-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--color-cream);
    padding: 40px;
    border-radius: 40px;
}

.gallery-display-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-photo-frame {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Overlapping configuration */
.gallery-photo-frame.primary {
    top: 0;
    left: 0;
    width: 80%;
    height: 85%;
    border-radius: 40px;
    z-index: 2;
}

.gallery-photo-frame.secondary {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 60%;
    border-radius: 40px;
    border: 10px solid var(--color-cream);
    z-index: 3;
}

.gallery-photo-frame.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ── PAGE 3: EDITORIAL BLOG FLOATERS ─────────────────────────────── */
.blog-floaters-section {
    background: var(--color-white);
    overflow: hidden;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.floaters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* Floating overlay cards */
.floater-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Alternating height offsets to create float effect */
.floater-card:nth-child(2) {
    transform: translateY(48px);
}
.floater-card:nth-child(2):hover {
    transform: translateY(48px) scale(1.03);
}

.floater-card:nth-child(3) {
    transform: translateY(-24px);
}
.floater-card:nth-child(3):hover {
    transform: translateY(-24px) scale(1.03);
}

.floater-card:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 50px rgba(0,0,0,0.12);
}

.floater-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.floater-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 14, 23, 0.9) 0%, rgba(74, 14, 23, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    color: var(--color-white);
    transition: background-color 0.4s ease;
}

.floater-card:hover .floater-overlay {
    background-color: rgba(74, 14, 23, 0.35);
}

.floater-location {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-light-blush);
}

.floater-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floater-headline {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 300;
}

.floater-headline em {
    font-family: var(--font-secondary);
    font-style: italic;
}

.floater-desc {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.floater-card:hover .floater-desc {
    opacity: 1;
    height: auto;
    margin-top: 4px;
}


/* ── TESTIMONIAL TICKER ─────────────────────────────────────────── */
.testimonials-section {
    background: var(--color-cream);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
    gap: 40px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

.testimonial-card {
    background: transparent;
    width: 420px;
    padding: 40px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-primary);
    font-size: 6rem;
    color: rgba(176, 159, 152, 0.18);
    line-height: 0;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-meta {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--color-muted-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}


/* ── PAGE 4: SERVICES ────────────────────────────────────────────── */
.services-section {
    background: var(--color-dark-burgundy);
    color: var(--color-white);
}

.services-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
}

/* Left Panel Rows */
.services-menu-list {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.service-menu-item {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.service-menu-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-menu-item.active::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-ui);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--color-muted-gold);
    margin-right: 32px;
}

.service-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.service-menu-item:hover .service-title,
.service-menu-item.active .service-title {
    color: var(--color-white);
}

/* Right Content Panel */
.services-display-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 56px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.5s ease;
}

.service-display-label {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--color-muted-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.service-display-headline {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.service-display-headline em {
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--color-gold);
}

.service-display-text {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: 40px;
}

.service-display-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-display-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ── PAGE 5: LEAD GENERATION FORM ────────────────────────────────── */
.lead-generation-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 700px;
}

/* Left Panel (Navy) */
.lead-left-panel {
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lead-headline-wrap {
    margin-bottom: 56px;
}

.lead-intro-label {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--color-light-blush);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.lead-heading {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.lead-heading em {
    font-family: var(--font-secondary);
    font-style: italic;
    color: var(--color-light-blush);
}

.lead-subtext {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Vertical selector rows */
.lead-category-selector {
    display: flex;
    flex-direction: column;
    list-style: none;
}

.lead-category-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.lead-category-row::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-light-blush);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lead-category-row.active::before {
    opacity: 1;
}

.lead-category-row:hover,
.lead-category-row.active {
    color: var(--color-white);
}

.lead-category-arrow {
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.lead-category-row.active .lead-category-arrow {
    transform: translateX(0);
    opacity: 1;
}

/* Right Panel (Cream) */
.lead-right-panel {
    background: var(--color-cream);
    padding: 88px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-label {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-muted-gold);
    font-weight: 400;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(176, 159, 152, 0.4);
    background: transparent;
    padding: 10px 0;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-burgundy);
    outline: none;
    transition: border-bottom-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: var(--color-burgundy);
}

.form-input::placeholder {
    color: rgba(176, 159, 152, 0.7);
    font-weight: 300;
}

.form-textarea {
    resize: none;
    height: 90px;
}

/* Form Action Buttons */
.form-submit-row {
    margin-top: 12px;
}

.form-submit-btn {
    width: 100%;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--color-burgundy);
    color: var(--color-white);
    border: none;
    padding: 18px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--color-muted-gold);
}

/* Contact Links below button */
.form-contact-footer {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-top: 36px;
    list-style: none;
}

.form-contact-link {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-burgundy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-contact-link:hover {
    color: var(--color-muted-gold);
}


/* ── PERSISTENT CTA ELEMENTS ─────────────────────────────────────── */
.persistent-cta-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-cta-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* Custom icon designs */
.floating-cta-btn.whatsapp {
    background: #25D366; /* WhatsApp green */
    color: var(--color-white);
}

.floating-cta-btn.phone {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.floating-cta-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Floating Tooltips */
.floating-tooltip {
    position: absolute;
    right: 68px;
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: 8px 16px;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-burgundy);
}

.floating-cta-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateX(0);
}


/* ── RESPONSIVE STYLING ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .brand-gallery-grid {
        gap: 48px;
    }
    .floaters-container {
        gap: 24px;
    }
    .services-layout-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .brand-gallery-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .gallery-display-wrapper {
        border-radius: 20px;
        padding: 24px;
    }
    .gallery-photo-frame.primary {
        border-radius: 20px;
    }
    .gallery-photo-frame.secondary {
        border-radius: 20px;
        border-width: 6px;
    }
    
    .floaters-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .floater-card:nth-child(2),
    .floater-card:nth-child(3) {
        transform: translateY(0);
    }
    .floater-card:nth-child(2):hover,
    .floater-card:nth-child(3):hover {
        transform: scale(1.03);
    }
    
    .services-layout-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .services-display-panel {
        padding: 32px;
        min-height: auto;
    }
    
    .lead-generation-section {
        grid-template-columns: 1fr;
    }
    .lead-left-panel,
    .lead-right-panel {
        padding: 64px 28px;
    }
    
    .gallery-tab-bar {
        gap: 20px;
        flex-wrap: wrap;
        padding: 16px 20px;
    }
}

/* ── HERO PREMIUM DYNAMIC GRADIENT ──────────────────────────────── */
.hero-premium-gradient {
    background: linear-gradient(135deg, #1C0509 0%, #3D0D17 35%, #2A060C 65%, #1C0509 100%);
    background-size: 200% 200%;
    animation: luxuryGradient 18s ease infinite;
}

@keyframes luxuryGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── TEASER SERVICE CARDS (COLOR FLIP INTERACTION) ───────────────── */
.teaser-service-card {
    background: var(--color-white);
    border: 1px solid rgba(184, 150, 46, 0.25);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(26, 16, 8, 0.02);
}

.teaser-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-burgundy);
    z-index: -1;
    transform: translateY(101%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 24px 50px rgba(61, 13, 23, 0.12);
}

.teaser-service-card:hover::before {
    transform: translateY(0);
}

.teaser-service-card * {
    transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                stroke 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.teaser-service-card:hover h3 {
    color: var(--color-gold) !important;
}

.teaser-service-card:hover p {
    color: rgba(249, 245, 238, 0.75) !important;
}

.teaser-service-card:hover .service-icon {
    color: var(--color-gold) !important;
    transform: scale(1.12);
}

.teaser-service-card .service-icon {
    color: var(--color-muted-gold);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
}

/* ── TYPOGRAPHY & GLOBAL CLASSES FOR HOME ────────────────── */
.section-heading {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--color-burgundy);
    line-height: 1.3;
    margin-bottom: 24px;
}
.center-align {
    text-align: center;
}

/* ── HERO TYPOGRAPHY ────────────────────────────────────────────── */
.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-subline {
    font-family: var(--font-ui);
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-cta-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-muted-gold), transparent);
    animation: scroll-line-pulse 2.2s infinite;
}

@keyframes scroll-line-pulse {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Watermark adjustments */
.hero-watermark {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    pointer-events: none;
}
.hero-watermark img {
    height: 90%;
    width: auto;
}

/* ── SECTION 2: PHILOSOPHY STRIP (DARK BAND) ─────────────────────── */
.philosophy-strip {
    background: var(--color-burgundy);
    padding: 80px 0;
    border-bottom: 1px solid rgba(184, 150, 46, 0.15);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.philosophy-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    position: relative;
}

.philosophy-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(184, 150, 46, 0.15);
}

.philosophy-icon {
    color: var(--color-muted-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon svg {
    stroke: var(--color-muted-gold);
    stroke-width: 1.25px;
}

.philosophy-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 14px;
}

.philosophy-text {
    font-family: var(--font-ui);
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(249, 245, 238, 0.7);
    line-height: 1.7;
}

/* Responsive Philosophy Strip */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .philosophy-col {
        border-right: none;
        padding-bottom: 24px;
    }
    .philosophy-col:not(:last-child)::after {
        display: none;
    }
    .philosophy-col:not(:last-child) {
        border-bottom: 1px solid rgba(184, 150, 46, 0.15);
    }
}

/* ── SECTION 3: ABOUT THE FIRM (SPLIT SECTION) ───────────────────── */
.about-section {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-content .body-text {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 24px;
}

.learn-more-link {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: letter-spacing 0.3s ease;
    margin-top: 12px;
}

.learn-more-link:hover {
    letter-spacing: 4px;
    color: var(--color-burgundy);
}

/* Editorial quote box in split layout */
.editorial-quote-box {
    background: var(--color-burgundy);
    border: 1px solid var(--color-muted-gold);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.editorial-quote-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
}

.monogram-accent {
    width: 64px;
    height: auto;
    margin-bottom: 28px;
    opacity: 0.7;
    transition: transform 0.6s ease;
}

.editorial-quote-box:hover .monogram-accent {
    transform: rotate(15deg) scale(1.05);
}

.editorial-quote-text {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--color-cream);
    margin-bottom: 24px;
}

.editorial-quote-attribution {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ── SECTION 4: SERVICES TEASER (3-CARD GRID) ────────────────────── */
.services-teaser {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 56px 0;
}

/* See All Services CTA alignment */
.services-teaser .btn-outline {
    margin-top: 16px;
}

/* ── SECTION 5: SECTOR STRIP ─────────────────────────────────────── */
.sector-strip {
    background: var(--color-burgundy);
    padding: 40px 0;
    border-top: 1px solid rgba(184, 150, 46, 0.15);
    border-bottom: 1px solid rgba(184, 150, 46, 0.15);
}

.sector-labels-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.sector-label-item {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-cream);
    opacity: 0.85;
    padding: 8px 0;
    position: relative;
    transition: opacity 0.3s ease;
}

.sector-label-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0%;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.sector-label-item:hover {
    opacity: 1;
    color: var(--color-white);
}

.sector-label-item:hover::after {
    width: 80%;
}

.sector-divider {
    width: 1px;
    height: 24px;
    background: rgba(184, 150, 46, 0.25);
}

@media (max-width: 768px) {
    .sector-labels-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 24px;
    }
    .sector-divider {
        display: none;
    }
    .sector-label-item {
        font-size: 1.15rem;
    }
}

/* ── SECTION 6: FOUNDER QUOTE (FULL WIDTH) ───────────────────────── */
.founder-quote-section {
    background: var(--color-burgundy);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founder-quote-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
}

.quote-mark {
    font-family: var(--font-primary);
    font-size: 12rem;
    line-height: 0;
    color: var(--color-gold);
    opacity: 0.08;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-user-select: none;
    user-select: none;
}

.quote-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-family: var(--font-primary);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    color: var(--color-cream);
    line-height: 1.7;
    margin-bottom: 36px;
    letter-spacing: 0.01em;
}

.founder-name {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.founder-role {
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ── SECTION 7: COLLABORATION CTA (IVORY) ────────────────────────── */
.cta-section {
    background: var(--color-cream);
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid rgba(184, 150, 46, 0.15);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-desc {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-body);
    margin-bottom: 40px;
    opacity: 0.85;
}
