/* ==========================================================================
   Typography - Chillax
   ========================================================================== */
@font-face {
    font-family: 'ChillaxCustom';
    src: url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Variable.woff2') format('woff2-variations'),
         url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Variable.woff') format('woff-variations'),
         url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Regular.woff2') format('woff2'),
         url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Regular.woff') format('woff');
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'QuicksandCustom';
    src: url('Fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Variable.woff2') format('woff2-variations'),
         url('Fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Variable.woff') format('woff-variations'),
         url('Fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Medium.woff2') format('woff2'),
         url('Fonts/Quicksand_Complete/Fonts/WEB/fonts/Quicksand-Medium.woff') format('woff');
    font-weight: 300 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Chillax-Regular';
    src: url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Chillax-Medium';
    src: url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Chillax-Semibold';
    src: url('Fonts/Chillax_Complete/Fonts/WEB/fonts/Chillax-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
   :root {
    /* Colors */
    --color-cream: #FDFBF7;
    --color-sand: #F5F3EC;
    --color-sage: #E8EDE4;
    --color-olive: #697c5a;
    --color-olive-dark: #566848;
    --color-wood: #C58A6A;
    --color-text-dark: #2D322C;
    --color-text-muted: #6B726F;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-accent: 'ChillaxCustom', sans-serif;
    --font-quicksand: 'QuicksandCustom', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(45, 50, 44, 0.05);
    --shadow-glass: 0 4px 30px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-sans); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

i, em {
    font-style: italic;
    color: var(--color-olive);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-sand { background-color: var(--color-sand); }
.bg-sage { background-color: var(--color-sage); }
.bg-dark { background-color: var(--color-text-dark); }
.text-white { color: #fff; }
.text-cream { color: var(--color-cream); }
.text-light { color: rgba(255, 255, 255, 0.7); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.block { display: block; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-olive);
    color: var(--color-cream);
}

.btn-primary:hover {
    background-color: var(--color-olive-dark);
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: rgba(105, 124, 90, 0.05);
    color: var(--color-text-dark);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.banner-pink {
    color: #b08a65;
}

.w-full { width: 100%; }

/* Form Elements */
.badge {
    display: inline-block;
    color: var(--color-olive);
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.section-subtitle {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-wood);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: var(--shadow-glass);
}

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

.logo-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-family: var(--font-accent) !important;
    font-size: 1.75rem;
    font-weight: 700 !important;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-olive);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-wood);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-cream);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 2rem;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-top: 10rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 251, 247, 1) 0%, rgba(253, 251, 247, 0.85) 45%, rgba(253, 251, 247, 0) 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-accent) !important;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700 !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    letter-spacing: -0.03em;
}

.hero-title i {
    font-family: var(--font-quicksand) !important;
    color: var(--color-olive);
    font-weight: 500 !important;
    font-style: normal; /* Removing italics as Quicksand is rounded sans */
    letter-spacing: -0.01em;
}

.hero-content p {
    font-size: 1.25rem;
    margin: 0 0 2.5rem 0;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.hero-second-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator {
    margin-top: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

/* Mouse shell */
.scroll-mouse {
    display: flex;
    justify-content: center;
}

.scroll-mouse-svg {
    width: 26px;
    height: 40px;
    color: var(--color-text-muted);
    animation: mouseFloat 2.8s ease-in-out infinite;
}

/* Wheel dot bounces inside the mouse */
.scroll-wheel {
    animation: wheelScroll 2.8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes wheelScroll {
    0%   { transform: translateY(0);   opacity: 1; }
    30%  { transform: translateY(10px); opacity: 0.4; }
    60%  { transform: translateY(0);   opacity: 1; }
    100% { transform: translateY(0);   opacity: 1; }
}

@keyframes mouseFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(107,114,111,0.5), rgba(107,114,111,0));
    margin-left: 0;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    top: -5rem;
}

.feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 1.75rem;
    margin-top: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.feature-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    will-change: transform;
}

/* Icon bounce animation (added via JS on scroll) */
.feature-icon img.icon-bounce {
    animation: iconFloat 1.8s ease-in-out infinite;
}

@keyframes iconFloat {
    0%   { transform: translateY(0); }
    45%  { transform: translateY(-14px); }
    100% { transform: translateY(0); }
}

/* ==========================================================================
   Concept Section
   ========================================================================== */
