/* ============================================
   ATOMIC - Editorial Design System
   Inspired by Vogue, NYT Magazine, Kinfolk
   ============================================ */

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

:root {
    /* Colors */
    --color-bg: #FDFBF7;
    --color-bg-alt: #F5F1EA;
    --color-text: #1A1A1A;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-accent: #8B4513;
    --color-accent-light: #A0522D;
    --color-border: #E5E0D5;
    --color-border-dark: #1A1A1A;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

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

    /* Layout */
    --max-width: 1400px;
    --content-width: 800px;

    /* Transitions */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

::selection {
    background: var(--color-text);
    color: var(--color-bg);
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 300;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 300;
}

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

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: var(--content-width);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: var(--color-bg);
    transition: all var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav__menu {
    display: flex;
    gap: var(--space-md);
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--duration-fast) var(--ease-out);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-normal) var(--ease-in-out);
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-text);
}

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

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: all var(--duration-fast) var(--ease-out);
}

@media (max-width: 968px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transition: right var(--duration-slow) var(--ease-in-out);
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__link {
        font-size: 1.5rem;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero__text {
    max-width: 600px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-accent);
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__title em {
    font-style: italic;
    font-weight: 400;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__book {
    position: relative;
    width: 300px;
    height: 420px;
}

.hero__book-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-text) 0%, #333 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-lg);
    text-align: center;
    color: var(--color-bg);
    position: relative;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    transition: transform var(--duration-slow) var(--ease-out);
}

.hero__book:hover .hero__book-cover {
    transform: translateY(-10px) rotate(-2deg);
}

.hero__book-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.hero__book-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.hero__book-line {
    width: 40px;
    height: 1px;
    background: var(--color-bg);
    margin: var(--space-md) 0;
    opacity: 0.5;
}

@media (max-width: 968px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__subtitle {
        margin: 0 auto var(--space-lg);
    }

    .hero__visual {
        order: -1;
        margin-bottom: var(--space-lg);
    }

    .hero__book {
        width: 220px;
        height: 310px;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.25rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    background: var(--color-accent);
}

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

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

.btn--underline {
    background: none;
    padding: 0;
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid currentColor;
    letter-spacing: 0.05em;
}

.btn--underline:hover {
    color: var(--color-accent);
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-xl) 0;
}

.section--large {
    padding: var(--space-2xl) 0;
}

.section--alt {
    background: var(--color-bg-alt);
}

.section__header {
    margin-bottom: var(--space-xl);
}

.section__header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__divider {
    width: 60px;
    height: 1px;
    background: var(--color-text);
    margin: var(--space-md) 0;
}

.section__header--center .section__divider {
    margin: var(--space-md) auto;
}

/* ============================================
   EDITORIAL GRID
   ============================================ */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.editorial-grid__item {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--duration-slow) var(--ease-out);
}

.editorial-grid__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.editorial-grid__item--span-6 {
    grid-column: span 6;
}

.editorial-grid__item--span-4 {
    grid-column: span 4;
}

.editorial-grid__item--span-8 {
    grid-column: span 8;
}

.editorial-grid__item--span-12 {
    grid-column: span 12;
}

@media (max-width: 768px) {
    .editorial-grid__item--span-6,
    .editorial-grid__item--span-4,
    .editorial-grid__item--span-8 {
        grid-column: span 12;
    }
}

/* ============================================
   FEATURE BLOCKS
   ============================================ */
.feature {
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
}

.feature:last-child {
    border-bottom: 1px solid var(--color-border);
}

.feature__inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.feature__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1;
}

.feature__content h3 {
    margin-bottom: var(--space-sm);
}

.feature__content p {
    max-width: 500px;
}

@media (max-width: 768px) {
    .feature__inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature__number {
        font-size: 2.5rem;
    }
}

/* ============================================
   STATS
   ============================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat {
    text-align: center;
    padding: var(--space-md);
}

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

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

/* ============================================
   CHAPTER LIST
   ============================================ */
.chapter-list {
    list-style: none;
    counter-reset: chapter;
}

.chapter-item {
    border-bottom: 1px solid var(--color-border);
}

.chapter-link {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-md) 0;
    transition: all var(--duration-fast) var(--ease-out);
}

.chapter-link:hover {
    padding-left: var(--space-md);
    background: var(--color-bg-alt);
}

.chapter-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

.chapter-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.chapter-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.chapter-arrow {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--duration-fast) var(--ease-out);
}

.chapter-link:hover .chapter-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .chapter-link {
        grid-template-columns: 50px 1fr;
    }

    .chapter-arrow {
        display: none;
    }
}

/* ============================================
   CARDS (Editorial Style)
   ============================================ */
.card {
    position: relative;
}

.card__image {
    aspect-ratio: 4/5;
    background: var(--color-bg-alt);
    margin-bottom: var(--space-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__image-placeholder {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 300;
    color: var(--color-border);
}

.card__category {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    transition: color var(--duration-fast) var(--ease-out);
}

.card:hover .card__title {
    color: var(--color-accent);
}

.card__meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   TECHNIQUE GRID
   ============================================ */
.technique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
}

.technique {
    background: var(--color-bg);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.technique:hover {
    background: var(--color-bg-alt);
}

.technique__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-border-dark);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.technique__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.technique__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.technique__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.technique__tag {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 6px 12px;
    border: 1px solid var(--color-border);
}

@media (max-width: 968px) {
    .technique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .technique-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ACCORDION (FAQ)
   ============================================ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion__item {
    border-bottom: 1px solid var(--color-border);
}

.accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.accordion__icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--duration-normal) var(--ease-out);
}

.accordion__item--open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out);
}

.accordion__item--open .accordion__content {
    max-height: 400px;
}

