/* CSS Design System and Styling for North & Finch Studios */

@font-face {
    font-family: 'Kitsor Rauttie';
    src: url('Kitsor-Rauttie-958667/Kitsor Rauttie.ttf') format('truetype'),
         url('Kitsor-Rauttie-958667/Kitsor Rauttie.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Colombia';
    src: url('Colombia-5203601 (1)/Colombia Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Colombia';
    src: url('Colombia-5203601 (1)/Colombia Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Royale Couture Sans';
    src: url('Royale-Couture-113314443/Royale Couture Sans.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Royale Couture Script';
    src: url('Royale-Couture-113314443/Royale Couture Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Marney Holland Script';
    src: url('Marney-Holland-34880127/Marney Holland Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Southwest Partisan';
    src: url('Southwest-Partisan-126781098/Southwestpartisan.ttf') format('truetype'),
         url('Southwest-Partisan-126781098/Southwest%20Partisan.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Samantha Signature';
    src: url('Samantha_Signature.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-blush: #fdf5f1;
    --color-oatmeal: #f5f2eb;
    --color-charcoal: #1c1c1a;
    --color-offwhite: #FAF8F5;
    --color-gold: #9e7e67;
    --color-muted: #8c887e;
    
    --font-serif: "Colombia", "Playfair Display", Georgia, serif;
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: "Playfair Display", serif;
    --font-script: "Marney Holland Script", "Great Vibes", cursive;
    --font-kitsor: 'Kitsor Rauttie', serif;
    --font-royale-script: 'Royale Couture Script', cursive;
    --font-samantha: 'Southwest Partisan', cursive;
    --font-samantha-sig: 'Samantha Signature', cursive;

    --transition-fade: opacity 0.5s ease, transform 0.5s ease;
}

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-offwhite);
}

body {
    font-family: var(--font-sans);
    color: var(--color-charcoal);
    background-color: var(--color-offwhite);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Header & Navigation */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    z-index: 100;
    padding: 2.5rem 3rem;
    border-bottom: none;
    transition: all 0.3s ease;
}

.main-header .social-links a {
    color: #ffffff; /* Default light color over dark hero bg */
    opacity: 0.9;
    transition: all 0.3s ease;
}

.main-header.light-header .social-links a {
    color: var(--color-charcoal);
}

.main-header.light-header .burger-line {
    background-color: var(--color-charcoal);
}

.nav-bar {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem 0;
    z-index: 110;
}

.burger-line {
    display: block;
    width: 25px;
    height: 1.5px;
    background-color: #ffffff; /* Default light color over dark hero bg */
    transition: all 0.3s ease;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-charcoal);
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-charcoal);
    transition: width 0.3s ease;
}

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

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

.social-links a {
    font-size: 0.85rem;
    color: var(--color-charcoal);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.brand-title {
    text-align: center;
    margin-top: 1.5rem;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

/* SPA Page views styling */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fade);
}

.page-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Reveal Triggers */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Container limits */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== HOME PAGE VIEW ==================== */

.home-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-logo-wrap {
    position: relative;
    max-width: 320px;
    width: 75%;
    margin: 0 auto -4rem;
    display: block;
    opacity: 0;
    transform: translateY(-72px) scale(0.96);
    animation: logo-drop-in 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
    will-change: opacity, transform;
}

.hero-logo {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    display: block;
    filter: brightness(0) invert(1); /* Makes the logo pure white */
    position: relative;
    z-index: 2;
}

@keyframes logo-drop-in {
    0% {
        opacity: 0;
        transform: translateY(-72px) scale(0.96);
    }
    68% {
        opacity: 1;
        transform: translateY(8px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-logo-wrap {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    .conversion-marquee-track {
        animation: none;
        transform: none;
    }
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    image-rendering: auto;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 26, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    word-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.85;
}

.hero-btn {
    display: inline-block;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.9rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
    background-color: #ffffff;
    color: var(--color-charcoal);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.35rem;
}

.hero-actions .nav-link::after,
.text-cta.nav-link::after,
.services-cta-section .nav-link::after {
    display: none;
}

.hero-secondary-btn {
    display: inline-block;
    color: #ffffff;
    padding: 0.9rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.92;
}

.hero-secondary-btn:hover {
    opacity: 1;
}

.hero-proof-line {
    max-width: 560px;
    width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.hero-alt-link {
    display: block;
    margin-top: 4rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
    text-transform: uppercase;
}

/* Conversion Marquee */
.conversion-marquee-section {
    position: relative;
    background-color: var(--color-charcoal);
    color: #ffffff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(28, 28, 26, 0.08);
}

.conversion-marquee-section::before,
.conversion-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(12vw, 160px);
    z-index: 2;
    pointer-events: none;
}

.conversion-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-charcoal), rgba(28, 28, 26, 0));
}

.conversion-marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, var(--color-charcoal), rgba(28, 28, 26, 0));
}

.conversion-marquee-track {
    display: flex;
    width: max-content;
    animation: conversion-marquee-scroll 34s linear infinite;
}

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

.conversion-marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 2rem;
    padding: 1.15rem 1rem;
    white-space: nowrap;
}

.conversion-marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.1vw, 2.15rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
}

