/* ========================================
   DESIGN TOKENS — GENTLE MONSTER AESTHETIC
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    /* Pure monochrome palette */
    --color-bg-primary: #0F0D0B;
    --color-bg-secondary: #0a0907;
    --color-bg-tertiary: #111111;
    --color-bg-warm: #F5F2ED;
    --color-bg-warm-2: #EDEAE3;
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.45);
    --color-text-dark: #1a1817;
    --color-text-dark-secondary: rgba(26, 24, 23, 0.55);
    --color-accent: #ffffff;
    --color-accent-warm: #c9b48a;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-strong: rgba(255, 255, 255, 0.25);
    --color-border-warm: rgba(26, 24, 23, 0.12);
    --color-border-warm-strong: rgba(26, 24, 23, 0.25);
    --color-white: #ffffff;

    /* Typography — elegant editorial serif + clean sans */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-editorial: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;

    /* Shadows */
    --shadow-soft: none;

    /* Zero border radius — sharp geometry */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-full: 0px;
    --radius-lg: 0px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-warm);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-sm);
}

img {
    max-width: 100%;
    display: block;
    filter: grayscale(8%) contrast(1.05);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:visited {
    color: inherit;
}

ul {
    list-style: none;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons — refined, editorial, text-forward */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0;
    background: transparent;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.4rem;
    border-radius: 0;
    transition: border-color 0.25s ease, color 0.25s ease, opacity 0.2s ease;
    cursor: pointer;
    position: relative;
}

.btn::after {
    content: '\2192';
    font-size: 0.9rem;
    opacity: 0.5;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.8);
    opacity: 0.9;
}

.btn:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

/* CTA buttons on warm/light sections — dark text */
.bg-light .btn,
.alternate-bg .btn,
.detail-content-section .btn {
    color: var(--color-text-dark);
    border-bottom-color: rgba(26, 24, 23, 0.25);
}

.bg-light .btn:hover,
.alternate-bg .btn:hover,
.detail-content-section .btn:hover {
    color: var(--color-text-dark);
    border-bottom-color: rgba(26, 24, 23, 0.7);
}

.btn-small {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    padding-bottom: 0.3rem;
}

.btn-small {
    padding: 0.6rem 1.75rem;
    font-size: 0.8rem;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

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

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Section alternating backgrounds */
.bg-light.alternate-bg {
    background-color: var(--color-bg-warm-2);
    color: var(--color-text-dark);
}

.bg-light.alternate-bg h2,
.bg-light.alternate-bg h3,
.bg-light.alternate-bg h4,
.bg-light.alternate-bg p,
.bg-light.alternate-bg .section-title p {
    color: var(--color-text-dark);
}

.bg-light.alternate-bg .qualify-item {
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border-warm);
}

.bg-light.alternate-bg .qualify-item:hover {
    background: #E8E4DC;
}

.bg-light.alternate-bg .qualification-grid {
    background: var(--color-border-warm);
}

.bg-light.alternate-bg .section-title h2 {
    color: var(--color-text-dark);
}

.bg-dark {
    background-color: #000000;
    color: var(--color-text-primary);
}

.text-white,
.text-white h3,
.text-white p {
    color: var(--color-text-primary);
}

/* Fix browser-default blue links inside warm sections */
.service-card a,
.service-card p a,
.detail-content-section a:not(.btn),
.bg-light a:not(.btn),
.alternate-bg a:not(.btn),
.qualify-item a {
    color: var(--color-text-dark-secondary);
    text-decoration: none;
}

.service-card a:hover,
.detail-content-section a:not(.btn):hover {
    color: var(--color-text-dark);
}

/* ========================================
   HEADER & NAV — floating pill
   ======================================== */
