/* ================================================
   Sven Martens Photography — Main Stylesheet
   Hybrid dark/light design with gold accents
   BEM naming convention
   ================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Dark sections */
    --color-dark: #0a0a0f;
    --color-dark-elevated: #12121a;
    --color-dark-card: #1a1a24;
    --color-dark-border: #2a2a35;

    /* Light sections */
    --color-light: #f8f8fa;
    --color-light-card: #ffffff;
    --color-light-border: #e0e0e5;

    /* Gold accent */
    --color-gold: #c8a84e;
    --color-gold-hover: #dfc06a;
    --color-gold-glow: rgba(200, 168, 78, 0.15);
    --color-gold-dark: #a68a3a;

    /* Text on dark */
    --color-text-dark: #e8e8ed;
    --color-text-dark-secondary: #9898a0;
    --color-text-dark-muted: #5c5c66;

    /* Text on light */
    --color-text-light: #1a1a2e;
    --color-text-light-secondary: #4a4a5a;
    --color-text-light-muted: #7a7a8a;

    /* Functional */
    --color-success: #2ecc71;
    --color-error: #e74c3c;

    /* Layout */
    --container-max: 1140px;
    --nav-height: 72px;
    --section-padding: clamp(4rem, 8vw, 7rem);
    --gap: clamp(1rem, 3vw, 2rem);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-light);
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageIn 0.35s ease-out;
}

@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* --- Skip Link (a11y) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 200;
    font-weight: 600;
}

.skip-link:focus {
    top: 0.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    max-width: 70ch;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header__title {
    margin-bottom: 1rem;
}

.section-header__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 65ch;
    margin: 0 auto;
    line-height: 1.7;
}

/* Dark section text */
.section--dark .section-header__title {
    color: var(--color-text-dark);
}

.section--dark .section-header__subtitle {
    color: var(--color-text-dark-secondary);
}

/* Light section text */
.section--light .section-header__title {
    color: var(--color-text-light);
}

.section--light .section-header__subtitle {
    color: var(--color-text-light-secondary);
}

/* --- Sections --- */
.section {
    padding: var(--section-padding) 0;
}

.section--dark {
    background: var(--color-dark);
    color: var(--color-text-dark);
}

.section--dark-elevated {
    background: var(--color-dark-elevated);
    color: var(--color-text-dark);
}

.section--light {
    background: var(--color-light);
    color: var(--color-text-light);
}

.section--light-alt {
    background: #f0f0f4;
    color: var(--color-text-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--color-gold-glow);
}

.btn--gold:active {
    transform: translateY(0) scale(0.98);
}

.btn--outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn--outline:hover {
    background: var(--color-gold-glow);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-text-light);
    border-color: var(--color-light-border);
}