.conversion-marquee-content span::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background-color: var(--color-gold);
}

@keyframes conversion-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.brand-voice-section {
    background-color: var(--color-blush);
    padding: 8rem 4rem 4rem;
}

.brand-voice-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.voice-img-left img,
.voice-img-right img {
    width: 100%;
    aspect-ratio: 0.75;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(28, 28, 26, 0.06);
}

.voice-content {
    text-align: center;
    padding: 2rem;
}

.voice-intro {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.voice-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.voice-text {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.voice-tagline {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-charcoal);
    opacity: 0.9;
}

/* Agenda Section */
.agenda-section {
    background-color: #ffffff;
    padding: 0 4rem 8rem;
}

.agenda-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.typing-statement {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.45em;
    max-width: 1180px;
    min-height: 16vh;
    margin: 0 auto 3rem;
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--color-charcoal);
    text-align: center;
    white-space: nowrap;
}

.typing-static {
    opacity: 0.82;
}

.typing-word {
    position: relative;
    display: inline-block;
    min-width: 7.7ch;
    font-style: italic;
    color: var(--color-gold);
    text-align: left;
}

.typing-word::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 0.86em;
    margin-left: 0.08em;
    background-color: var(--color-gold);
    transform: translateY(0.12em);
    animation: typing-cursor-blink 0.9s steps(2, start) infinite;
}

@keyframes typing-cursor-blink {
    0%,
    45% {
        opacity: 1;
    }
    46%,
    100% {
        opacity: 0;
    }
}

.agenda-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2.35rem;
    color: var(--color-charcoal);
    opacity: 0.82;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.agenda-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.agenda-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-charcoal);
    line-height: 1;
}

.agenda-item-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.agenda-item-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.agenda-right {
    display: flex;
    justify-content: center;
}

.agenda-img-frame {
    padding: 0;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.agenda-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Home Intro Section */
.home-intro-section {
    background-color: var(--color-oatmeal);
    padding: 8rem 4rem;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.intro-img-col {
    display: flex;
    justify-content: flex-end;
}

.intro-portrait {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.75;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(28, 28, 26, 0.08);
    filter: grayscale(100%); /* Makes the portrait black and white */
}

.intro-content-col {
    padding-right: 2rem;
}

.intro-greeting {
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1.15rem;
}

.intro-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    opacity: 0.8;
}

.intro-signoff {
    margin-top: 2rem;
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 3.2vw, 3.15rem) !important;
    font-style: italic;
    line-height: 1.2 !important;
    color: #7f604d;
    opacity: 1 !important;
}

/* Conversion Proof Section */
.conversion-proof-section {
    background-color: #ffffff;
    padding: 7rem 4rem;
}