.accordion__body {
    padding-bottom: var(--space-md);
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    position: relative;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 300;
    color: var(--color-border);
    position: absolute;
    top: -20px;
    left: 30px;
    line-height: 1;
}

.testimonial__text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    background: var(--color-text);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.testimonial__name {
    font-weight: 500;
    font-size: 0.875rem;
}

.testimonial__role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
}

.contact-info__title {
    margin-bottom: var(--space-md);
}

.contact-info__text {
    margin-bottom: var(--space-lg);
}

.contact-info__list {
    list-style: none;
}

.contact-info__item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.contact-info__label {
    font-weight: 500;
    color: var(--color-text);
    min-width: 100px;
}

.contact-form {
    padding: var(--space-xl);
    background: var(--color-bg-alt);
}

.form-group {
    margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    transition: border-color var(--duration-fast) var(--ease-out);
}

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

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    text-align: center;
    padding: var(--space-2xl) var(--space-md);
    background: var(--color-text);
    color: var(--color-bg);
}

.cta__title {
    color: var(--color-bg);
    margin-bottom: var(--space-md);
}

.cta__text {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
}

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

.cta .btn--primary:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    display: block;
}

.footer__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.footer__title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-xs);
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    transition: color var(--duration-fast) var(--ease-out);
}

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

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer__copy {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer__brand {
        grid-column: span 2;
    }
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: calc(var(--space-2xl) + 60px) 0 var(--space-xl);
    border-bottom: 1px solid var(--color-border);
}

.page-hero__breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.page-hero__breadcrumb a {
    color: var(--color-text-muted);
    transition: color var(--duration-fast) var(--ease-out);
}

.page-hero__breadcrumb a:hover {
    color: var(--color-text);
}

.page-hero__breadcrumb span {
    margin: 0 var(--space-xs);
}

.page-hero__title {
    max-width: 800px;
}

.page-hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin-top: var(--space-md);
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

.split__visual {
    position: relative;
}

.split__image {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.split__content {
    padding: var(--space-lg) 0;
}

@media (max-width: 768px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split--reverse {
        direction: ltr;
    }
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download-box {
    text-align: center;
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    max-width: 600px;
    margin: 0 auto;
}

.download-box__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border: 1px solid var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-box__icon svg {
    width: 32px;
    height: 32px;
}

.download-box__title {
    margin-bottom: var(--space-sm);
}

.download-box__text {
    margin-bottom: var(--space-lg);
}

.download-box__info {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-bg-alt);
}

.download-box__info-item {
    text-align: center;
}

.download-box__info-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.download-box__info-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--duration-slow) var(--ease-out);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Line reveal animation */
.line-reveal {
    position: relative;
    overflow: hidden;
}

.line-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    transform: translateX(-101%);
    transition: transform var(--duration-slow) var(--ease-in-out);
}

.line-reveal.is-visible::after {
    transform: translateX(101%);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article {
    margin-bottom: var(--space-xl);
}

.article h2 {
    margin-bottom: var(--space-md);
}

.article p {
    font-size: 1.0625rem;
    line-height: 1.9;
}

/* ============================================
   INGREDIENT LIST
   ============================================ */
.ingredient-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.ingredient-list li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
    color: var(--color-text-light);
}

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

.ingredient-list li strong {
    color: var(--color-text);
}

/* ============================================
   TECHNIQUES DETAILED
   ============================================ */
.techniques-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.technique-detail {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.technique-detail:last-child {
    border-bottom: none;
}

.technique-detail__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1;
}

.technique-detail__content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.technique-detail__content p {
    margin-bottom: var(--space-md);
}

.technique-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.technique-detail__tags span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 6px 12px;
    border: 1px solid var(--color-border);
}

@media (max-width: 600px) {
    .technique-detail {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .technique-detail__number {
        font-size: 1.5rem;
    }
}

/* ============================================
   RECIPE GRID & CARDS
   ============================================ */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.recipe-card {
    border: 1px solid var(--color-border);
    padding: var(--space-lg);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.recipe-card:hover {
    border-color: var(--color-text);
}

.recipe-card__badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.recipe-card__badge--hard {
    color: var(--color-text);
}

.recipe-card__content {
    padding-top: var(--space-md);
}

.recipe-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.recipe-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.recipe-card__meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

@media (max-width: 1100px) {
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial__footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial__name {
    font-weight: 500;
    font-size: 0.9375rem;
    font-style: normal;
    display: block;
}

.testimonial__role {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    display: block;
}

@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: var(--space-lg);
    }

    .testimonial__text {
        font-size: 1.25rem;
    }
}

/* ============================================
   CONTACT LIST (Updated)
   ============================================ */
.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-info p {
    margin-bottom: var(--space-lg);
}

.contact-list {
    list-style: none;
    margin: var(--space-lg) 0;
}

.contact-list__item {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-list__item:first-child {
    border-top: 1px solid var(--color-border);
}

.contact-list__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-list__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
}

.contact-note {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.contact-note h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.contact-note p {
    font-size: 0.9375rem;
    margin: 0;
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

/* ============================================
   AUTHOR AVATAR
   ============================================ */
.author-avatar {
    width: 200px;
    height: 200px;
    background: var(--color-text);
    color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.author-avatar span {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 300;
}

/* ============================================
   BUTTON MODIFIERS
   ============================================ */
.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   ACCORDION ICON (Updated)
   ============================================ */
.accordion__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--color-text);
    transition: transform var(--duration-normal) var(--ease-out);
}

.accordion__icon::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.accordion__icon::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.accordion__item--open .accordion__icon::after {
    transform: rotate(90deg);
}

.accordion__header span:first-child {
    flex: 1;
}
