:root {
    --bg-cream: #f5f3ef;
    --text-dark: #2a2a2a;
    --text-light: #666666;
    --gold-start: #b8924a;
    --gold-end: #e5c27a;
    --white: #ffffff;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 40px rgba(42, 42, 42, 0.05);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(184, 146, 74, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(184, 146, 74, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(245, 243, 239, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo {
    font-size: 2rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--gold-start);
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-start);
    border-radius: 1px;
}

.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    aspect-ratio: 4 / 5;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.how-it-works-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hiw-visual {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 5;
}

.hiw-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hiw-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-start);
    opacity: 0.8;
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.what-is {
    background-color: var(--white);
}

.what-is-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-is-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
}

.feature-list h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.feature-list p {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold-start);
    box-shadow: var(--shadow-soft);
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.benefit-item p {
    color: var(--text-light);
}

 .audience {
     background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
     color: var(--text-dark);
 }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audience-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 40px;
    background: var(--white);
    border: 1px solid rgba(184, 146, 74, 0.2);
    box-shadow: var(--shadow-soft);
}

.audience-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.audience-card p {
    color: var(--text-light);
}

.final-cta {
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--white), var(--bg-cream));
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(184, 146, 74, 0.1);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    padding: 40px 0;
    background: var(--white);
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-copy {
    color: var(--text-light);
    font-size: 0.9rem;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.floating-mockup {
    width: 280px;
    height: 520px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 8px solid #eae6df;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

.mockup-screen {
    padding: 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-photo {
    flex: 1;
    background: url('selfie.png') center/cover no-repeat;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.mockup-text {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.mockup-btn {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-top: auto;
    font-weight: 500;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.audience-card.glass-card {
    background: var(--white);
}

.contact {
    background-color: var(--bg-cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-start);
    box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    align-self: flex-start;
}

.form-feedback {
    min-height: 24px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4 / 3;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-container,
    .what-is-container,
    .contact-container,
    .how-it-works-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hiw-step {
        text-align: left;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .audience-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        display: none;
    }

    .floating-mockup {
        width: 240px;
        height: 450px;
    }

    .feature-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .what-is-visual {
        display: flex;
        justify-content: center;
    }
}

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

    section {
        padding: 40px 0;
    }

    .btn,
    .form-group input,
    .form-group textarea {
        min-height: 52px;
        font-size: 16px;
    }

    .hero {
        padding: 100px 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .section-header h2,
    .what-is-text h2,
    .contact-text h2 {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .cta-box {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn,
    .contact-form .btn {
        width: 100%;
        align-self: stretch;
    }

    .floating-mockup {
        width: 220px;
        height: 420px;
        border-width: 4px;
        border-radius: 30px;
    }

    .mockup-header {
        font-size: 1.2rem;
    }

    .hero-image-frame {
        aspect-ratio: 1 / 1;
        border-radius: 20px;
    }

    .step-card,
    .audience-card,
    .benefit-item {
        padding: 24px;
        border-radius: 16px;
    }
}

.guide-page {
    background: radial-gradient(circle at top right, rgba(229, 194, 122, 0.22), transparent 35%), var(--bg-cream);
}

.guide-shell {
    padding: 130px 0 80px;
}

.guide-hero {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(184, 146, 74, 0.15);
    margin-bottom: 30px;
}

.guide-eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-start);
    font-weight: 600;
    font-size: 0.82rem;
}

.guide-hero h1 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.15;
    margin: 12px 0 16px;
}

.guide-hero p {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 70ch;
}

.guide-content {
    display: grid;
    gap: 22px;
}

.guide-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--gold-start);
    border: 1px solid rgba(184, 146, 74, 0.12);
    position: relative;
}

.guide-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.guide-card p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.guide-card p:last-child {
    margin-bottom: 0;
}

.guide-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(184, 146, 74, 0.12);
    color: #7d5c20;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.guide-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 146, 74, 0.35), rgba(184, 146, 74, 0.02));
    margin: 12px 0 14px;
}

.guide-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-light);
}

.guide-list li {
    margin-bottom: 8px;
}

.guide-related {
    margin-top: 24px;
    background: linear-gradient(140deg, rgba(184, 146, 74, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(184, 146, 74, 0.22);
    border-radius: var(--radius-md);
    padding: 26px;
}

.guide-related h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.guide-related ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.guide-related a {
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(184, 146, 74, 0.2);
    padding: 12px 14px;
    display: block;
    transition: all 0.25s ease;
}

.guide-related a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 42, 42, 0.08);
}

.guide-cta {
    margin-top: 26px;
    text-align: center;
}

@media (max-width: 768px) {
    .guide-shell {
        padding: 105px 0 56px;
    }

    .guide-hero,
    .guide-card,
    .guide-related {
        padding: 22px;
    }
}

.editorial-page {
    background: #fbf9f8;
    color: #1b1c1c;
}

.editorial-shell {
    padding: 128px 0 0;
}

.editorial-section {
    padding: 0 0 80px;
}

.editorial-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.editorial-kicker {
    color: #775a00;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.editorial-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 16px;
}

.editorial-hero p {
    color: #4d4637;
    max-width: 62ch;
}

.editorial-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(27, 28, 28, 0.2);
    aspect-ratio: 1/1;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.editorial-card {
    background: #ffffff;
    border: 1px solid #d1c5b1;
    border-radius: 12px;
    padding: 28px;
}

.editorial-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.editorial-card p {
    color: #4d4637;
}

.editorial-icon-line {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.editorial-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    background: rgba(197, 160, 65, 0.12);
    color: #775a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 4px;
}

.editorial-list {
    margin-top: 16px;
    list-style: none;
    padding: 0;
}

.editorial-list li {
    margin-top: 10px;
    color: #1b1c1c;
    position: relative;
    padding-left: 22px;
}

.editorial-list li::before {
    content: "◌";
    color: #775a00;
    position: absolute;
    left: 0;
}

.editorial-dark {
    background: #775a00;
    color: #fff;
    border-color: transparent;
}

.editorial-dark .editorial-kicker {
    color: #ffdf97;
}

.editorial-dark p {
    color: rgba(255, 255, 255, 0.92);
}

.editorial-dark .editorial-list li {
    color: #fff;
}

.editorial-dark .editorial-list li::before {
    color: #ffdf97;
}

.editorial-dark-divider {
    margin: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.editorial-wide {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 20px;
    align-items: center;
}

.editorial-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.editorial-mini {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: 12px;
}

.editorial-mini h4 {
    color: #775a00;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.editorial-mini p {
    font-size: 0.9rem;
}

.editorial-cta-band {
    background: #f2f0ef;
    text-align: center;
    padding: 80px 24px;
    margin: 50px 0 0;
}

.editorial-cta-band h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 20px;
}

.editorial-related-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.editorial-related-title::before,
.editorial-related-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background: #d1c5b1;
}

.editorial-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.editorial-related-card {
    background: #fff;
    border: 1px solid #d1c5b1;
    border-radius: 10px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
}

.editorial-related-card p {
    margin-bottom: 14px;
}

.editorial-related-card span {
    color: #775a00;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .editorial-hero,
    .editorial-grid,
    .editorial-wide {
        grid-template-columns: 1fr;
    }

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