.site-header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: min(720px, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(15, 13, 11, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Slightly more solid on scroll — stays dark */
.site-header.scrolled {
    background: rgba(10, 9, 7, 0.97);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand-logo {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f0ece6 !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Nav Consultation link — ghost text, white */
.nav-links a.btn {
    color: rgba(255, 255, 255, 0.85);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    padding-bottom: 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    background: transparent;
}

.nav-links a.btn::after {
    display: none;
}

.nav-links a.btn:hover {
    color: #1a1714;
    border-bottom-color: rgba(26, 23, 20, 0.8);
    background: transparent;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-text-primary);
    transition: 0.3s;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    min-height: 640px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: #000;
}

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

.hero-bg::after {
    display: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.1) brightness(0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(2rem, 5vw, 5rem) clamp(3rem, 6vh, 5rem);
    text-align: left;
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

.hero-tag {
    display: block;
    width: fit-content;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 7.5vw, 7.5rem);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero h1 em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.55);
}

.hero p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 0;
}

.hero-subtext {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-subtext p {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 400;
    max-width: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SERVICES / CARDS
   ======================================== */
/* Services section — warm background */
.services-section {
    background: var(--color-bg-warm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--color-border-warm);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: var(--color-bg-warm);
    padding: var(--spacing-lg);
    border-radius: 0;
    transition: background 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
    color: var(--color-text-dark);
}

.service-card:hover,
.service-card-link:hover .service-card {
    background: var(--color-bg-warm-2);
    transform: none;
    box-shadow: none;
}

.service-card-img {
    height: 220px;
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.78rem;
}

.service-card p {
    color: var(--color-text-dark-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.service-link {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.service-link:hover {
    border-color: var(--color-text-primary);
}

/* Dark service cards on index */
.services-grid.large-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Dark service cards on black sections */
.service-card.dark {
    background: var(--color-bg-warm);
    color: var(--color-text-dark);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border-warm);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.service-card.dark:hover {
    border-color: var(--color-border-warm-strong);
    background: var(--color-bg-warm-2);
}

.service-card.dark h3 {
    color: var(--color-text-dark);
    border-bottom: 1px solid var(--color-border-warm);
    padding-bottom: var(--spacing-xs);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card.dark p {
    color: var(--color-text-dark-secondary);
}

.check-list {
    margin: var(--spacing-sm) 0;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-dark-secondary);
    font-weight: 300;
}

.check-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(26, 24, 23, 0.25);
}

.note {
    display: block;
    margin-top: var(--spacing-sm);
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.4;
    font-weight: 300;
    color: var(--color-text-dark);
}

.link-arrow {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-dark-secondary);
    transition: color 0.2s ease;
}

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

/* ========================================
   DETAIL PAGES
   ======================================== */
/* Detail pages — warm background */
.detail-hero {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background: var(--color-bg-primary);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-primary);
}

.back-link:hover {
    opacity: 1;
    color: var(--color-text-primary);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    opacity: 0.3;
}

.breadcrumbs a:hover {
    color: var(--color-text-primary);
}

.breadcrumbs .current {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.detail-hero h1 {
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
    font-style: italic;
    text-transform: uppercase;
}

.hero-intro {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.detail-content-section {
    background: var(--color-bg-warm);
    color: var(--color-text-dark);
}

.detail-content-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    font-style: italic;
}

.section-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-dark-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
    font-weight: 300;
}

.option-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1px;
    background: var(--color-border-warm);
    margin-bottom: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.option-card-large {
    background: var(--color-bg-warm-2);
    padding: var(--spacing-lg);
    transition: background 0.3s ease;
}

.option-card-large:hover {
    background: #E3DFD7;
    transform: none;
    box-shadow: none;
}

.option-card-large img {
    border-radius: 0 !important;
    filter: grayscale(8%) contrast(1.08);
}

.option-card-large h3 {
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.option-card-large p {
    color: var(--color-text-dark-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

.detail-note-large {
    max-width: 800px;
    margin: var(--spacing-xl) auto;
    padding: var(--spacing-lg);
    background: var(--color-bg-warm-2);
    border-left: 2px solid rgba(26, 24, 23, 0.2);
    text-align: center;
}

.detail-note-large p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-dark-secondary);
    margin: 0;
    font-weight: 300;
}

.detail-cta-large {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Expandable card */
.detail-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: var(--spacing-md);
}

.expandable-card.expanded .detail-content {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.detail-intro p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-style: italic;
    font-weight: 300;
}

.detail-subtitle {
    font-size: 0.7rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--color-border);
    margin-bottom: var(--spacing-md);
}

.option-card {
    background: var(--color-bg-secondary);
    padding: var(--spacing-sm);
}

.option-card h5 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}

.option-card p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
}

.detail-note {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-bg-secondary);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    font-style: italic;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
}