.btn--outline-light:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn--full {
    width: 100%;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    transition: all var(--transition-base);
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav--scrolled {
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--color-dark-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.nav__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

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

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    color: var(--color-text-dark-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-text-dark);
}

.nav__link--cta {
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background: var(--color-gold-hover);
    color: var(--color-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 101;
    background: none;
    border: none;
    padding: 0;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav__toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle--open span:nth-child(2) {
    opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem clamp(1.25rem, 4vw, 2rem);
}

.hero__title {
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.hero__subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--color-text-dark-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dark-muted);
    font-size: 0.75rem;
    animation: pulse-down 2s ease-in-out infinite;
}

@keyframes pulse-down {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* Sub-hero (inner pages) */
.hero--sub {
    min-height: 50vh;
}

/* --- Icon Box (styled emoji/icon container) --- */
.icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-box--gold {
    background: var(--color-gold-glow);
    border: 1px solid rgba(200, 168, 78, 0.25);
}

.icon-box--dark {
    background: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
}

.icon-box--light {
    background: var(--color-light);
    border: 1px solid var(--color-light-border);
}

/* --- Cards --- */
.card {
    border-radius: 10px;
    padding: 2rem;
    transition: all var(--transition-base);
}

.card--light {
    background: var(--color-light-card);
    border: 1px solid var(--color-light-border);
}

.card--light:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card--dark {
    background: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
}

.card--dark:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card__icon {
    margin-bottom: 1.25rem;
}

.card__title {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.card__text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.section--light .card__text {
    color: var(--color-text-light-secondary);
}

.section--dark .card__text {
    color: var(--color-text-dark-secondary);
}

/* --- Grid Layouts --- */
.grid {
    display: grid;
    gap: var(--gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

/* --- Counter / Stats --- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.95rem;
    color: var(--color-text-dark-secondary);
}

/* --- Process Timeline --- */
.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--color-light-border);
}

.timeline__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline__number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-dark);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.timeline__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline__desc {
    font-size: 0.85rem;
    color: var(--color-text-light-secondary);
    line-height: 1.5;
}

/* --- Pricing Card --- */
.pricing-card {
    background: var(--color-light-card);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 8px 40px var(--color-gold-glow);
}

.pricing-card__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.pricing-card__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card__unit {
    font-size: 1rem;
    color: var(--color-text-light-secondary);
    margin-bottom: 2rem;
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-light-border);
    font-size: 0.95rem;
}

.pricing-card__feature:last-child {
    border-bottom: none;
}

.pricing-card__check {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card__note {
    font-size: 0.8rem;
    color: var(--color-text-light-muted);
    margin-top: 1rem;
}

/* --- Add-Ons Table --- */
.addon-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.addon-table th,
.addon-table td {
    text-align: left;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-light-border);
}

.addon-table th {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light-muted);
}

.addon-table td {
    font-size: 0.95rem;
}

.addon-table__price {
    font-weight: 600;
    color: var(--color-gold-dark);
    white-space: nowrap;
}

/* --- Cost Comparison --- */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison__col {
    border-radius: 10px;
    padding: 2rem;
}

.comparison__col--intern {
    background: #fff0f0;
    border: 1px solid #f0d0d0;
}

.comparison__col--smp {
    background: var(--color-gold-glow);
    border: 2px solid var(--color-gold);
}

.comparison__title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison__item {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--color-text-light-secondary);
}

.comparison__highlight {
    font-weight: 600;
    color: var(--color-text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid currentColor;
    opacity: 0.3;
}

.comparison__col--smp .comparison__highlight {
    color: var(--color-gold-dark);
    border-color: var(--color-gold);
}

/* --- Team Cards --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--color-light-card);
    border: 1px solid var(--color-light-border);
    transition: all var(--transition-base);
}

.team-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.team-card__photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--color-light);
    border: 3px solid var(--color-gold-glow);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-text-light-muted);
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light-secondary);
    line-height: 1.6;
}

/* --- Problem Grid --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.problem-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    background: var(--color-light-card);
    border: 1px solid var(--color-light-border);
    transition: all var(--transition-base);
}

.problem-card:hover {
    border-color: var(--color-gold);
}

.problem-card__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    border-radius: 8px;
}

.problem-card__title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.problem-card__desc {
    font-size: 0.85rem;
    color: var(--color-text-light-secondary);
    line-height: 1.5;
}

/* --- Contact Form --- */
.contact-form {
    max-width: 640px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group__required {
    color: var(--color-gold);
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-light-border);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--color-light-card);
    color: var(--color-text-light);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-top: 1rem;
    display: none;
}

.form-message--success {
    background: #e8f8f0;
    color: #1a7a4a;
    border: 1px solid #b8e8d0;
    display: block;
}

.form-message--error {
    background: #fdf0f0;
    color: #c0392b;
    border: 1px solid #f0c0c0;
    display: block;
}

/* --- Contact Info (CSS obfuscation) --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--color-gold-glow);
    border: 1px solid rgba(200, 168, 78, 0.2);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Anti-spam: reversed text direction */
.contact-info__obfuscated {
    unicode-bidi: bidi-override;
    direction: rtl;
    user-select: none;
}

