:root {
    --navy: #0d1b2a;
    --navy-mid: #142236;
    --navy-light: #1e3550;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --text-muted: #8a9bb0;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--navy);
    color: var(--cream);
    overflow-x: hidden;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(13,27,42,0.98) 0%, rgba(13,27,42,0) 100%);
    transition: background var(--transition);
}

nav.scrolled {
    background: rgba(13,27,42,0.97) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

nav.solid {
    background: rgba(13,27,42,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-decoration: none;
    cursor: pointer;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    transition: color var(--transition);
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--gold);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.6rem 1.4rem;
    transition: all var(--transition) !important;
}

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

/* SHARED */
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 1rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.btn-secondary {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Jost', sans-serif;
}

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

.btn-secondary::after {
    content: '→';
    font-size: 1rem;
    transition: transform var(--transition);
}

.btn-secondary:hover::after {
    transform: translateX(4px);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

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

.section-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(245,240,232,0.65);
    margin-bottom: 1.5rem;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

/* PAGE HERO */
.page-hero {
    padding: 10rem 4rem 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0d1b2a 0%, #142236 60%, #0a1520 100%);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 80% at 30% 50%, black 0%, transparent 80%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.page-hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.page-hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

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

.page-hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245,240,232,0.65);
    max-width: 620px;
}

/* FOOTER */
.page.active footer {
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 3rem 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--cream);
    cursor: pointer;
}

.footer-logo span {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

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

.footer-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color var(--transition);
}

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

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-1 {
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.anim-2 {
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
}

.anim-3 {
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.anim-4 {
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}

.anim-5 {
    opacity: 0;
    animation: fadeIn 1s 0.8s forwards;
}

/* ── HOME ── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(30,53,80,0.6) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%), linear-gradient(135deg, var(--navy) 0%, #0a1520 100%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 6rem 6rem;
}

.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

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

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245,240,232,0.65);
    max-width: 480px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
}

.hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(20px);
    padding: 3rem;
    max-width: 360px;
    width: 100%;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 2rem;
    width: 3rem;
    height: 2px;
    background: var(--gold);
}

.hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.hero-card-sub {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.credential-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.credential-list li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245,240,232,0.8);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.credential-list li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    margin-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 2rem;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat + .stat {
    border-left: 1px solid rgba(201,168,76,0.15);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.trust-bar {
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    background: rgba(201,168,76,0.03);
    padding: 1.5rem 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.trust-item span {
    color: var(--gold);
    font-size: 1rem;
}

#philosophy {
    padding: 8rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.phil-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.1);
    border-left: 3px solid var(--gold);
    transition: background var(--transition);
}

.pillar:hover {
    background: rgba(201,168,76,0.04);
}

.pillar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pillar-text {
    font-size: 0.87rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.6);
}

.home-services-preview {
    padding: 8rem 6rem;
    background: var(--navy-mid);
    position: relative;
}

.home-services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.services-preview-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(201,168,76,0.08);
}

.preview-card {
    background: var(--navy-mid);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background var(--transition);
    cursor: pointer;
}

.preview-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.preview-card:hover {
    background: rgba(30,53,80,0.6);
}

.preview-card:hover::after {
    transform: scaleX(1);
}

.preview-cat {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.preview-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.preview-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.5);
}

.services-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

#home-testimonials {
    padding: 8rem 6rem;
    max-width: 1300px;
    margin: 0 auto;
}

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

.testimonial-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.1);
    transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(245,240,232,0.8);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.cta-band {
    padding: 6rem;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    margin-bottom: 1.2rem;
}

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

.cta-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ── SERVICES ── */
.services-page {
    padding: 5rem 6rem 4rem;
    background: var(--navy);
}

.services-categories {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.service-category {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.service-category:last-child {
    border-bottom: none;
}

.category-label-col {
    position: sticky;
    top: 6rem;
}

.category-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.category-name em {
    font-style: italic;
    color: var(--gold-light);
}

.category-tagline {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.5);
    font-style: italic;
}

.category-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201,168,76,0.06);
}

.service-item {
    background: var(--navy);
    padding: 1.8rem 2rem;
    transition: background var(--transition);
}

.service-item:hover {
    background: rgba(30,53,80,0.7);
}

.service-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-item-name .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.service-item-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245,240,232,0.55);
}