.conversion-proof-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.section-kicker {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.conversion-copy h3,
.niche-system-heading h3,
.services-cta-inner h3 {
    font-family: var(--font-serif);
    font-size: 2.15rem;
    font-weight: 400;
    line-height: 1.28;
    color: var(--color-charcoal);
    margin-bottom: 1.4rem;
}

.conversion-copy p,
.services-cta-inner p {
    font-size: 0.96rem;
    line-height: 1.85;
    color: var(--color-charcoal);
    opacity: 0.78;
}

.conversion-list {
    display: grid;
    gap: 1.4rem;
}

.conversion-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.3rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(28, 28, 26, 0.1);
}

.conversion-point:first-child {
    border-top: 1px solid rgba(28, 28, 26, 0.1);
}

.conversion-point span {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    color: var(--color-gold);
    line-height: 1;
}

.conversion-point p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--color-charcoal);
    opacity: 0.78;
}

/* ==================== ABOUT PAGE VIEW ==================== */

.about-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efeeea;
}

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

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.about-hero-overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-bg-title {
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    text-align: center;
    line-height: 1;
    margin-bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.about-statement-section {
    background-color: var(--color-offwhite);
    padding: 8rem 2rem 5rem;
    text-align: center;
}

.statement-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-muted);
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-statement-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-charcoal);
    max-width: 800px;
    margin: 0 auto;
}

/* About Editorial Split */
.about-editorial-section {
    background-color: var(--color-offwhite);
    padding: 4rem 4rem 8rem;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.editorial-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.editorial-p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    opacity: 0.8;
    text-align: justify;
}

.editorial-p-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-gold);
    margin: 1rem 0;
}

.editorial-img-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.editorial-mid-img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 15px 35px rgba(28, 28, 26, 0.05);
}

.inspiration-box {
    padding-top: 1rem;
}

.inspiration-title {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-muted);
    display: block;
    margin-bottom: 0.75rem;
}

.inspiration-list {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-charcoal);
}

/* About Founder Split */
.about-founder-section {
    background-color: #ffffff;
}

.founder-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.founder-photo-side {
    background-color: #efeeea;
}

.founder-bw-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-content-side {
    background-color: var(--color-charcoal);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem;
}

.founder-content-wrapper {
    max-width: 450px;
}

.founder-side-label {
    font-family: var(--font-script);
    font-size: 2.4rem;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.founder-side-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.founder-side-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.founder-side-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ffffff;
    opacity: 1;
}

/* ==================== SERVICES PAGE VIEW ==================== */

.services-hero {
    background-color: var(--color-blush);
    padding: 8rem 4rem;
}

.services-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.services-hero-img-col {
    display: flex;
    justify-content: flex-end;
}

.services-hero-img {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 0.75;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(28, 28, 26, 0.06);
}

.services-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.services-main-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-charcoal);
}

.services-hero-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    opacity: 0.8;
}

/* Struggle / Empowerment */
.services-empowerment-section {
    background-color: #ffffff;
    padding: 8rem 4rem;
}

.empowerment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.empowerment-text-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.empowerment-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-charcoal);
}

.empowerment-p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    opacity: 0.8;
}

.signature-text {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    margin-top: 1rem;
}

.text-cta {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--color-charcoal);
    color: #ffffff;
    padding: 0.9rem 1.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.text-cta:hover {
    background-color: var(--color-gold);
}

.empowerment-img {
    width: 100%;
    aspect-ratio: 0.85;
    object-fit: cover;
    box-shadow: 0 20px 45px rgba(28, 28, 26, 0.08);
}

/* Niche System Section */
.niche-system-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('Photos/services_niche_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7rem 4rem;
}

.niche-system-container {
    max-width: 1180px;
    margin: 0 auto;
}

.niche-system-heading {
    max-width: 680px;
    margin-bottom: 3.5rem;
}

.niche-system-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(28, 28, 26, 0.12);
    border: 1px solid rgba(28, 28, 26, 0.12);
}