.concept-title {
    font-family: var(--font-accent);
    font-weight: 600; /* Semi Bold */
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.concept-title i {
    font-family: var(--font-quicksand);
    font-weight: 500; /* Medium */
    font-style: normal;
}

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

.concept-image {
    position: relative;
    padding-right: 2rem;
}

.concept-bento {
    display: flex;
    gap: 1rem;
}

.bento-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.bento-right {
    flex: 1.2;
}

.bento-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.bento-top, .bento-bottom {
    aspect-ratio: 4/3;
}

.bento-tall {
    aspect-ratio: 3/4;
    height: 100%;
}

.concept-numbered-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.concept-numbered-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.list-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--color-sage);
    color: var(--color-olive-dark);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
}

.list-text h4 {
    margin-bottom: 0.25rem;
    font-family: var(--font-accent);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: -0.01em;
}

/* ==========================================================================
   Atmosphere Section
   ========================================================================== */
.atmosphere-header {
    text-align: center;
    margin-bottom: 4rem;
}

.atmosphere-header h2 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.atmosphere-header h2 i {
    font-family: var(--font-quicksand);
    font-weight: 500;
    font-style: normal;
    color: var(--color-olive);
}

.atmosphere-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.atmosphere-bento-left {
    height: 100%;
}

.atmosphere-bento-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.atmo-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.atmo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.atmo-bento-tall {
    height: 100%;
    min-height: 600px;
}

.atmo-bento-wide {
    height: 350px;
}

.atmo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.1) 100%);
    color: white;
}

.atmo-overlay h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-accent);
    font-weight: 300;
    line-height: 1.3;
}

.atmo-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin: 0;
}

.atmo-overlay-bottom {
    justify-content: flex-end;
    padding-bottom: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0) 100%);
}

.atmo-info-card {
    background-color: var(--color-sand);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atmo-info-card h3 {
    font-size: 4.5rem;
    color: var(--color-olive);
    font-family: var(--font-accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.atmo-info-card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    background-color: var(--color-sand);
}

.container-narrow {
    max-width: 1000px;
}

.pricing-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--color-text-dark);
}

.pricing-title i {
    font-family: var(--font-quicksand);
    font-weight: 500;
    font-style: normal;
    color: #697c59;
}

.pricing-header-wrap {
    position: relative;
    display: inline-block;
}

.parent-entry-banner {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.banner-content {
    background-color: var(--color-sage);
    padding: 1rem 3rem 1rem 4.5rem;
    border-radius: 100px 30px 100px 100px;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-content span {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-olive-dark);
}

.olive-icon {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 42px;
    height: 55px;
    background-color: #697c59;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: inset -4px -4px 10px rgba(0,0,0,0.1);
}

.olive-icon::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 7px;
    height: 14px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
}

.olive-icon::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 15px;
    width: 22px;
    height: 12px;
    background-color: #7c8d6b;
    border-radius: 0 100% 0 100%;
    transform: rotate(25deg);
    box-shadow: -2px 2px 5px rgba(0,0,0,0.05);
}

.banner-pink .banner-content {
    background-color: #ffffff;
    padding: 1rem 3rem 1rem 4.25rem;
    border: 1.5px solid rgba(176, 138, 101, 0.2);
    box-shadow: 0 4px 20px rgba(176, 138, 101, 0.08);
}

.banner-pink .banner-content span, 
.banner-pink .banner-content strong {
    color: #b08a65; 
}

.banner-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.banner-pink .main-text {
    font-size: 1.2rem;
    line-height: 1.2;
}

.banner-pink .sub-text {
    font-family: var(--font-quicksand);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 4px;
}

.flower-siblings-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 50px;
}

/* Big Flower (Older Sibling) - Overlapping edge */
.flower-siblings-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px; /* Protrudes outside the left edge */
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fdf2f2; 
    border-radius: 50%;
    box-shadow: 
        0 -9px 0 7px #e0c29b, /* Tan/Gold petals */
        0 9px 0 7px #e0c29b,
        -9px 0 0 7px #e0c29b,
        9px 0 0 7px #e0c29b;
    z-index: 2;
}

/* Small Flower (Younger Sibling) */
.flower-siblings-icon::after {
    content: '';
    position: absolute;
    top: 58%;
    left: 30px;
    width: 4px;
    height: 4px;
    background: #fdf2f2;
    border-radius: 50%;
    box-shadow: 
        0 -5px 0 3px #6a9cc2, /* Blue */
        0 5px 0 3px #6a9cc2,
        -5px 0 0 3px #6a9cc2,
        5px 0 0 3px #6a9cc2;
    z-index: 1;
}