.services-closing {
    text-align: center;
    padding: 4rem 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-closing-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(245,240,232,0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* aesthetics — intentionally quieter */
.category-aesthetics .category-number {
    color: rgba(201,168,76,0.07);
}

.category-aesthetics .category-tagline {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.38);
}

.category-aesthetics .service-item {
    background: rgba(13,27,42,0.5);
}

.category-aesthetics .service-item:hover {
    background: rgba(20,34,54,0.6);
}

.category-aesthetics .service-item-desc {
    color: rgba(245,240,232,0.42);
}

.category-aesthetics .dot {
    background: rgba(201,168,76,0.5);
}

/* ── ABOUT ── */
.about-origin {
    padding: 6rem 6rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-origin-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.about-origin-quote::before {
    content: '\201C';
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    font-style: normal;
    line-height: 1;
}

.about-origin-attr {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.about-story {
    padding: 4rem 6rem 5rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-img-wrapper {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse 40% 40% at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.about-img-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.about-accent {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(201,168,76,0.12);
    z-index: -1;
}

.about-credentials-band {
    background: var(--navy-mid);
    padding: 5rem 6rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.cred-block {
    background: var(--navy-mid);
    padding: 2.5rem 2rem;
}

.cred-block-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.cred-block-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(245,240,232,0.85);
}

.about-philosophy {
    padding: 5rem 6rem;
}

.about-philosophy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.phil-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.phil-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.phil-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.45rem;
}

.phil-item-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.7);
}

.phil-item-text strong {
    color: var(--cream);
    font-weight: 500;
}

.about-lisa {
    padding: 5rem 6rem 6rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.lisa-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, var(--navy-mid) 100%);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lisa-img-wrapper {
    position: relative;
}

.lisa-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(201,168,76,0.1);
    z-index: -1;
}

/* ── CONTACT ── */
.contact-page {
    padding: 5rem 6rem 8rem;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-detail {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2.2rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(245,240,232,0.8);
    line-height: 1.6;
}

.contact-detail-value a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-detail-value a:hover {
    color: var(--gold);
}

.contact-hours {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.hours-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245,240,232,0.65);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.06);
}

.hours-row .day {
    color: rgba(245,240,232,0.85);
}

.contact-note {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(201,168,76,0.04);
    border-left: 3px solid var(--gold);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.65);
    font-style: italic;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.form-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--cream);
    padding: 0.9rem 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(138,155,176,0.6);
}

.form-select option {
    background: var(--navy-mid);
    color: var(--cream);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-submit {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
}

.form-submit:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    #hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        padding: 8rem 2.5rem 5rem;
    }

    .page-hero,
    .services-page,
    .about-origin,
    .about-credentials-band,
    .about-philosophy {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    #philosophy,
    .about-story,
    .about-lisa,
    .contact-page,
    .about-philosophy-inner {
        grid-template-columns: 1fr;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        gap: 3rem;
    }

    .about-img-wrapper,
    .lisa-img-wrapper {
        display: none;
    }

    .home-services-preview,
    .cta-band,
    #home-testimonials,
    .trust-bar {
        padding: 4rem 2.5rem;
    }

    .services-preview-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-category {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-label-col {
        position: static;
    }

    .category-items {
        grid-template-columns: 1fr;
    }

    .page.active footer {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── SERVICE PAGE SHARED STYLES ── */
.svc-page-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 5rem 4rem;
}

.svc-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 5rem;
}

.svc-media img {
    width: 100%;
    border: 1px solid rgba(201,168,76,0.18);
}

.svc-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.svc-detail-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 1rem 1.2rem;
}