.niche-system-grid article {
    background-color: rgba(255, 255, 255, 0.45);
    padding: 2rem 1.6rem 2.2rem;
    backdrop-filter: blur(2px);
}

.niche-system-grid h4 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.niche-system-grid p {
    font-size: 0.87rem;
    line-height: 1.72;
    color: var(--color-charcoal);
    opacity: 0.76;
}

/* Testimonial Section */
.services-testimonial-section {
    background-color: var(--color-offwhite);
    padding: 8rem 4rem;
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--color-oatmeal);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(28, 28, 26, 0.04);
}

.testimonial-img-box {
    display: flex;
    justify-content: center;
}

.testimonial-img {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 0.8;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(28, 28, 26, 0.05);
}

.testimonial-content-box {
    padding-right: 2rem;
}

.testimonial-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 2rem;
}

.testimonial-signature {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-gold);
    display: block;
}

/* Review Slider */
.review-slider-container {
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.review-slider-viewport {
    flex: 1;
    overflow: hidden;
}

.review-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-card {
    flex: 0 0 100%;
    max-width: 100%;
    background-color: #ffffff;
    padding: 3rem 4rem;
    border: 1px solid rgba(28, 28, 26, 0.07);
    box-shadow: 0 12px 28px rgba(28, 28, 26, 0.035);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.review-card p {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.review-card span {
    display: block;
    font-family: var(--font-script);
    font-size: 3.4rem !important;
    color: var(--color-gold);
    text-transform: none;
    letter-spacing: normal;
    font-weight: normal;
}

.slider-arrow {
    background: none;
    border: 1px solid rgba(28, 28, 26, 0.15);
    color: var(--color-charcoal);
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.slider-arrow:hover {
    background-color: var(--color-charcoal);
    color: #ffffff;
    border-color: var(--color-charcoal);
}

/* Signature Website Experiences Section */
.ways-to-work-section {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('Photos/potting_shed.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 4rem;
    text-align: center;
}

.ways-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

.ways-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.ways-card {
    background-color: var(--color-offwhite);
    padding: 4rem 2.5rem;
    border: 1px solid rgba(28, 28, 26, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ways-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28, 28, 26, 0.04);
}

.way-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

.way-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 3rem;
    max-width: 280px;
}

.way-feature-list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0 0 1.4rem;
    list-style: none;
}

.way-feature-list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--color-charcoal);
    opacity: 0.75;
}

.way-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

.way-card-btn {
    display: inline-block;
    background-color: var(--color-blush);
    color: var(--color-charcoal);
    padding: 0.8rem 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.way-card-btn:hover {
    background-color: var(--color-oatmeal);
}

.services-cta-section {
    background-color: var(--color-charcoal);
    color: #ffffff;
    padding: 7rem 2rem;
    text-align: center;
}

.services-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.services-cta-inner .section-kicker {
    color: rgba(255, 255, 255, 0.55);
}

.services-cta-inner h3 {
    color: #ffffff;
}

.services-cta-inner p {
    color: #ffffff;
    opacity: 0.75;
    margin-bottom: 2.4rem;
}

/* ==================== FOOTER ==================== */

.site-footer {
    background-color: var(--color-charcoal);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-footer {
    max-width: 800px;
    margin: 0 auto;
}

.site-footer p {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.site-footer .designer-credit {
    font-style: italic;
    opacity: 0.4;
}

.site-footer p,
.site-footer .designer-credit {
    color: #ffffff !important;
}

.site-footer p {
    opacity: 0.78 !important;
}

.site-footer .designer-credit {
    opacity: 0.56 !important;
}

/* ==================== RESPONSIVE LAYOUTS ==================== */

@media (max-width: 1024px) {
    .brand-voice-container,
    .agenda-container,
    .intro-container,
    .editorial-container,
    .founder-split-grid,
    .services-hero-container,
    .empowerment-container,
    .testimonial-wrapper,
    .ways-grid,
    .conversion-proof-container,
    .review-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .niche-system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item-row {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    .brand-voice-container {
        grid-template-columns: 1fr;
    }
    
    .brand-voice-container .voice-img-left,
    .brand-voice-container .voice-img-right {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .agenda-right,
    .intro-img-col,
    .editorial-img-col,
    .services-hero-img-col,
    .empowerment-img-col {
        justify-content: center;
        text-align: center;
    }
    
    .founder-bw-portrait {
        max-height: 400px;
        width: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .founder-content-side {
        padding: 4rem 2rem;
    }
    
    .about-bg-title {
        font-size: 5rem;
        margin-bottom: -2rem;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }
    
    .nav-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .brand-voice-section,
    .agenda-section,
    .home-intro-section,
    .about-editorial-section,
    .services-hero,
    .services-empowerment-section,
    .services-testimonial-section,
    .ways-to-work-section,
    .conversion-proof-section,
    .niche-system-section,
    .services-cta-section {
        padding: 4rem 1.5rem;
    }
    
    .voice-title,
    .ways-title,
    .services-main-title,
    .conversion-copy h3,
    .niche-system-heading h3,
    .services-cta-inner h3 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.7rem;
    }

    .hero-btn,
    .text-cta {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-proof-line {
        font-size: 1rem;
    }

    .conversion-point {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .niche-system-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 1.6rem;
    }

    .contact-card {
        margin-top: -120px !important;
        padding: 3rem 1.5rem !important;
    }
}

/* Fullscreen Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-blush);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu-btn {
    position: absolute;
    top: 2.5rem;
    left: 3rem;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    color: var(--color-charcoal);
    font-weight: 200;
    transition: transform 0.3s ease;
    line-height: 1;
}

.close-menu-btn:hover {
    transform: rotate(90deg);
}

.overlay-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.overlay-nav-links .nav-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-charcoal);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    text-transform: uppercase;
}

.overlay-nav-links .nav-link:hover,
.overlay-nav-links .nav-link.active {
    opacity: 1;
    transform: scale(1.05);
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    background-color: var(--color-blush);
    padding: 8rem 4rem;
    min-height: 85vh;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.contact-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-muted);
    display: block;
    margin-bottom: 1rem;
}

.contact-main-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.contact-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-charcoal);
    opacity: 0.85;
}

.contact-form {
    background-color: #ffffff;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(28, 28, 26, 0.04);
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid rgba(28, 28, 26, 0.15);
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    transition: border-bottom-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239e7e67' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
}

.contact-form .submit-btn {
    display: inline-block;
    background-color: var(--color-charcoal);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
    text-align: center;
}

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

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
}

/* Contact page gallery hover interaction */
.contact-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1.5;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(28, 28, 26, 0.06);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
    cursor: pointer;
    display: block;
}

.gallery-item img:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 45px rgba(28, 28, 26, 0.12);
    filter: brightness(1.03);
}

@media (max-width: 768px) {
    .contact-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ==================== READABILITY SWEEP ==================== */

body {
    font-size: 16.5px;
}

.section-kicker,
.agenda-subtitle,
.services-subtitle,
.testimonial-label,
.statement-subtitle,
.inspiration-title,
.contact-hero-subtitle,
.form-group label,
.contact-form label {
    font-family: var(--font-sans);
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase;
    color: var(--color-charcoal) !important;
    opacity: 0.82 !important;
}

.services-cta-inner .section-kicker,
.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.82) !important;
}

.voice-intro {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.voice-title,
.services-main-title,
.empowerment-heading,
.conversion-copy h3,
.niche-system-heading h3,
.services-cta-inner h3,
.about-statement-text {
    letter-spacing: 0;
}

.intro-title,
.ways-title,
.founder-side-name {
    letter-spacing: 0.04em !important;
}

.agenda-item-title,
.way-card-title,
.niche-system-grid h4,
.process-item h4 {
    font-style: normal !important;
}

.agenda-item-title::after,
.niche-system-grid h4::after,
.process-item h4::after {
    content: '';
    display: block;
    width: 2.4rem;
    height: 1px;
    background-color: rgba(158, 126, 103, 0.55);
    margin-top: 0.65rem;
}

.agenda-list {
    gap: 3.35rem;
}

.hero-desc {
    max-width: 720px;
    font-size: clamp(1.08rem, 1.1vw, 1.16rem);
    line-height: 1.85;
    opacity: 0.94;
}

.hero-proof-line {
    max-width: 660px;
    font-size: clamp(1.06rem, 1.2vw, 1.24rem);
    line-height: 1.65;
}

.hero-btn,
.hero-secondary-btn,
.way-card-btn,
.text-cta,
.contact-form .submit-btn,
.submit-btn {
    font-size: 0.8rem !important;
    letter-spacing: 0.18em !important;
}

.voice-text,
.agenda-item-text,
.intro-text:not(.intro-signoff),
.editorial-p,
.founder-side-text,
.services-hero-text,
.empowerment-p,
.conversion-copy p,
.conversion-point p,
.niche-system-grid p,
.testimonial-text,
.way-card-text,
.contact-p,
.services-process-list p,
.inspiration-list,
.about-statement-text + p {
    font-size: clamp(1.05rem, 0.98vw, 1.1rem) !important;
    line-height: 1.85 !important;
    color: #2d2b27 !important;
    opacity: 0.94 !important;
}

.story-list li,
.way-feature-list li,
.ways-card p,
.ways-card span,
.review-card span,
.site-footer p {
    font-size: clamp(0.98rem, 0.9vw, 1.02rem) !important;
    line-height: 1.7 !important;
}

.ways-card p,
.ways-card span,
.way-feature-list li {
    opacity: 0.88 !important;
}

.review-card p {
    font-size: clamp(1.25rem, 1.28vw, 1.42rem);
    line-height: 1.55;
}

.process-item h4,
.niche-system-grid h4 {
    font-size: clamp(1.42rem, 1.5vw, 1.65rem) !important;
}

.services-process-list p {
    max-width: 62ch;
}

.testimonial-quote {
    font-size: clamp(1.85rem, 2vw, 2.15rem);
    line-height: 1.45;
}

.section-kicker,
.agenda-subtitle,
.services-subtitle,
.testimonial-label,
.statement-subtitle,
.inspiration-title,
.contact-hero-subtitle,
.form-group label,
.contact-form label,
.ways-card strong {
    font-size: clamp(0.9rem, 0.84vw, 0.96rem) !important;
    line-height: 1.5 !important;
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
}

.contact-hero-narrative p {
    font-size: clamp(1.12rem, 1.18vw, 1.28rem) !important;
    line-height: 1.85 !important;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.75;
    }

    .voice-text,
    .agenda-item-text,
    .intro-text:not(.intro-signoff),
    .editorial-p,
    .founder-side-text,
    .services-hero-text,
    .empowerment-p,
    .conversion-copy p,
    .conversion-point p,
    .niche-system-grid p,
    .testimonial-text,
    .way-card-text,
    .contact-p,
    .services-process-list p {
        font-size: 1rem !important;
        line-height: 1.78 !important;
    }

    .typing-statement {
        flex-wrap: wrap;
        justify-content: flex-start;
        min-height: 24vh;
        margin-bottom: 3rem;
        font-size: clamp(2.3rem, 9vw, 3rem);
        text-align: left;
        white-space: normal;
    }

    .typing-word {
        min-width: 7.5ch;
    }

    .testimonial-wrapper {
        padding: 2.25rem 1.5rem;
    }
}

.site-footer p,
.site-footer .designer-credit {
    color: #ffffff !important;
}

.site-footer p {
    opacity: 0.78 !important;
}

.site-footer .designer-credit {
    opacity: 0.56 !important;
}

.portfolio-hover-zoom {
    transition: transform 0.6s ease;
}

.portfolio-hover-zoom:hover {
    transform: scale(1.05);
}

.portfolio-visual-frame {
    transition: transform 0.4s ease;
}

.portfolio-visual-frame:hover {
    transform: translateY(-5px);
}