.detail-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ========================================
   SUITABILITY
   ======================================== */
.suitability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--color-border);
    max-width: 1000px;
    margin: 0 auto;
}

.suitability-column {
    background: var(--color-bg-warm-2);
    padding: var(--spacing-xl);
    position: relative;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.3s ease;
    color: var(--color-text-dark);
}

.suitability-column:hover {
    transform: none;
    background: #E3DFD7;
    box-shadow: none;
}

.suitability-column::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    transition: none;
}

.suitability-column.suitable::before {
    background: rgba(26, 24, 23, 0.3);
}

.suitability-column.not-suitable::before {
    background: rgba(26, 24, 23, 0.12);
}

.suitability-column:hover::before {
    width: 2px;
}

.suitability-column h3 {
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-dark-secondary);
}

.suitability-column ul li {
    padding: 0.75rem 0;
    color: var(--color-text-dark-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 2rem;
    border-bottom: 1px solid var(--color-border-warm);
    font-weight: 300;
    transition: color 0.2s ease;
}

.suitability-column ul li:last-child {
    border-bottom: none;
}

.suitability-column ul li:hover {
    padding-left: 2rem;
    color: var(--color-text-dark);
}

.suitability-column.suitable ul li:before {
    content: "+";
    position: absolute;
    left: var(--spacing-xl);
    color: rgba(26, 24, 23, 0.3);
    font-weight: 300;
    font-size: 1rem;
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    display: inline;
    transform: none;
    transition: none;
}

.suitability-column.suitable ul li:hover:before {
    background: none;
    transform: none;
    color: rgba(26, 24, 23, 0.5);
}

.suitability-column.not-suitable ul li:before {
    content: "–";
    position: absolute;
    left: var(--spacing-xl);
    color: rgba(26, 24, 23, 0.2);
    font-weight: 300;
    font-size: 1rem;
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    display: inline;
    transform: none;
    transition: none;
}

.suitability-column.not-suitable ul li:hover:before {
    background: none;
    transform: none;
}

/* ========================================
   QUALIFICATION GRID
   ======================================== */
.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--color-border);
    margin: var(--spacing-lg) 0;
}

.qualify-item {
    background: var(--color-bg-warm);
    padding: var(--spacing-lg) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s ease;
}

.qualify-item:hover {
    background: #E8E4DC;
}

.qualify-item p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dark-secondary);
}

/* ========================================
   PROCESS STEPS
   ======================================== */
/* Process section — warm background */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
    margin-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--color-border-warm);
    z-index: 0;
}

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

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-warm);
    border: 1px solid var(--color-border-warm);
    border-radius: 0;
    margin: 0 auto 1.5rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-text-dark-secondary);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.step:hover .step-num {
    background: var(--color-text-dark);
    color: var(--color-bg-warm);
    border-color: var(--color-text-dark);
    transform: none;
}

.step h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.5;
    color: var(--color-text-dark-secondary);
    font-weight: 400;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--color-text-dark-secondary);
    font-size: 0.68rem;
    font-family: var(--font-body);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    max-width: 480px;
    margin: 0 auto;
}

/* ========================================
   ALERT / MATERIAL REALITY
   ======================================== */
.alert-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-warm-2);
    padding: var(--spacing-lg);
    border-radius: 0;
    border: 1px solid var(--color-border-warm);
    border-top: 2px solid rgba(26, 24, 23, 0.2);
    position: relative;
}

