/* ==========================================================================
   DAYBREAK DESIGN SYSTEM
   Sunday Sunrise & Light Botanical Cafe Vibe
   ========================================================================== */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Inter:wght@300;400;500;600;700&family=Nunito+Sans:wght@600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Design Tokens & Variables --- */
:root {
    /* Color Palette */
    --color-bg-light: #F7F4EB;
    --color-bg-gradient: radial-gradient(circle at 50% 20%, #FAF7EF 0%, #F1EAD8 100%);
    --color-peach: #F2A17E;
    --color-peach-rgb: 242, 161, 126;
    --color-peach-light: #F5B599;
    --color-sage: #98B291;
    --color-sage-rgb: 152, 178, 144;
    --color-sky: #A0BDD0;
    --color-sky-rgb: 160, 189, 208;
    --color-honey: #EBB85A;
    --color-honey-light: #EEC374;
    
    /* Interface Neutrals (Light Mode) */
    --text-white: #FFFFFF;
    --text-dark: #2A2E2C;
    --text-muted: #6B7280;
    --text-light-gray: #E5E7EB;
    
    /* Panel Details */
    --panel-bg: #FCFAF5;
    --panel-border: rgba(242, 161, 126, 0.12);
    --panel-border-hover: rgba(242, 161, 126, 0.3);
    --panel-shadow: 0 10px 30px -10px rgba(242, 161, 126, 0.06);
    --panel-shadow-hover: 0 20px 40px -15px rgba(242, 161, 126, 0.15);
    
    /* Typography Pairs */
    --font-display: 'Fredoka One', cursive; /* Cheerful, rounded display font */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Nunito Sans', sans-serif;
    
    /* Transitions */
    --ease-premium: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-speed: 0.4s;

    --header-height: 84px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    background-image: var(--color-bg-gradient);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease-premium);
}

/* --- Layout Elements --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

section {
    padding: 100px 0;
    position: relative;
}

/* --- Section Headings --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-peach);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- Buttons & CTAs --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s var(--ease-premium);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-honey) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(var(--color-peach-rgb), 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--color-peach-rgb), 0.45);
    background: linear-gradient(135deg, var(--color-peach-light) 0%, var(--color-honey-light) 100%);
}

.btn-secondary {
    background: var(--panel-bg);
    color: var(--text-dark);
    border: 1px solid rgba(var(--color-peach-rgb), 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--color-bg-light);
    border-color: var(--color-peach);
}

/* ==========================================================================
   HEADER & SUNNY PILL BRANDING STYLE
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, #FFFDF9 0%, #F5EFE3 100%);
    border-bottom: 1px solid rgba(242, 161, 126, 0.28);
    box-shadow: 0 6px 28px rgba(42, 46, 44, 0.07);
    transition: background 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-sage) 0%, var(--color-peach) 48%, var(--color-honey) 100%);
    pointer-events: none;
}

.main-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 36px rgba(42, 46, 44, 0.1);
}

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

/* --- Font Controlled Pill Branding --- */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-brand-pill {
    background: rgba(242, 161, 126, 0.06);
    border: 1px solid rgba(242, 161, 126, 0.2);
    border-radius: 40px;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-premium);
}

.logo-brand-pill span {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-peach);
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.logo-pipe {
    color: rgba(242, 161, 126, 0.2);
    font-weight: 300;
    font-size: 1.2rem;
}

.logo-brand-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.logo-link:hover .logo-brand-pill {
    background: rgba(242, 161, 126, 0.12);
    border-color: var(--color-peach);
    box-shadow: 0 0 15px rgba(var(--color-peach-rgb), 0.2);
}

.logo-link:hover .logo-brand-sub {
    color: var(--text-dark);
}

/* --- Desktop Navigation (contained banner bar) --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 5px 6px 5px 16px;
    background: #FFFFFF;
    border: 1px solid rgba(242, 161, 126, 0.35);
    border-radius: 999px;
    box-shadow:
        0 2px 10px rgba(242, 161, 126, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0.01em;
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-dark);
    background: rgba(242, 161, 126, 0.12);
}

.nav-link.active {
    color: var(--text-dark);
    font-weight: 600;
    background: rgba(242, 161, 126, 0.22);
    box-shadow: inset 0 0 0 1px rgba(242, 161, 126, 0.25);
}

/* --- CTA in Navigation --- */
.nav-cta {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--text-dark);
    color: var(--text-white);
    margin-left: 4px;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-premium);
}

