/* FoxBox Shared Styles */

:root {
    --cream: #f5f0e8;
    --cream-dark: #ebe4d8;
    --olive: #7d7a65;
    --olive-light: #9a9783;
    --warm-grey: #c4c0b8;
    --camel: #c4a77d;
    --camel-light: #d4be9a;
    --charcoal: #2c2c2c;
    --charcoal-soft: #4a4a4a;
    --white: #fdfbf7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 17px;
}

h1,
h2,
h3,
h4 {
    font-family: "Fraunces", serif;
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: inherit;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

nav.scrolled {
    border-bottom-color: var(--warm-grey);
}

.logo {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--charcoal-soft);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--charcoal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    background: #ccb28d;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--olive);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
}

.btn-light {
    background: var(--cream);
    color: var(--charcoal);
}

.btn-light:hover {
    background: var(--white);
}

/* Section base styles */
section {
    padding: 6rem 2rem;
}

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

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

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--olive);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-illustration {
    max-width: 320px;
    margin-bottom: 3rem;
}

.hero-illustration img {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.15rem;
    color: var(--charcoal-soft);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

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

/* Page Headers */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: var(--cream);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--charcoal-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy {
    background: var(--white);
}

.philosophy-content {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.philosophy p {
    font-size: 1.15rem;
    color: var(--charcoal-soft);
    margin-bottom: 1.5rem;
}

.philosophy-tagline {
    font-family: "Fraunces", serif;
    font-style: italic;
    color: var(--olive) !important;
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
}

/* Problem Section */
.problem {
    background: var(--white);
}

.problem-content {
    max-width: 680px;
}

.problem p {
    font-size: 1.1rem;
    color: var(--charcoal-soft);
    margin-bottom: 1.5rem;
}

.problem p:last-of-type {
    color: var(--charcoal);
    font-family: "Fraunces", serif;
    font-size: 1.25rem;
    font-style: italic;
}

/* Offerings Section */
.offerings {
    background: var(--cream);
}

.offerings-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offerings-header p:not(.section-label) {
    font-size: 1.1rem;
    color: var(--charcoal-soft);
    max-width: 600px;
    margin: 0 auto;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.offering-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-card:nth-child(1) .offering-icon {
    background: var(--olive);
}
.offering-card:nth-child(2) .offering-icon {
    background: var(--warm-grey);
}
.offering-card:nth-child(3) .offering-icon {
    background: var(--camel);
}

.offering-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 1.5;
    fill: none;
}

.offering-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.offering-card p {
    color: var(--charcoal-soft);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-link {
    font-size: 0.95rem;
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.card-link:hover {
    color: var(--charcoal);
}

/* Featured Workshops */
.featured-workshops {
    background: var(--white);
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.workshop-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.workshop-preview-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.workshop-preview-card:hover {
    transform: translateY(-4px);
}

.workshop-preview-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
}

.workshop-preview-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.workshop-preview-content p {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.workshop-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--olive);
}

/* How It Works Section */
.how-it-works {
    background: var(--cream-dark);
}

.how-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.how-header-text {
    max-width: 500px;
}

.how-header p:not(.section-label) {
    color: var(--charcoal-soft);
    font-size: 1.05rem;
}

.steps-container {
    display: flex;
    gap: 5.5rem;
    align-items: center;
}

.step-illustration {
    flex: 0 0 360px;
    border-radius: 16px;
    overflow: hidden;
}

.step-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.step-card {
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
    cursor: default;
}

.step-card:nth-child(1) {
    background: var(--olive);
    color: var(--white);
}
.step-card:nth-child(2) {
    background: var(--warm-grey);
}
.step-card:nth-child(3) {
    background: var(--camel);
}

.step-card:hover {
    transform: translateX(8px);
}

.step-number {
    font-family: "Fraunces", serif;
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.6;
    line-height: 1;
}

.step-card:nth-child(1) .step-number {
    opacity: 0.4;
}

.step-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.step-card:nth-child(1) .step-content p {
    opacity: 0.7;
}

.step-arrow {
    margin-left: auto;
    opacity: 0.5;
}

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

/* Why Section */
.why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-check {
    width: 24px;
    height: 24px;
    background: var(--camel-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-check svg {
    width: 14px;
    height: 14px;
    stroke: var(--charcoal);
    stroke-width: 2;
}

.why-list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.why-list span {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
}

.why-image {
    background: var(--cream);
    border-radius: 20px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-light);
    font-size: 0.9rem;
}

/* About Preview Section */
.about-preview {
    background: var(--cream);
}

.about-preview-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview-photo {
    width: 280px;
    height: 340px;
    background: var(--cream-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-light);
    font-size: 0.9rem;
}

.about-preview-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-preview-content p {
    color: var(--charcoal-soft);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    max-width: 500px;
}

.about-tagline {
    font-family: "Fraunces", serif;
    font-style: italic;
    color: var(--olive) !important;
    font-size: 1.15rem !important;
    margin-bottom: 1.5rem !important;
}

/* Final CTA Section */
.final-cta {
    background: var(--charcoal);
    color: var(--cream);
    text-align: center;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--cream);
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.75;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.final-cta .btn {
    background: var(--camel);
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.final-cta .btn:hover {
    background: var(--camel-light);
}

.final-cta-email {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.6;
}

.final-cta-email a {
    color: var(--cream);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    color: var(--cream);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.95rem;
}

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

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.footer-col a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: opacity 0.2s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* Workshops Page Specific */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.workshop-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: block;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.workshop-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.workshop-card-content {
    padding: 1.75rem;
}

.workshop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.workshop-card p {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.workshop-card .workshop-meta {
    margin-bottom: 1rem;
}

.workshop-outcomes {
    font-size: 0.85rem;
    color: var(--olive);
}

.workshop-outcomes strong {
    font-weight: 500;
}

/* Workshop Card Enhanced */
.workshop-recipe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-dark);
}

.workshop-recipe span {
    font-size: 0.85rem;
    color: var(--charcoal-soft);
}

.workshop-outcomes-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.outcome-group {
    font-size: 0.85rem;
}

.outcome-group strong {
    color: var(--olive);
    font-weight: 500;
    display: block;
    margin-bottom: 0.15rem;
}

.outcome-group span {
    color: var(--charcoal-soft);
}

/* Filter Section Enhanced */
.filter-section {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-label {
    font-size: 0.95rem;
    color: var(--charcoal-soft);
    margin-bottom: 1rem;
}

/* Recipe Section */
.recipe-section {
    background: var(--cream-dark);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.recipe-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
}

.recipe-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.recipe-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.recipe-item p {
    font-size: 0.9rem;
    color: var(--charcoal-soft);
}

/* Workshop Category Filters */
.workshop-filters {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 1.5px solid var(--warm-grey);
    background: transparent;
    border-radius: 100px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    color: var(--charcoal-soft);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--cream);
}

/* Bespoke CTA Card */
.bespoke-card {
    background: var(--cream-dark);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 340px;
}

.bespoke-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bespoke-card p {
    color: var(--charcoal-soft);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

/* Workshop Browser Layout */
.workshop-browser {
    background: var(--cream);
    padding: 2rem 2rem 6rem;
}

.browser-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filter Sidebar */
.filter-sidebar {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-dark);
}

.filter-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--olive);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
}

.clear-filters:hover {
    color: var(--charcoal);
}

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

.filter-group h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--olive);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

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

/* Custom Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.filter-checkbox:hover {
    background: var(--cream);
}

.filter-checkbox input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--warm-grey);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-checkbox input:checked + .checkbox-custom {
    background: var(--olive);
    border-color: var(--olive);
}

.checkbox-custom::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.filter-checkbox input:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label {
    font-size: 0.95rem;
    color: var(--charcoal-soft);
}

.filter-checkbox input:checked ~ .checkbox-label {
    color: var(--charcoal);
    font-weight: 500;
}

/* Results Area */
.workshop-results {
    min-height: 600px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.results-count {
    font-size: 0.95rem;
    color: var(--charcoal-soft);
}

.results-count span {
    font-weight: 500;
    color: var(--charcoal);
}

.filter-toggle-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1.5px solid var(--warm-grey);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--charcoal);
}