.alert-box h3 {
    font-size: 0.7rem;
    font-weight: 500;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-dark-secondary);
    margin-bottom: var(--spacing-sm);
}

.alert-box p {
    color: var(--color-text-dark-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   FAQ
   ======================================== */
/* FAQ — warm background */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
    border-left: none;
    box-shadow: none;
    border-bottom: 1px solid var(--color-border-warm);
    transition: none;
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border-warm);
}

.faq-item:hover {
    box-shadow: none;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 0;
    color: var(--color-text-dark);
    padding: 1.5rem var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.faq-item h3:hover {
    color: rgba(26, 24, 23, 0.7);
}

.faq-item h3::after {
    content: '+';
    font-weight: 300;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: rgba(26, 24, 23, 0.3);
    flex-shrink: 0;
}

.faq-item.active h3 {
    color: var(--color-text-dark);
}

.faq-item.active h3::after {
    transform: rotate(45deg);
    color: var(--color-text-dark);
}

.faq-item p {
    color: var(--color-text-dark-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    padding: 0 var(--spacing-md) 1.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}

.faq-item.active p {
    max-height: 500px;
    opacity: 1;
    padding-top: 0;
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover {
    opacity: 0.85;
    transform: none;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* ========================================
   FOOTER
   ======================================== */
/* ========================================
   FOOTER — EDITORIAL
   ======================================== */
.site-footer {
    background-color: #000000;
    color: var(--color-text-primary);
    padding: 0;
    margin-top: 0;
    border-top: none;
}

/* Editorial footer statement */
.footer-statement {
    padding: clamp(4rem, 8vw, 8rem) 0 clamp(3rem, 5vw, 5rem);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-statement-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.0;
    letter-spacing: 0.03em;
    color: var(--color-text-primary);
    max-width: 1100px;
}

.footer-statement-text em {
    color: rgba(255,255,255,0.3);
    font-style: normal;
}

/* Nav row */
.footer-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-nav-label {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0.75rem;
    display: block;
}

.footer-nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.footer-nav-links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-nav-links a:hover {
    color: #fff;
}

.footer-cta-link {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.3rem;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-cta-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Legacy aliases — keep old classes from breaking other pages */
.footer-grid { display: none; }
.footer-column { display: none; }
.footer-brand { display: none; }
.footer-links { display: none; }


@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        background: #000000;
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: var(--spacing-xl) var(--spacing-lg);
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.1rem;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-links a.btn {
        font-size: 0.8rem;
        padding: 0.7rem 1.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

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

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero h1 {
        font-size: clamp(3.5rem, 14vw, 5rem);
    }

    .hero-content {
        padding-bottom: var(--spacing-lg);
    }

    .process-steps {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .process-steps::before {
        left: 25px;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        right: auto;
    }

    .step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: var(--spacing-md);
    }

    .step-num {
        margin: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-column.branding {
        grid-column: span 1;
    }
}

/* ========================================
   WHATSAPP FLOATING BUTTON — minimal
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
    transition: fill 0.2s ease;
    filter: none;
}

.whatsapp-float:hover {
    background: #111;
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.whatsapp-float:hover svg {
    fill: #fff;
}

/* ========================================
   PAGE HERO — inner pages (Systems, etc.)
   ======================================== */
.page-hero {
    background: #000;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
}

.page-hero-content {
    padding: 0 clamp(2rem, 5vw, 5rem) clamp(3rem, 5vh, 4rem);
    max-width: 900px;
    animation: fadeUp 0.8s ease-out;
}

.page-hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.page-hero p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 440px;
    line-height: 1.8;
    font-weight: 300;
}

/* ========================================
   SYSTEMS PAGE — category labels & dividers
   ======================================== */
.systems-category-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-text-dark-secondary);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--color-border-warm);
}

.systems-divider {
    height: 1px;
    background: var(--color-border-warm);
    margin: 2rem 0 0;
}

/* Active nav link indicator */
.nav-links a.active-page {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 1px;
}

/* Nav pill is always warm white — no dark override needed */

/* ========================================
   HERO BG — image support
   ======================================== */
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.35;
}

/* ========================================
   EDITORIAL PHOTO BREAK
   ======================================== */
.photo-break {
    position: relative;
    width: 100%;
    height: clamp(300px, 50vh, 580px);
    overflow: hidden;
}

.photo-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.photo-break-caption {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ========================================
   PROCESS SPLIT LAYOUT
   ======================================== */
.process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 560px;
    align-items: stretch;
}

.process-photo {
    overflow: hidden;
    position: relative;
}

.process-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(20%);
    transition: transform 0.6s ease;
}