/* --- Mobile Navigation Overlays --- */
.mobile-nav-panel {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-light);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 20px;
    transition: all 0.4s var(--ease-premium);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03);
}

.mobile-nav-panel.open {
    right: 0;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid var(--text-light-gray);
}

.mobile-link:hover {
    color: var(--text-dark);
    padding-left: 8px;
}

.btn-mobile-quote {
    background: var(--text-dark);
    color: var(--text-white);
    margin-top: 24px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(var(--color-peach-rgb), 0.06) 0%, rgba(253, 251, 247, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
}

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

.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-peach);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 28px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 580px;
}

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

/* --- Hero Visual Showcase Panel --- */
.hero-visual-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 50px rgba(var(--color-peach-rgb), 0.15);
    border: 1px solid rgba(252, 161, 126, 0.15);
}

.hero-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s var(--ease-premium);
}

.hero-visual-card:hover .hero-visual-img {
    transform: scale(1.08);
}

.hero-visual-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(247, 244, 235, 0.4) 0%, rgba(247, 244, 235, 0) 30%);
    z-index: 1;
}

.hero-visual-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    padding: 24px;
    z-index: 2;
    background: rgba(252, 250, 245, 0.85); /* Cheerful warm-cream glass backing */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 161, 126, 0.22); /* Warm peach organic border */
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(242, 161, 126, 0.08);
    transition: all 0.4s var(--ease-premium);
}

.hero-visual-card:hover .hero-visual-content {
    background: rgba(252, 250, 245, 0.92);
    border-color: rgba(242, 161, 126, 0.35);
    box-shadow: 0 15px 35px rgba(242, 161, 126, 0.12);
}

.hero-visual-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--color-peach);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.hero-visual-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-visual-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.5;
}

/* ==========================================================================
   INTERACTIVE BRUNCH MIXER WIDGET
   ========================================================================== */
.builder-section {
    background-color: #FAF7EF;
    border-top: 1px solid rgba(242, 161, 126, 0.1);
    border-bottom: 1px solid rgba(242, 161, 126, 0.1);
}

.builder-wrapper {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

.builder-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--panel-shadow);
    display: flex;
    flex-direction: column;
}

/* --- Control Inputs (Sliders) --- */
.control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.control-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.control-val {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    color: var(--color-peach);
    font-weight: 600;
}

.control-slider-group {
    margin-bottom: 40px;
}

/* Custom Styled Range Slider */
.slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--text-light-gray);
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-peach);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(var(--color-peach-rgb), 0.4);
    transition: all 0.2s;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--color-peach-light);
}

/* --- Menu Grid Selectors --- */
.menu-selector-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.menu-selector-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.menu-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* Stylized Checklist Card */
.menu-option-card {
    position: relative;
    background: var(--panel-bg);
    border: 1px solid var(--text-light-gray);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s var(--ease-premium);
    display: flex;
    gap: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.menu-option-card:hover {
    border-color: rgba(var(--color-peach-rgb), 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(var(--color-peach-rgb), 0.04);
}

.menu-option-card.checked {
    background: rgba(242, 161, 126, 0.03);
    border-color: var(--color-peach);
    box-shadow: 0 8px 20px rgba(var(--color-peach-rgb), 0.1);
}

/* Custom Checkbox circle */
.chk-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--text-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.menu-option-card.checked .chk-indicator {
    background: var(--color-peach);
    border-color: var(--color-peach);
}

.chk-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF;
    opacity: 0;
    transition: all 0.2s;
}

.menu-option-card.checked .chk-indicator::after {
    opacity: 1;
}

.chk-details h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.chk-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 8px;
}

.chk-price {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--color-honey);
    background: rgba(235, 184, 90, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- Calculator Receipt Summary Panel --- */
.receipt-card {
    position: sticky;
    top: 130px;
    height: fit-content;
    border-color: rgba(242, 161, 126, 0.15);
    box-shadow: 0 15px 40px rgba(var(--color-peach-rgb), 0.08);
}

.receipt-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--text-light-gray);
    padding-bottom: 16px;
}

.receipt-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.receipt-item-label {
    color: var(--text-muted);
}

.receipt-item-val {
    color: var(--text-dark);
    font-weight: 500;
}

.receipt-divider {
    border-bottom: 1px dashed var(--text-light-gray);
    margin: 20px 0;
}

/* Total Price Highlight */
.receipt-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
}