.svc-detail-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.svc-detail-val {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245,240,232,0.8);
    line-height: 1.5;
}

.svc-info-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 2rem;
}

.svc-info-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.svc-info-list {
    list-style: none;
    padding: 0;
}

.svc-info-list li {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(245,240,232,0.7);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
}

.svc-info-list li::before {
    content: '→';
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 0.05rem;
}

.svc-video-section {
    margin-bottom: 5rem;
}

.svc-video-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.svc-video-embed {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.12);
    overflow: hidden;
}

.svc-video-embed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(245,240,232,0.5);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
}

.video-placeholder code {
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    font-family: monospace;
}

.svc-quote-band {
    background: rgba(201,168,76,0.04);
    border-left: 2px solid var(--gold);
    padding: 2.5rem 3rem;
    margin-bottom: 4rem;
}

.svc-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: rgba(245,240,232,0.85);
    margin-bottom: 1rem;
}

.svc-quote-attr {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.svc-related {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 5rem 4rem;
    text-align: center;
}

.svc-related-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 2rem auto 0;
}

.svc-cta-strip {
    background: linear-gradient(135deg,#0a1520,#142236);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 5rem 4rem;
    text-align: center;
}

.svc-cta-strip h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Service link styling */
a.svc-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: color 0.3s, border-color 0.3s;
}

a.svc-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Photo stack */
.svc-photo-stack {
    position: relative;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(245,240,232,0.65);
    margin-bottom: 1.2rem;
}

@media (max-width: 900px) {
    .svc-two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .svc-related-grid {
        grid-template-columns: 1fr;
    }

    .svc-page-body {
        padding: 3rem 2rem;
    }

    .page-hero {
        padding: 8rem 2rem 4rem;
    }

    .svc-related {
        padding: 3rem 2rem;
    }

    .svc-cta-strip {
        padding: 3rem 2rem;
    }
}




/* === Refactor: reliable links, cards, and mobile behavior === */
a.nav-logo,
a.footer-logo,
a.btn-primary,
a.btn-secondary,
a.nav-cta,
a.preview-card,
a.service-item,
a.contact-detail,
a.trust-item {
  text-decoration: none;
  color: inherit;
}

a.nav-logo,
a.footer-logo,
a.btn-primary,
a.btn-secondary,
a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

a.preview-card {
  display: block;
}

a.preview-card:hover {
  color: inherit;
}

a.service-item {
  display: block;
}

a.service-item .service-item-name,
a.service-item .service-item-desc {
  color: inherit;
}

.hero-bg,
.hero-grid-overlay,
.about-accent,
.lisa-accent,
.page-hero::after {
  pointer-events: none;
}

.nav-logo,
.footer-logo,
.nav-links a,
.btn-primary,
.btn-secondary,
.nav-cta,
.preview-card,
.service-item,
.form-submit {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.form-submit {
  min-height: 48px;
}

@media (max-width: 1024px) {
  .about-img-wrapper,
  .lisa-img-wrapper {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .about-story,
  .about-lisa,
  .contact-page,
  .about-philosophy-inner,
  #philosophy {
    align-items: start;
  }

  .about-story > *,
  .about-lisa > * {
    width: 100%;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  .page-hero,
  .services-page,
  .about-origin,
  .about-credentials-band,
  .about-philosophy,
  .home-services-preview,
  .cta-band,
  #home-testimonials,
  .trust-bar,
  #philosophy,
  .about-story,
  .about-lisa,
  .contact-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-content {
    padding: 7rem 1.25rem 4rem;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
  }

  a.btn-primary,
  a.btn-secondary,
  a.nav-cta,
  .form-submit {
    width: 100%;
    min-height: 48px;
  }

  .hours-row {
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
  }

  .contact-detail {
    gap: 0.9rem;
  }
}
