/* KeysCast.com Style System */

:root {
    --bg-dark: #0D1B2A;         /* deep-water navy base bg */
    --bg-card: #080F16;         /* abyss dark surface */
    --bg-card-hover: #102235;   /* slightly lighter for hover */
    --accent-gold: #B8894A;     /* amber teak gold */
    --accent-gold-hover: #8C6535; /* amber dim */
    --accent-teal: #7EADA8;     /* seaglass secondary accent */
    --accent-teal-hover: #5A8480;
    --text-light: #EDE8DE;      /* aged linen primary text */
    --text-muted: #6E7A80;      /* muted seagrey */
    --text-dark: #0D1B2A;
    --warm-white: #F5F1E8;      /* light linen background */
    --border-color: rgba(184, 137, 74, 0.15);
    --border-color-heavy: rgba(184, 137, 74, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    --shadow-subtle: 0 4px 30px rgba(0, 0, 0, 0.5);
    --glow-gold: 0 0 20px rgba(184, 137, 74, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body, p, .about-text, .split-copy p, .service-card p, .footer-brand-text, .footer-newsletter-text, .addon-desc, .checkbox-container span, .form-control {
    font-size: 17px;
}

/* 2. Common Elements & Typography */
h1, h2, h3, h4, .serif-font {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.03em;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color-heavy);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Glassmorphism & Utilities */
.glass-panel {
    background: rgba(18, 18, 22, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color-heavy);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Header / Navigation styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
    background: linear-gradient(to bottom, rgba(8, 15, 22, 0.95) 0%, rgba(8, 15, 22, 0.5) 60%, transparent 100%);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.logo svg,
.logo img {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo:hover svg,
.logo:hover img {
    transform: rotate(-10deg) scale(1.05);
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

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

.nav-cta {
    padding: 0.7rem 1.6rem !important;
    font-size: 0.8rem;
    color: var(--bg-dark) !important;
    transition: var(--transition-smooth);
}

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

.nav-cta:hover {
    color: var(--accent-gold) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Page Sub-Header */
.page-hero {
    position: relative;
    padding: 12rem 0 6rem;
    text-align: center;
    background: linear-gradient(180deg, #050507 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 500;
}

/* 3. Hero Section (Home) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
    padding: 0 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.play-reel-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.play-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--text-light);
    color: var(--bg-dark);
    transition: var(--transition-smooth);
}

.btn-secondary:hover .play-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* 4. About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 22, 0.6) 100%);
    position: relative;
}

.about-page-section {
    padding: 6rem 0;
}

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

.about-image-container {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    width: 100%;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(105%);
    transition: var(--transition-smooth);
}

.about-image-container:hover .about-image {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(100%);
}

.about-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border-bottom: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
    pointer-events: none;
    z-index: 1;
}

.about-content {
    z-index: 2;
}

.about-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 2.8rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* 5. Services Section */
.services {
    padding: 8rem 0;
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (min-width: 993px) {
    .services-grid.grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 4rem 3.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-subtle);
    border-color: rgba(197, 168, 128, 0.3);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    margin-bottom: 2rem;
}

.service-icon svg {
    width: 3.2rem;
    height: 3.2rem;
    fill: var(--accent-gold);
}

.service-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.service-features-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

.service-features-list li {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.02);
}

/* 6. Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background-color: rgba(18, 18, 22, 0.4);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.6rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--accent-gold);
    color: var(--text-light);
    background: rgba(197, 168, 128, 0.05);
}

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

.portfolio-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) brightness(85%);
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.1) 0%, rgba(10, 10, 12, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-thumbnail {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(100%);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-subtle), var(--glow-gold);
    border-color: var(--accent-gold);
}

.portfolio-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(197, 168, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
    box-shadow: 0 0 25px rgba(197, 168, 128, 0.5);
}

.portfolio-play-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: var(--bg-dark);
    margin-left: 3px;
}

.portfolio-item:hover .portfolio-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-category {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.portfolio-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.portfolio-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
}

.portfolio-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 7. Pricing Calculator Section */
.pricing {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: stretch;
}

.calculator-card {
    padding: 4rem 3.5rem;
    border: 1px solid var(--border-color);
}

.calculator-group {
    margin-bottom: 3rem;
}

.calculator-group-title {
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.6rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.slider-value {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--accent-gold);
}

/* Slider Styling */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: var(--border-color-heavy);
    outline: none;
    margin: 1.5rem 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid var(--bg-dark);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.4);
}

.range-slider::-webkit-slider-thumb:hover {
    background: var(--accent-gold-hover);
    transform: scale(1.1);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Checkbox Add-ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.addon-item {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addon-item:hover {
    border-color: var(--border-color-heavy);
    background: rgba(255, 255, 255, 0.04);
}

.addon-item.selected {
    border-color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.05);
    box-shadow: var(--glow-gold);
}

.addon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.addon-name {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.addon-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.addon-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.addon-checkbox {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    pointer-events: none;
}

/* Estimate Quote Summary Card */
.quote-card {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--border-color);
    position: relative;
}

.quote-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.quote-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.quote-pricing-display {
    margin: 3.5rem 0;
}

.price-prefix {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.price-value-container {
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-right: 0.2rem;
}

.price-number {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    color: var(--accent-gold);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.price-suffix {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.quote-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.quote-details-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quote-details-list li span:last-child {
    color: var(--text-light);
    font-weight: 500;
}

.calculator-cta {
    width: 100%;
}

/* 8. Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: rgba(18, 18, 22, 0.6);
    overflow: hidden;
    position: relative;
}

.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 380px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-slide.prev-slide {
    transform: translateX(-50px);
    opacity: 0;
}

.quote-mark {
    margin-bottom: 2rem;
}

.quote-mark svg {
    width: 3.5rem;
    height: 3.5rem;
    fill: var(--accent-gold);
    opacity: 0.3;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.4;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    background: var(--bg-card);
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    align-items: center;
    margin-top: 4rem;
}

.slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-btn svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: var(--text-muted);
    transition: var(--transition-fast);
}

.slider-btn:hover svg {
    fill: var(--accent-gold);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color-heavy);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* 9. Contact / Booking Inquiry Form */
.contact {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-title h3 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.contact-info-title p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.contact-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: var(--accent-gold);
}

.contact-details h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.contact-details p {
    font-size: 1.1rem;
    font-family: var(--font-serif);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.social-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: var(--text-muted);
    transition: var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.05);
}

.social-btn:hover svg {
    fill: var(--accent-gold);
}

/* Forms Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.1rem;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border-radius: 0;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--glow-gold);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--bg-card);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8894A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    color: var(--text-light);
}

select.form-control option {
    background-color: var(--bg-card);
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.checkbox-container:hover {
    color: var(--text-light);
}

.checkbox-container:hover .checkmark {
    border-color: var(--border-color-heavy);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container input:checked ~ span {
    color: var(--text-light);
}

.form-cta-container {
    margin-top: 3rem;
}

.submit-btn {
    width: 100%;
}

/* 10. Footer */
footer {
    background-color: #050507;
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-brand-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 1.5rem;
    max-width: 250px;
}

.footer-newsletter-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    border-right: none;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.newsletter-btn {
    background: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    color: var(--bg-dark);
    padding: 0 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsletter-btn:hover {
    background: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* 11. Modals & Success Popups */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    z-index: 201;
    transform: scale(0.95);
    transition: var(--transition-smooth);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.modal.active .modal-content-wrapper {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.modal-close-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.modal-close-btn:hover {
    color: var(--accent-gold);
}

.modal-video-iframe-container {
    width: 100%;
    height: 100%;
}

.modal-video-iframe-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.success-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    padding: 4rem 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 301;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--glow-gold);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.success-modal.active .success-card {
    transform: translateY(0);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    background: rgba(197, 168, 128, 0.05);
}

.success-icon-wrapper svg {
    width: 2.2rem;
    height: 2.2rem;
    fill: var(--accent-gold);
}

.success-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* 12. Animations & Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 13. Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.2rem;
    }
    .about-grid {
        gap: 4rem;
    }
    .about-title {
        font-size: 2.8rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-layout {
        grid-template-columns: 1fr;
    }
    .quote-card {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-top: 4rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .page-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    .container {
        padding: 0 1.5rem;
    }
    .section-header h2 {
        font-size: 2.8rem;
    }
    .menu-toggle {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        z-index: 100;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    nav.active {
        right: 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-desc {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .btn {
        width: 100%;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-image-container {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-content {
        order: 1;
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 3rem 2.5rem;
        min-height: auto;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .addons-grid {
        grid-template-columns: 1fr;
    }
    .calculator-card {
        padding: 2.5rem 1.8rem;
    }
    .quote-card {
        padding: 2.5rem 1.8rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .page-hero-title {
        font-size: 2.8rem;
    }
}

/* ═══ Adapted Layout Styles from test.html ═══ */

/* --- BANNER (full-viewport image) --- */
.banner {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  animation: slowZoom 16s ease-out forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.38) 0%,
    rgba(13,27,42,0.18) 50%,
    rgba(13,27,42,0.72) 100%
  );
}
/* Scroll indicator */
.banner-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  z-index: 2;
  animation: fadeIn 2s 1.5s both;
}
.banner-scroll span {
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: var(--accent-gold);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity:0.5; }
  50%      { transform: scaleY(0.55); opacity:1; }
}

/* --- LOGO BLOCK (below banner, centered) --- */
.logo-block {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 5.5rem;
  position: relative;
  text-align: center;
  z-index: 10;
}
.logo-block::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
  background: var(--accent-gold);
  opacity: 0.4;
}
.logo-block-svg-wrapper {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-block-svg-wrapper svg,
.logo-block-svg-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(184, 137, 74, 0.2));
}
.logo-divider {
  width: 52px;
  height: 1px;
  background: var(--accent-gold);
  margin: 0 auto 1.6rem;
  opacity: 0.6;
}
.logo-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 300;
  color: rgba(237,232,222,0.82);
  letter-spacing: 0.04em;
  max-width: 560px;
  line-height: 1.65;
  margin: 0 auto 2.6rem;
}

/* --- VIDEO SECTION --- */
.video-section {
  background: var(--bg-card);
  position: relative;
  padding: 0;
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #060c14;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #07121c 0%, #0a1e2e 60%, #06121e 100%);
  gap: 1.2rem;
}
.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,137,74,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.play-btn:hover {
  background: rgba(184,137,74,0.12);
  border-color: var(--accent-gold);
}
.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
  margin-left: 4px;
}
.video-placeholder p {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,232,222,0.35);
}

/* --- CTA BAND --- */
.cta-band {
  padding: 7rem 2rem;
  text-align: center;
  background: var(--bg-dark);
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: var(--accent-gold);
  opacity: 0.45;
}
.section-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1.1rem;
  display: block;
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.18;
  margin-bottom: 2.2rem;
  letter-spacing: 0.02em;
}
.btn-amber {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--accent-gold);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s;
  font-weight: 400;
}
.btn-amber:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

/* --- SPLIT --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split-image {
  position: relative;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.split:hover .split-image img { transform: scale(1.04); }
.split-copy {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem;
}
.split-copy .section-heading { margin-bottom: 1.1rem; }
.split-copy p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.025em;
  margin-bottom: 2.4rem;
  font-weight: 300;
  max-width: 380px;
}
.btn-ghost {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border: 1px solid rgba(184,137,74,0.32);
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
  align-self: flex-start;
}
.btn-ghost:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --- SERVICES CTA --- */
.services-cta {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.services-cta::before {
  content: 'KC';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 24rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.015);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.05em;
  line-height: 1;
}
.services-cta .section-eyebrow { color: var(--accent-gold); }
.services-cta .section-heading { color: var(--text-light); }
.btn-dark {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  background: var(--bg-dark);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.3s;
  font-weight: 400;
}
.btn-dark:hover { background: var(--accent-gold-hover); }

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split-image { height: 300px; }
  .split-copy { padding: 3rem 1.8rem; }
}

/* --- SERVICES CTA GRID --- */
.services-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 960px;
    margin: 4rem auto 0;
    text-align: left;
}
.services-cta-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    transition: var(--transition-smooth);
    display: block;
}
.services-cta-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle), var(--glow-gold);
}
.services-cta-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}
.services-cta-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-cta-card:hover .services-cta-image-wrapper img {
    transform: scale(1.05);
}
.services-cta-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    font-weight: 500;
}
.services-cta-card p {
    color: var(--text-muted) !important;
    line-height: 1.6;
    font-weight: 300;
    font-size: 16px !important;
}
@media (max-width: 768px) {
    .services-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- LEGAL PAGES --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}
.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
.legal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.legal-content p {
    margin-bottom: 1.5rem;
}
.legal-content ul, .legal-content ol {
    margin-left: 1.8rem;
    margin-bottom: 1.8rem;
}
.legal-content li {
    margin-bottom: 0.6rem;
}