.receipt-total-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-peach);
    font-weight: 700;
    text-shadow: 0 0 15px rgba(var(--color-peach-rgb), 0.1);
}

.btn-book-proposal {
    width: 100%;
}

/* ==========================================================================
   ARTISANAL BRUNCH GALLERY
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
    box-shadow: var(--panel-shadow);
}

.gallery-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--color-peach-rgb), 0.2);
    box-shadow: var(--panel-shadow-hover);
}

.gallery-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--ease-premium);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-info {
    padding: 24px;
}

.gallery-tag-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.gallery-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--color-sage);
    background: rgba(152, 178, 144, 0.08);
    border: 1px solid rgba(152, 178, 144, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ==========================================================================
   BRUNCH SPECIALTY FILTER BOARD
   ========================================================================== */
.diet-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.diet-pill {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--panel-bg);
    border: 1px solid var(--text-light-gray);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s var(--ease-premium);
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.diet-pill:hover, .diet-pill.active {
    color: #FFFFFF;
    background: var(--color-peach);
    border-color: var(--color-peach);
    box-shadow: 0 0 15px rgba(var(--color-peach-rgb), 0.3);
}

/* ==========================================================================
   STORY TIMELINE ACCORDION
   ========================================================================== */
.story-section {
    background-color: #FAF7EF;
    border-top: 1px solid rgba(242, 161, 126, 0.1);
    border-bottom: 1px solid rgba(242, 161, 126, 0.1);
}

.timeline-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    background: var(--color-bg-light);
    border: 1px solid var(--text-light-gray);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-premium);
}

.timeline-item.active {
    border-color: rgba(var(--color-peach-rgb), 0.3);
    background: var(--panel-bg);
    box-shadow: 0 10px 25px rgba(var(--color-peach-rgb), 0.05);
}

/* Accordion Header */
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
}

.timeline-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-peach);
    background: rgba(242, 161, 126, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--panel-bg);
    border: 1px solid var(--text-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.timeline-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--color-peach);
    border-color: var(--color-peach);
    color: #FFFFFF;
}

/* Accordion Content */
.timeline-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-premium);
}

.timeline-item.active .timeline-content {
    max-height: 400px;
}

.timeline-content-inner {
    padding: 0 30px 30px 30px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.timeline-text {
    flex: 1.2;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.timeline-visual {
    flex: 0.8;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--text-light-gray);
}

.timeline-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   CONSULTATION BOOKING DIALOG MODAL
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 46, 44, 0.4);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease-premium);
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 100%;
    max-width: 560px;
    background: var(--panel-bg);
    border: 1px solid var(--text-light-gray);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s var(--ease-premium);
}

.modal-backdrop.open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--text-light-gray);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.input-text, .input-textarea {
    width: 100%;
    background: var(--color-bg-light);
    border: 1px solid var(--text-light-gray);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.input-text:focus, .input-textarea:focus {
    border-color: var(--color-peach);
    background: var(--panel-bg);
    box-shadow: 0 0 10px rgba(var(--color-peach-rgb), 0.15);
}

.modal-success-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--panel-bg);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 10;
}

.modal-success-screen.open {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(242, 161, 126, 0.1);
    border: 1px solid var(--color-peach);
    color: var(--color-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

/* ==========================================================================
   PAGE FOOTER
   ========================================================================== */
.site-footer {
    border-top: 1px solid var(--text-light-gray);
    background: #FAF7EF;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin: 20px 0;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: 1px solid var(--text-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.footer-social-icon:hover {
    color: var(--text-white);
    background: var(--color-peach);
    border-color: var(--color-peach);
    transform: translateY(-2px);
}

.footer-links-column h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-peach);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links-column a:hover {
    color: var(--color-peach);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-peach);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: var(--color-bg-light);
    border: 1px solid var(--text-light-gray);
    border-radius: 30px;
    padding: 10px 18px;
    color: var(--text-dark);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--color-peach);
}

.newsletter-form button {
    padding: 10px 20px;
    font-size: 0.75rem;
    border-radius: 30px;
    background: var(--color-peach);
    color: #FFFFFF;
}

.newsletter-form button:hover {
    background: var(--color-peach-light);
    box-shadow: 0 4px 10px rgba(var(--color-peach-rgb), 0.2);
}

.newsletter-msg {
    display: none;
    font-size: 0.85rem;
    color: var(--color-peach);
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--text-light-gray);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .builder-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }
    
    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .timeline-content-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