.mt-12 { margin-top: 3rem; }
.mb-40 { margin-bottom: 4rem; }

@media (max-width: 900px) {
    .pricing-header-wrap {
        display: block;
    }
    .banner-content {
        padding: 0.75rem 2rem 0.75rem 3.5rem;
    }
    .banner-content span {
        font-size: 1.1rem;
    }
}

.pricing-ribbon-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    min-height: 140px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.pricing-row:hover {
    transform: translateX(10px);
}

.row-left {
    padding: 2rem;
    background-color: var(--color-sand);
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

/* Ribbon chevron effect */
.row-left::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 24px solid var(--color-sand);
    border-top: 75px solid transparent;
    border-bottom: 75px solid transparent;
    z-index: 2;
}

.row-right {
    padding: 2rem 3rem 2rem 5rem;
    background-color: var(--color-sage);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row-label {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.row-price {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 2.75rem;
    color: var(--color-olive);
    line-height: 1;
}

.row-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.row-right p {
    font-size: 1.25rem;
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.4;
}

.small-desc {
    font-size: 0.95rem !important;
    color: var(--color-text-muted) !important;
    margin-top: 0.5rem !important;
}

.mt-20 { margin-top: 5rem; }

.discount-box {
    background-color: var(--color-sage);
    padding: 1.75rem 3.5rem;
    border-radius: 100px;
    display: inline-block;
    border: 1px dashed rgba(105, 124, 89, 0.3);
}

.discount-box p {
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-text-dark);
}

.discount-box strong {
    color: var(--color-olive-dark);
    font-family: var(--font-accent);
    font-weight: 600;
}

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

.highlight-cell {
    background-color: #ffffff !important;
}

.highlight-cell::after {
    border-left-color: #ffffff !important;
}

.second-price-block {
    text-align: left;
}

.second-price-block .row-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.price-small {
    font-size: 2.25rem !important;
    margin: 0.25rem 0;
    color: #8ba277 !important; /* Softer shade of green */
}

.krabbel-highlight {
    background-color: #FFF1C1 !important; /* Deeper yellow on left */
}

.krabbel-highlight::after {
    border-left-color: #FFF1C1 !important;
}

.krabbel-highlight .row-label,
.krabbel-highlight .row-sub,
.krabbel-highlight .row-price {
    color: #697c59 !important; /* Same olive as inKinder */
}

.row-krabbel .row-right {
    background-color: #FFF9E6 !important; /* Light yellow on right */
}

.krabbel-sub {
    margin-top: -0.25rem !important;
    margin-bottom: 0.25rem !important;
}

@media (max-width: 900px) {
    .row-left { width: 40%; }
}

@media (max-width: 768px) {
    .pricing-row {
        flex-direction: column;
        min-height: auto;
    }
    .row-left {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    .row-left::after {
        display: none;
    }
    .row-right {
        padding: 2rem 1.5rem;
        text-align: center;
    }
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.events-content h2 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.events-content h2 i {
    font-family: var(--font-quicksand);
    font-weight: 500;
    font-style: normal;
    color: var(--color-olive);
}

.event-item h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.events-image {
    position: relative;
}

.rounded-img {
    border-radius: var(--border-radius-lg);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.photo-pricing-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: #fbfbf9;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: inline-block;
    z-index: 10;
}

.price-title {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.price-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: normal;
}

.price-sub {
    font-family: var(--font-sans);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    display: inline-block;
}

.quote {
    font-style: italic;
    color: var(--color-wood);
    margin-top: 1rem;
    font-family: var(--font-serif);
}

.event-item {
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.border-none {
    border-bottom: none;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.about-content h2 i {
    font-family: var(--font-quicksand);
    font-weight: 500;
    font-style: normal;
    color: var(--color-olive);
}

.about-image {
    order: -1;
}

.portrait-wrapper {
    position: relative;
    padding: 2rem;
}

.shape-outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-olive);
    border-radius: 200px 200px 0 0;
    z-index: -1;
    transform: translate(20px, 20px);
}

.portrait-wrapper img {
    border-radius: 200px 200px 0 0;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.founder-sign h4 {
    margin-bottom: 0.2rem;
}

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

.testimonial-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonials-title {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 3.5rem;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.testimonials-title i {
    font-family: var(--font-quicksand);
    font-weight: 500;
    font-style: normal;
    color: var(--color-olive);
}

.stars {
    color: var(--color-wood);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.author {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

.author strong {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-text-dark);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-start { display: flex; align-items: flex-start; }
.flex-center-start { display: flex; align-items: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.whitespace-nowrap { white-space: nowrap; }
.block { display: block; }
.pt-20 { padding-top: 5rem; }
.pb-12 { padding-bottom: 3rem; }
.pt-12 { padding-top: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.max-w-2xl {
    max-width: 42rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-title {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 3.5rem;
    line-height: 1.2;
}

.footer-cta-title i {
    font-family: var(--font-quicksand) !important;
    font-weight: 300 !important; /* Light */
    font-style: normal !important;
    color: #697c59 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-end;
}

.footer-logo-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-logo {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.text-base {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hover-white:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}


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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive Design — Tablet (≤992px)
   ========================================================================== */
@media (max-width: 992px) {

    /* Navigation */
    .d-none-mobile { display: none !important; }
    .hamburger { display: flex; }
    .nav-menu { display: none; }

    /* Hero */
    .hero {
        padding-top: 5rem;
        min-height: 560px;
        max-height: none;
    }
    .hero-content { max-width: 600px; }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        top: 0;
    }

    /* Concept */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .concept-image { padding-right: 0; }

    /* Atmosphere */
    .atmosphere-bento {
        grid-template-columns: 1fr;
    }
    .atmo-bento-tall { min-height: 420px; }
    .atmo-bento-wide { height: 280px; }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .photo-pricing-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image { order: 0; }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-logo-col {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

/* ==========================================================================
   Responsive Design — Mobile (≤768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* Base */
    .container { padding: 0 1.25rem; }
    .section-padding { padding: 4rem 0; }

    h1 { font-size: clamp(2rem, 8vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    h3 { font-size: clamp(1.25rem, 5vw, 1.75rem); }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100svh;
        padding-top: 6rem;
        padding-bottom: 3rem;
        align-items: flex-end;
    }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(253,251,247,0.6) 0%,
            rgba(253,251,247,0.92) 55%,
            rgba(253,251,247,1) 100%
        );
    }
    .hero-bg img { object-position: 85% center; }
    .hero-content {
        max-width: 100%;
        padding-bottom: 1rem;
    }
    .hero-content p { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .scroll-indicator { display: none; }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        top: 0;
        padding-top: 2rem;
    }
    .feature-card { padding: 2rem 1.5rem; }
    .feature-icon { width: 110px; height: 110px; }

    /* Concept */
    .concept-bento { flex-direction: column; }
    .bento-left, .bento-right { flex: unset; width: 100%; }
    .bento-tall { aspect-ratio: 4/3; height: auto; }
    .concept-numbered-list { gap: 2rem; }

    /* Atmosphere */
    .atmo-bento-tall { min-height: 320px; }
    .atmo-bento-wide { height: 220px; }
    .atmo-info-card { padding: 2rem; }
    .atmo-info-card h3 { font-size: 3rem; }

    /* Events */
    .rounded-img { aspect-ratio: 4/3; }
    .event-item { margin-top: 1.5rem; padding-bottom: 1.5rem; }

    /* About */
    .portrait-wrapper { padding: 1rem; }
    .portrait-wrapper img { aspect-ratio: 4/3; border-radius: 16px; }
    .shape-outline { border-radius: 16px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonial-card { padding: 2rem 1.5rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .footer-logo-col { justify-content: center; }
    .footer-cta h2 { font-size: clamp(1.5rem, 6vw, 2.5rem); }
    .flex-center { flex-direction: column; }
    .footer-links { display: flex; flex-direction: column; align-items: center; }

    /* Buttons */
    .btn { width: 100%; justify-content: center; }
    .btn-large { font-size: 1rem; }
}

/* ==========================================================================
   Responsive Design — Small Mobile (≤480px)
   ========================================================================== */
@media (max-width: 480px) {

    .logo { font-size: 1.35rem; }

    .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
    .badge { font-size: 0.75rem; }

    /* Concept section header */
    .concept-header h2 { font-size: 2rem; }
    .intro-p { font-size: 1rem !important; }

    /* Atmosphere */
    .atmo-bento-tall { min-height: 260px; }
    .atmo-overlay h3 { font-size: 1.3rem; }

    /* Events */
    .photo-pricing-card { padding: 1rem 1.25rem; }
    .price-title { font-size: 1.25rem; }

    /* Footer CTA */
    .pt-20 { padding-top: 3rem; }
    .mb-16 { margin-bottom: 2rem; }
}