.process-photo:hover img {
    transform: scale(1.03);
}

.process-text {
    padding: clamp(2.5rem, 5vw, 4rem);
    background: var(--color-bg-warm);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-text h2 {
    margin-bottom: 0.5rem;
}

/* ========================================
   PHOTO CARD — service card with image header
   ======================================== */
.service-card.photo-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card.photo-card .card-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card.photo-card .card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.service-card.photo-card:hover .card-photo img {
    transform: scale(1.05);
}

.service-card.photo-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ========================================
   RESPONSIVE — photo components
   ======================================== */
@media (max-width: 768px) {
    .process-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .process-photo {
        height: 280px;
    }

    .photo-break {
        height: clamp(220px, 40vh, 360px);
    }
}

/* ========================================
   DETAIL HERO PHOTO — liquid-metal, patina pages
   ======================================== */
.detail-hero-photo {
    width: 100%;
    height: clamp(280px, 45vh, 520px);
    overflow: hidden;
    position: relative;
}

.detail-hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
}

.detail-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================
   VIDEO HERO
   ======================================== */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform-origin: center;
    will-change: transform;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 9, 7, 0.55) 0%,
            rgba(10, 9, 7, 0.30) 50%,
            rgba(10, 9, 7, 0.70) 100%);
    z-index: 1;
}

/* Ensure hero content sits above video */
.hero .hero-content,
.hero .hero-subtext,
.hero .hero-cta {
    position: relative;
    z-index: 2;
}

/* ========================================
   SCROLL REVEAL — .reveal classes
   Add .reveal + variant to any element.
   JS adds .revealed when in viewport.
   ======================================== */

/* Base: hidden states */
.reveal {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.22, .61, .36, 1),
        transform 0.7s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-fade {
    transform: none;
}

.reveal-scale {
    transform: scale(0.94);
}

/* Revealed state */
.revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Stagger helpers — use data-delay in JS */
.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

.reveal:nth-child(5) {
    transition-delay: 0.32s;
}



/* ========================================
   HERO TEXT ENTRANCE — auto-animate
   ======================================== */
.hero h1 {
    animation: heroSlideUp 1.1s cubic-bezier(.22, .61, .36, 1) 0.2s both;
}

.hero p {
    animation: heroSlideUp 1.1s cubic-bezier(.22, .61, .36, 1) 0.45s both;
}

.hero .hero-subtext {
    animation: heroSlideUp 1.1s cubic-bezier(.22, .61, .36, 1) 0.65s both;
}

.hero .hero-cta,
.hero .btn {
    animation: heroSlideUp 1.1s cubic-bezier(.22, .61, .36, 1) 0.80s both;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   DETAIL PAGE PRICING SECTION FIX
   Forces warm/light background + dark readable text
   so pricing cards are never dark-on-dark
   ======================================== */
#pricing {
    background-color: var(--color-bg-warm) !important;
    color: var(--color-text-dark) !important;
}

#pricing h2,
#pricing h3,
#pricing p,
#pricing div {
    color: var(--color-text-dark) !important;
}

#pricing .pricing-card {
    background-color: var(--color-bg-warm-2) !important;
    border-color: var(--color-border-warm-strong) !important;
}

#pricing [style*="background"] {
    background-color: var(--color-bg-warm-2) !important;
}

#pricing .btn {
    color: var(--color-white) !important;
}