/* ==========================================================================
   SUNDAY HOUSE INTERIOR DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --bg-color: #f4f3ef;
    --card-bg: #ffffff;
    --text-primary: #1c1c1a;
    --text-body: #3c3c3a;
    --text-muted: #7e7d79;
    --accent-color: #bfa38f;
    --accent-hover: #a68c78;
    --dark-section-bg: #1c1c1a;
    --dark-section-text: #eae8e3;
    --border-light: rgba(28, 28, 26, 0.08);
    --border-dark: rgba(234, 232, 227, 0.15);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-quick: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-color);
    color: var(--text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* --- Typography Helpers --- */
em {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
}

/* --- Layout Containers --- */
.main-content {
    flex: 1;
    position: relative;
}

/* --- SPA View State --- */
.view-section {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border-radius: 0;
    text-align: center;
}

.btn-outline {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

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

.btn-dark:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
}

.btn-block {
    display: block;
    width: 100%;
}

.text-btn {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.text-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-primary);
    transform: scaleX(0.4);
    transform-origin: bottom left;
    transition: var(--transition-smooth);
}

.text-btn:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
   COMPONENT: SITE HEADER / NAVIGATION
   ========================================================================== */
.site-header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-quick);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--text-primary);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    opacity: 0.7;
    position: relative;
    padding: 0.2rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-primary);
    transition: var(--transition-quick);
}

/* ==========================================================================
   VIEW: HOME
   ========================================================================== */

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    transition: transform 10s ease-out;
}

.hero-banner:hover .hero-img {
    transform: scale(1.05);
}

/* Slogan */
.slogan-section {
    max-width: 800px;
    margin: 6rem auto;
    text-align: center;
    padding: 0 2rem;
}

.slogan-sub {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1.5rem;
}

.slogan-text {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.slogan-desc-paragraph {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    text-align: justify;
    text-align-last: center;
}

.highlight-location {
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
}

/* Dark Grid CTA */
.cta-dark-section {
    background-color: var(--dark-section-bg);
    padding: 5rem 2rem;
    width: 100%;
}

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

.cta-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-card-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.cta-card-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.cta-card:hover .cta-card-img-wrapper img {
    transform: scale(1.04);
}

.cta-card-link {
    color: var(--dark-section-text);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.cta-card-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.cta-card-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Shop Favorites / Process Section */
.shop-favorites-section {
    max-width: 1200px;
    margin: 7rem auto;
    padding: 0 2rem;
    text-align: center;
}

.section-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 4rem;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.process-step {
    padding: 2.5rem 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(28,28,26,0.03);
    border-color: var(--accent-color);
}

.process-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    display: block;
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.process-step-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Meet Founder */
.meet-luke-section {
    padding: 8rem 2rem;
    background-color: #fcfbfa;
}

.luke-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.luke-image-col {
    width: 100%;
    height: 580px;
    overflow: hidden;
}

.luke-img {
    width: 100%;
    height: 100%;
}

.luke-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.meet-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.1;
}

.founder-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.luke-bio {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* Newsletter & Instagram Feed */
.newsletter-insta-section {
    padding: 7rem 2rem;
    border-top: 1px solid var(--border-light);
}

.newsletter-insta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
}

.newsletter-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.block-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    display: block;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.newsletter-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--text-primary);
    background: none;
    outline: none;
    font-size: 0.85rem;
    font-family: inherit;
    transition: var(--transition-quick);
}

.newsletter-input:focus {
    border-bottom-color: var(--accent-color);
}

.insta-block {
    display: flex;
    flex-direction: column;
}

.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.8rem;
}

