@font-face {
    font-family: 'SuperStarfish';
    src: url('/assets/fonts/super-starfish.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Helps with page load speed */
}
:root {
    --bg: #FBF7F0;
    --text-dark: #2C1810;
    --text-light: #8A7E76;
    /*--accent: #C4956A;*/
    --accent: #cb1a5f;
    --accent-soft: rgba(196, 149, 106, 0.1);
    --border: #E8DFD2;
    --white: #FEFDFB;
    /* Primary Brand Palette */
    --bg-cream: #FBF7F0;       /* Global background */
    --pure-white: #FEFDFB;     /* Card backgrounds */
    --accent-caramel: #C4956A;  /* Buttons & Primary links */
    --accent-gold: #A87B52;     /* Small tags & Metadata */

    /* Typography Palette */
    --text-espresso: #2C1810;   /* Headlines (luxury feel) */
    --text-mocha: #3A2E28;      /* Body text */
    --text-taupe: #8A7E76;      /* Subtitles & Labels */

    /* UI Elements */
    --border-tan: #E8DFD2;      /* Thin borders & dividers */
    --sand-gradient: linear-gradient(145deg, #FBF7F0 0%, #F0E8DA 50%, #F2D9CC 100%);

    /* Effects */
    --transition-boutique: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-lift: 0 20px 50px rgba(44, 24, 16, 0.06);
    --cream: #FBF7F0;
    --warm-white: #FEFDFB;
    --sand: #F0E8DA;
    --caramel: #C4956A;
    --caramel-deep: #A87B52;
    --terracotta: #C4704A;
    --espresso: #2C1810;
    --charcoal: #3A2E28;
    --muted: #8A7E76;
    --soft-border: #E8DFD2;
    --blush: #F2D9CC;
    --sage: #A8B5A0;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'SuperStarfish','DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
}

/* Navigation */
.navbar {
    background: rgba(251, 247, 240, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    /*padding: 16px 32px;*/
    padding: 0px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}
.nav-links a {
    text-decoration: none;
    color: #3A2E28;
    transition: 0.3s;
}
.nav-links a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

/* Hero */
.hero {
    padding: 72px 32px 56px;
    text-align: center;
    background: linear-gradient(145deg, #FBF7F0 0%, #F0E8DA 50%, #F2D9CC 100%);
    position: relative;
    overflow: hidden;
}
.hero-accent {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,149,106,0.1) 0%, transparent 70%);
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    color: #A87B52;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin-bottom: 14px;
}
.hero h1 em {
    color: var(--accent);
    font-style: italic;
}
.read-more{
    font-size: 13px;
    font-weight: 600;
    color: rgb(196, 149, 106);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
/* Cards */
.main-container {
    max-width: 960px;
    margin: 0 auto;
    /*padding: 48px 24px 80px;*/
}
.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 24px;
}
.blog-card:hover:not(.upcoming),.product-gallery:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.06);
}
.blog-card.featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: 36px;
}
.blog-card.upcoming {
    opacity: 0.7;
    cursor: default;
}