/* Active Filters Pills */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    min-height: 32px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--olive);
    color: var(--white);
    padding: 0.4rem 0.75rem;
    border-radius: 100px;
    font-size: 0.85rem;
}

.filter-pill button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.filter-pill button:hover {
    opacity: 1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.no-results p {
    color: var(--charcoal-soft);
    margin-bottom: 1.5rem;
}

.no-results a {
    color: var(--olive);
}

/* Mobile Filter Styles */
.filter-apply-mobile {
    display: none;
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive Filter Layout */
@media (max-width: 900px) {
    .browser-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 200;
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

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

    .filter-toggle-mobile {
        display: flex;
    }

    .filter-apply-mobile {
        display: block;
    }

    .filter-header {
        padding-top: 0.5rem;
    }
}

/* Workshop Detail Page */
.workshop-hero {
    padding: 10rem 2rem 4rem;
    background: var(--cream);
}

.workshop-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.workshop-hero-content .workshop-badge {
    position: static;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.workshop-hero-content h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    margin-bottom: 1rem;
}

.workshop-hero-content > p {
    font-size: 1.15rem;
    color: var(--charcoal-soft);
    margin-bottom: 2rem;
}

/* Workshop Recipe Card */
.workshop-hero-recipe {
    margin-bottom: 2rem;
}

.recipe-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--cream-dark);
}