/* --- Region Map Placeholder --- */
.region-map {
    background: var(--color-light-card);
    border: 1px solid var(--color-light-border);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-text-light-muted);
}

.region-map__placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* --- Quick Info --- */
.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-info__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-light-card);
    border: 1px solid var(--color-light-border);
    border-radius: 8px;
    font-size: 0.95rem;
}

.quick-info__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* --- Philosophy Pillars --- */
.pillar {
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
}

.pillar--light {
    background: var(--color-light-card);
}

.pillar__title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.pillar__text {
    font-size: 0.95rem;
    color: var(--color-text-light-secondary);
    line-height: 1.7;
}

/* --- Vision Block (dark + gold) --- */
.vision-block {
    background: var(--color-dark);
    border-radius: 12px;
    padding: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    border: 1px solid var(--color-dark-border);
}

.vision-block__title {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.vision-block__text {
    color: var(--color-text-dark-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Story Section (About page) --- */
.story {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.story__photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 12px;
    background: var(--color-light);
    border: 1px solid var(--color-light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-text-light-muted);
    overflow: hidden;
}

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

.story__text h2 {
    margin-bottom: 1.5rem;
}

.story__text p {
    color: var(--color-text-light-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.cta-section__title {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.cta-section__text {
    color: var(--color-text-dark-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    border-top: 1px solid var(--color-dark-border);
    padding: 3rem 0 1.5rem;
    color: var(--color-text-dark-secondary);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer__brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.footer__link {
    font-size: 0.9rem;
    color: var(--color-text-dark-secondary);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-gold);
}

.footer__bottom {
    border-top: 1px solid var(--color-dark-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-dark-muted);
}

.footer__legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-link {
    color: var(--color-text-dark-muted);
    transition: color var(--transition-fast);
}

.footer__legal-link:hover {
    color: var(--color-text-dark-secondary);
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }

/* --- Placeholder Image --- */
.placeholder-img {
    background: linear-gradient(135deg, #e0e0e5 0%, #d0d0d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light-muted);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-img--dark {
    background: linear-gradient(135deg, var(--color-dark-card) 0%, var(--color-dark-elevated) 100%);
    color: var(--color-text-dark-muted);
}

.placeholder-img--hero {
    position: absolute;
    inset: 0;
    border-radius: 0;
    opacity: 0.3;
    font-size: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--5 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(3, 1fr); }
    .timeline::before { display: none; }
    .timeline__step:nth-child(n+4) { margin-top: 1rem; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .comparison { grid-template-columns: 1fr; }
    .story { grid-template-columns: 1fr; }
    .story__photo { max-width: 400px; margin: 0 auto; }
    .problem-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    :root {
        --section-padding: clamp(3rem, 6vw, 5rem);
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--nav-height) + 1.5rem) 1.5rem 2rem;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        border-left: 1px solid var(--color-dark-border);
        z-index: 99;
        gap: 0;
    }

    .nav__links--open {
        transform: translateX(0);
    }

    .nav__link {
        width: 100%;
        padding: 0.875rem 0.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-dark-border);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: 85vh;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .grid--2 { grid-template-columns: 1fr; }
    .grid--3 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: 1fr; }
    .grid--5 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .timeline { grid-template-columns: 1fr 1fr; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__scroll-indicator {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --- Focus States (a11y) --- */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline-offset: 4px;
}

/* --- Multi-Location Section --- */
.multi-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.multi-location__text {
    color: var(--color-text-dark-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.multi-location__text p {
    margin-bottom: 1rem;
}

.multi-location__stat {
    text-align: center;
}

@media (max-width: 640px) {
    .multi-location {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- Contact Page Layout --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* --- Why No Discounts --- */
.fairness-block {
    background: var(--color-light-card);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 10px 10px 0;
    padding: 2rem 2.5rem;
    max-width: 700px;
}

.fairness-block p {
    color: var(--color-text-light-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.fairness-block p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--color-text-light);
}

/* --- Mobile Menu Overlay --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}