.insta-handle {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.insta-handle:hover {
    color: var(--accent-color);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.6rem;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.insta-item:hover img {
    transform: scale(1.1);
}

/* ==========================================================================
   VIEW: SERVICES
   ========================================================================== */
.page-title-section {
    text-align: center;
    padding: 5rem 2rem 3rem 2rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-top: 0.8rem;
}

.services-rows-container {
    max-width: 1200px;
    margin: 0 auto 8rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.services-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 5rem;
    gap: 4rem;
    align-items: center;
}

.services-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.services-row:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.services-row:nth-child(even) .service-img-col {
    order: 2;
}

.service-img-col {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.service-img-col img {
    width: 100%;
    height: 100%;
}

.service-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.service-investment {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-top: -0.5rem;
    display: block;
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
}

.service-inclusions {
    margin: 0.5rem 0 1.2rem 0;
    width: 100%;
}

.inclusions-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.inclusions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.5rem;
}

.inclusions-list li {
    font-size: 0.8rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1rem;
}

.inclusions-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* ==========================================================================
   VIEW: WORK WITH US (START HERE)
   ========================================================================== */
.start-here-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.start-here-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.start-here-img-col {
    width: 100%;
    height: 650px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.start-here-img-col img {
    width: 100%;
    height: 100%;
}

.start-here-text-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.studio-info-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.studio-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-value {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-primary);
}

/* FAQ Styling */
.faq-section-title-small {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.8rem;
    margin-top: 1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-answer {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.ways-to-work-header {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* Free Download / Ebook Section */
.free-download-banner {
    background-color: #fbfaf8;
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 6rem;
}

.download-container {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.ebook-mockup {
    background-color: var(--card-bg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    aspect-ratio: 0.72;
    position: relative;
    overflow: hidden;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ebook-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    mix-blend-mode: multiply;
}

.ebook-badge {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.8rem;
    z-index: 2;
}

.ebook-title-overlay {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    z-index: 2;
}

.download-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.download-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
}

.download-subtext {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ==========================================================================
   VIEW: LEARN (EDUCATION)
   ========================================================================== */
.tutorials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.tutorial-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.tutorial-video-thumbnail {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.tutorial-video-thumbnail img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.tutorial-card:hover .tutorial-video-thumbnail img {
    transform: scale(1.03);
}

.play-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    z-index: 2;
}

.play-icon {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}

.tutorial-card:hover .play-btn {
    background-color: var(--text-primary);
    color: var(--bg-color);
    transform: translate(-50%, -50%) scale(1.1);
}

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

.tutorial-tag {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--accent-color);
}

.tutorial-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
}

/* Coaching Banner */
.coaching-section {
    background-color: #f7f6f2;
    padding: 6rem 2rem;
    border-top: 1px solid var(--border-light);
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.coaching-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.coaching-headline {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.25;
}

.coaching-paragraph {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-body);
}

.coaching-img-col {
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.coaching-img-col img {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   VIEW: BLOG LIST & SIDEBAR
   ========================================================================== */
.blog-layout-container {
    max-width: 1250px;
    margin: 0 auto 8rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 5rem;
}

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

.blog-post-card {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeIn 0.4s ease forwards;
}

.blog-post-card-img {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.blog-post-card-img img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.blog-post-card:hover .blog-post-card-img img {
    transform: scale(1.04);
}

.blog-post-meta {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    margin-bottom: 0.4rem;
    display: block;
}

.blog-post-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.blog-post-card-excerpt {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Sidebar Categories */
.blog-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

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

.category-btn {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-align: left;
    transition: var(--transition-quick);
}

.category-btn:hover,
.category-btn.active {
    color: var(--text-primary);
    padding-left: 5px;
}

/* Animation keyframe */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--dark-section-bg);
    color: var(--dark-section-text);
    padding: 6rem 2rem 5rem 2rem;
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.6fr 0.8fr 0.6fr;
    gap: 5rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: #ffffff;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.footer-links-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.footer-links-grid a {
    color: var(--dark-section-text);
    opacity: 0.6;
}

.footer-links-grid a:hover {
    opacity: 1;
    color: #ffffff;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin: 1.2rem 0;
}

.social-icons a {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: var(--transition-quick);
}

.social-icons a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-icons svg {
    width: 100%;
    height: 100%;
}

.copyright {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    opacity: 0.3;
    margin-top: 2rem;
}

/* ==========================================================================
   MODAL SYSTEMS (LIGHTBOXES)
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 26, 0.85);
    backdrop-filter: blur(4px);
}

.modal-wrapper {
    background-color: var(--bg-color);
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 1001;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal.open .modal-wrapper {
    transform: translateY(0);
}

.modal-video-wrapper {
    max-width: 850px;
    padding: 2.5rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 0.5;
    color: var(--text-primary);
    opacity: 0.6;
    transition: var(--transition-quick);
}

.modal-close:hover {
    opacity: 1;
}

.modal-headline {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Forms in Modal */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border-light);
    background-color: var(--card-bg);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-color);
}

/* Video Container placeholder */
.modal-video-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.video-container-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--dark-section-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-section-text);
}

.video-placeholder-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    opacity: 0.65;
}

.video-icon-large {
    width: 48px;
    height: 48px;
}

/* Success modal specific */
.success-checkmark {
    font-size: 3.5rem;
    color: #606c38;
    margin-bottom: 1.5rem;
}

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

.modal-close-btn {
    margin-top: 1rem;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-banner {
        height: 500px;
    }
    
    .cta-grid {
        gap: 1.5rem;
    }
    
    .cta-card-img-wrapper {
        height: 300px;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .luke-container {
        gap: 3rem;
    }
    
    .newsletter-insta-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .blog-layout-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .category-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .category-btn {
        background-color: rgba(28,28,26,0.04);
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }
    
    .category-btn.active {
        background-color: var(--text-primary);
        color: var(--bg-color);
        padding-left: 1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 101;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-color);
        border-left: 1px solid var(--border-light);
        padding: 6rem 2rem 2rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -15px 0 35px rgba(0,0,0,0.03);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        display: block;
    }
    
    .slogan-text {
        font-size: 2.1rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-card-img-wrapper {
        height: 400px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .meet-luke-section {
        padding: 5rem 1.5rem;
    }
    
    .luke-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .luke-image-col {
        height: 380px;
    }
    
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-row {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding-bottom: 4rem;
    }
    
    .service-img-col {
        height: 320px;
        order: 1 !important;
    }
    
    .service-text-col {
        order: 2 !important;
    }
    
    .inclusions-list {
        grid-template-columns: 1fr;
    }
    
    .start-here-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .start-here-img-col {
        height: 350px;
        position: static;
    }
    
    .download-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ebook-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .tutorials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .coaching-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .coaching-img-col {
        height: 300px;
        order: 1;
    }
    
    .coaching-text-col {
        order: 2;
    }
    
    .blog-main-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}