.recipe-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--olive);
    margin-bottom: 1rem;
}

.recipe-card ul {
    list-style: none;
}

.recipe-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--cream);
}

.recipe-card li:last-child {
    border-bottom: none;
}

.recipe-card li span:first-child {
    flex-shrink: 0;
}

.recipe-card li strong {
    font-weight: 500;
}

/* Outcomes Split */
.outcomes-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.outcomes-box {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.75rem;
}

.outcomes-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.outcomes-intro {
    font-size: 0.9rem;
    color: var(--olive);
    margin-bottom: 1rem;
}

.outcomes-box .outcomes-list {
    margin: 0;
}

.outcomes-box .outcomes-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.workshop-hero-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.workshop-hero-meta div {
    display: flex;
    flex-direction: column;
}

.workshop-hero-meta span:first-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--olive);
    margin-bottom: 0.25rem;
}

.workshop-hero-meta span:last-child {
    font-size: 1.1rem;
    font-weight: 500;
}

.workshop-hero-image {
    height: 400px;
    background: var(--olive);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

/* Workshop Details Sections */
.workshop-details {
    background: var(--white);
}

.workshop-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.workshop-main h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.workshop-main h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
}

.workshop-main p {
    color: var(--charcoal-soft);
    margin-bottom: 1rem;
}

.outcomes-list {
    list-style: none;
    margin: 1.5rem 0;
}

.outcomes-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--charcoal-soft);
}

.outcomes-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--camel);
}

/* Workshop Sidebar */
.workshop-sidebar {
    position: sticky;
    top: 120px;
}

.whats-included {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.whats-included h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.included-list {
    list-style: none;
}

.included-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li::before {
    content: "✓";
    color: var(--olive);
    font-weight: bold;
}

.sidebar-cta {
    background: var(--charcoal);
    color: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.sidebar-cta h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
}

.sidebar-cta p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.sidebar-cta .btn {
    width: 100%;
}

/* Add-ons Section */
.addons {
    background: var(--cream);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.addon-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
}

.addon-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.addon-card p {
    font-size: 0.9rem;
    color: var(--charcoal-soft);
}

/* About Page */
.about-full {
    background: var(--white);
}

.about-intro {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-photo-large {
    width: 350px;
    height: 420px;
    background: var(--cream);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-light);
    position: sticky;
    top: 120px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.about-text blockquote {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--olive);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--camel);
}

.credentials {
    background: var(--cream);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.credentials h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--olive);
}

.credentials ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.credentials li {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--charcoal-soft);
    margin-bottom: 2rem;
    max-width: 450px;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--olive);
    stroke-width: 1.5;
    fill: none;
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-method p,
.contact-method a {
    color: var(--charcoal-soft);
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-method a:hover {
    color: var(--charcoal);
}

/* Contact Form */
.contact-form {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form h3 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--warm-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease;
}

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

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

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
}

/* How It Works Page Specific */
.process-detailed {
    background: var(--white);
}

.process-step-large {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.process-step-large:last-child {
    border-bottom: none;
}

.process-step-number {
    font-family: "Fraunces", serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--camel);
    line-height: 1;
}

.process-step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-step-content p {
    color: var(--charcoal-soft);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

/* What's in the Box Section */
.whats-in-box {
    background: var(--cream-dark);
}

.box-contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.box-content-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.box-content-icon {
    width: 64px;
    height: 64px;
    background: var(--cream);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-content-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--olive);
    stroke-width: 1.5;
    fill: none;
}

.box-content-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.box-content-item p {
    font-size: 0.9rem;
    color: var(--charcoal-soft);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-illustration,
.hero h1,
.hero p,
.hero-cta {
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    animation-delay: 0.1s;
}
.hero p {
    animation-delay: 0.2s;
}
.hero-cta {
    animation-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-illustration {
        width: 100%;
        flex: none;
    }

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

    .why-image {
        order: -1;
        height: 300px;
    }

    .about-preview-container,
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-preview-photo,
    .about-photo-large {
        margin: 0 auto;
    }

    .about-preview-content p,
    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-text blockquote {
        text-align: left;
    }

    .workshop-hero-container {
        grid-template-columns: 1fr;
    }

    .workshop-hero-image {
        height: 300px;
    }

    .workshop-details-grid {
        grid-template-columns: 1fr;
    }

    .workshop-sidebar {
        position: static;
    }

    .outcomes-split {
        grid-template-columns: 1fr;
    }

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

    .process-step-large {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .process-step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .nav-links a:not(.btn) {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-illustration {
        max-width: 260px;
    }

    .step-card {
        padding: 1.5rem;
    }

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