.card-media {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #F0E8DA, #F2D9CC);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}
.featured-media {
    font-size: 100px;
}
.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.category-tag {
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(196, 149, 106, 0.1);
    font-size: 10px;
    font-weight: 600;
    color: rgb(168, 123, 82);
    letter-spacing: 0.5px;
}
.card-date {
    font-size: 11px;
    color: rgb(138, 126, 118);
}
.card-title {
    font-family: 'Playfair Display', serif;
    margin: 12px 0;
    font-size: 19px;
    color: rgb(44, 24, 16);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}
.card-title.large {
    font-size: 28px;
}
.card-excerpt {
    /*font-size: 13px; color: rgb(138, 126, 118); line-height: 1.6;*/
    font-size: 14px;
    color: rgb(138, 126, 118);
    line-height: 1.7;
    margin-bottom: 20px;
}
.coming-soon-badge{
    margin-top: 16px;
    padding: 10px 16px;
    background: rgb(251, 247, 240);
    border-radius: 10px;
    font-size: 12px;
    color: rgb(138, 126, 118);
    text-align: center;
    font-style: italic;
}
/* Filters */
.filter-group {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}
.filter-btn {
    padding: 9px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-size: 12px;
}
.filter-btn.active {
    background: var(--text-dark);
    color: var(--bg);
    border: none;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Newsletter */
.newsletter {
    margin-top: 64px;
    padding: 48px;
    background: var(--text-dark);
    border-radius: 24px;
    color: var(--bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.subscribe-btn {
    background: var(--accent);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
}

/* Footer */
.footer {
    background: rgb(44, 24, 16);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 32px;
    text-align: center;
}
.footer p{
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.footer-col h4 {
    font-family: 'SuperStarfish','DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--caramel);
}
/* Newsletter Section - Exact Radial Gradient */
.newsletter- {
    margin-top: 64px;
    padding: 48px 40px;
    background: var(--text-espresso);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
}
.newsletter-inner h3{
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgb(240, 232, 218);
    margin-bottom: 10px;
}
.newsletter-inner p{
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0px auto 28px;
    max-width: 380px;
}
.newsletter-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(196,149,106,0.08) 0%, transparent 50%);
}
input[type=email] {
    flex: 1 1 0%;
    padding: 14px 22px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgb(240, 232, 218);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
}
.input-group{
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0px auto;
}
input[type="text"], input[type="email"], select {
    background: rgba(232, 223, 210, 0.2); /* Soft Tan */
    border: 1px solid var(--border-tan);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-espresso);
    font-family: 'DM Sans', sans-serif;
}
/* Display Typography */
.display-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 72px);
    color: #2C1810;
    line-height: 1.1;
    margin-bottom: 24px;
}
.display-title em {
    font-style: italic;
    color: #C4956A;
}
.status-paid {
    background: rgba(196, 149, 106, 0.1);
    color: var(--accent-gold);
}
.status-dispatched {
    background: rgba(44, 24, 16, 0.05);
    color: var(--text-taupe);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--caramel);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background var(--transition);
    text-decoration: none;
}
.btn-checkout, .btn-save {
    background-color: var(--text-espresso) !important;
    color: var(--bg-cream) !important;
    border-radius: 100px !important;
    padding: 14px 32px !important;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    border: none;
    transition: var(--transition-boutique);
}
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary:hover {
    background-color: var(--accent-gold) !important;
    transform: translateY(-2px);
}
.origin {
    padding: 100px 0;
}
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.origin-content h2 {
    font-size: 38px;
    color: var(--espresso);
    margin-bottom: 24px;
}
.origin-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}
.origin-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(44, 24, 16, 0.08);
}
.origin-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.origin-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background: var(--blush);
    border-radius: 50%;
    z-index: -1;
}
.origin-accent-2 {
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 70px;
    height: 70px;
    background: var(--sand);
    border-radius: 50%;
    z-index: -1;
}
.origin-visual {
    position: relative;
}
.story-hero {
    padding: 80px 0 64px;
    text-align: center;
    background: linear-gradient(145deg, var(--cream) 0%, var(--sand) 50%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}
.hero-subtitle {
    font-size: 18px;
    color: #8A7E76;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 12px;
}
.stats-bar {
    background: var(--warm-white);
    border-top: 1px solid var(--soft-border);
    border-bottom: 1px solid var(--soft-border);
    padding: 48px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--caramel);
}
.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.photo-banner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 6px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.values {
    background: var(--espresso);
    padding: 100px 100px;
    position: relative;
    overflow: hidden;
}
.values::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(196, 149, 106, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(168, 181, 160, 0.06) 0%, transparent 50%);
}
.values h2 {
    color: var(--cream);
    text-align: center;
    font-size: 40px;
    margin-bottom: 14px;
}
.values-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 16px;
    margin-bottom: 56px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.value-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all var(--transition);
}
.value-card:hover {
    border-color: #C4956A;
    transform: translateY(-5px);
}
.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(196, 149, 106, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.value-card h3 {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}
.values-section, .story-cta {
    background: #2C1810;
    padding: 100px 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(196, 149, 106, 0.08) 0%, transparent 70%);
}
.story-cta {
    background: var(--espresso);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.story-cta h2 {
    font-size: 36px;
    color: var(--cream);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.story-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 440px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.hustle {
    padding: 100px 100px;
}
.hustle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hustle-content{
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hustle-content h2 {
    font-size: 38px;
    color: var(--espresso);
    margin-bottom: 24px;
}
.hustle-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}
.hustle-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
/* Robust Hustle Section - Replaces Grid */
.hustle-feature {
    padding: 100px 0;
    background: #FEFDFB;
}
.hustle-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.hustle-text {
    flex: 1;
    min-width: 320px;
}
.hustle-visual {
    flex: 1;
    min-width: 320px;
    position: relative;
    height: 450px;
}
.hustle-img-primary {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lift);
}
.hustle-img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    height: 60%;
    object-fit: cover;
    border-radius: 24px;
    border: 8px solid #fff;
    box-shadow: var(--shadow-lift);
}
.hustle-photos .photo-tall {
    grid-row: span 2;
    height: 100%;
}
.hustle-photos img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
}
.fun-section {
    padding: 100px 100px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--blush) 100%);
}
.fun-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.fun-content h2 {
    font-size: 38px;
    color: var(--espresso);
    margin-bottom: 20px;
}
.fun-content p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 18px;
}
.fun-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--warm-white);
    border: 1px solid var(--soft-border);
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 14px;
    color: var(--charcoal);
    margin-top: 12px;
}
.fun-badge span {
    font-size: 22px;
}
.fun-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.1);
    transform: rotate(-2deg);
    transition: transform var(--transition);
}
.fun-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
}
img {
    max-width: 100%;
    display: block;
}
.banner-item {
    flex: 1;
    height: 350px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #E8DFD2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.banner-item.main-img {
    flex: 1.5;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* --- MOBILE RESPONSIVE FIXES --- */

@media (max-width: 768px) {
    /* 1. Fix Navbar: Reduce padding and font size */
    .navbar {
        padding: 12px 20px;
    }
    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    .nav-links {
        gap: 16px; /* Closer links to prevent overflow */
        font-size: 13px;
    }

    /* 2. Fix Hero: Tighten spacing for smaller screens */
    .hero {
        padding: 48px 20px 40px;
    }
    .hero h1 {
        font-size: 32px; /* Override clamp if it stays too large */
    }

    /* 3. Fix Featured Card: Stack vertically instead of side-by-side */
    .blog-card.featured {
        display: flex;
        flex-direction: column;
        grid-template-columns: none; /* Disables the 1.2fr 1fr layout */
    }

    .featured-media {
        font-size: 60px; /* Smaller emoji for mobile */
        aspect-ratio: 16/9;
    }

    /* 4. Fix Single Post: Adjust line height and padding */
    .post-detail-title {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .main-container {
        padding: 24px 16px 60px; /* Reduce side gutters */
    }

    .post-hero-visual {
        font-size: 50px;
        margin-bottom: 30px;
        border-radius: 12px;
    }

    /* 5. Fix Callouts & Newsletter */
    .callout {
        padding: 16px;
        margin-bottom: 16px;
    }

    .newsletter {
        padding: 32px 24px;
        margin-top: 40px;
        border-radius: 16px;
    }

    .input-group {
        flex-direction: column; /* Stack Email and Subscribe button */
        width: 100%;
    }

    .subscribe-btn {
        width: 100%;
        text-align: center;
    }

    /* 6. Fix Article Content */
    .post-body p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* Smallest Devices (iPhone SE, etc.) */
@media (max-width: 380px) {
    .nav-links {
        display: none; /* Optional: Hide extra links if screen is too narrow */
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-banner {
        flex-direction: column;
        height: auto;
    }
    .banner-item {
        height: 250px;
    }
    .hustle-visual {
        height: 350px;
        margin-top: 40px;
    }
}
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-30px)
    }