

/* --- Colors --- */
:root {
    --color-primary: #000000; /* Black for text/accents */
    --color-secondary: #FFFFFF; /* White background */
    --color-beige: #F8F4F0; /* Off-white/Beige background accent */
    --color-accent: #A52A2A; /* Subtle, deep reddish-brown accent (like dried earth/wood) */
}

/* --- Loading Overlay --- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-beige);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Global Styles --- */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Clean, minimal font */
    color: var(--color-primary);
    margin: 0;
    padding: 0;
    background-color: var(--color-secondary);
    line-height: 1.6;
}

body.order-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.order-page .order-page-content {
    flex: 1;
    display: flex;
    align-items: center;
}

body.order-page .order-page-content > section {
    width: 100%;
}

body.order-page footer {
    margin-top: auto;
}

/* Full-page hero slideshow */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero background (use your own hero image if available) */
.hero {
    background-image: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.05));
    background-size: cover;
    background-position: center;
}



/* Slideshow panel sits above the hero background */
.slideshow { position: relative; z-index: 2; width: 100%; display:flex; flex-direction:column; align-items:center; justify-content:center; padding: 20px; box-sizing: border-box; }
.slideshow-panel {
    width: 100%;
    max-width: 1200px; /* or any other max-width you prefer */
    height: 80vh; /* adjust height as needed */
    background: transparent; /* no background */
    border-radius: 28px;
    overflow: hidden;
    box-shadow: none; /* no shadow */
    position: relative;
    backdrop-filter: none; /* no backdrop filter */
}

.slide { position: absolute; inset: 0; opacity: 0; transform: translateY(6px) scale(1.02); transition: opacity 900ms ease, transform 1200ms cubic-bezier(.2,.9,.3,1); display:flex; align-items:center; justify-content:center; border-radius: 28px; overflow: hidden; }
/* Make images fill the slideshow panel uniformly with cover to crop and maintain consistent size */
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide.active { opacity: 1; transform: translateY(0) scale(1); }

/* Controls sit inside the panel */
.slideshow-panel .prev, .slideshow-panel .next { position: absolute; bottom: 16px; transform: translateY(0); pointer-events: auto; background: rgba(0,0,0,0.45); color: #fff; border: 0; padding: 10px 14px; border-radius: 10px; cursor: pointer; font-size: 20px; }
.slideshow-panel .prev { left: 12px; }
.slideshow-panel .next { right: 12px; }

/* Make prev/next visually pop with a white outline and soft shadow */
.slideshow-panel .prev, .slideshow-panel .next {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.95);
    color: #fff;
    box-shadow: 0 10px 30px rgba(2,6,23,0.45);
    backdrop-filter: blur(4px);
}
.slideshow-panel .prev:hover, .slideshow-panel .next:hover,
.slideshow-panel .prev:focus, .slideshow-panel .next:focus {
    background: #fff;
    color: var(--color-accent);
    transform: translateY(-3px) scale(1.03);
}

/* CTA placed below the slideshow (outside the panel) */
.slideshow .slide-cta {
    display: inline-block;
    box-sizing: border-box;
    white-space: nowrap;
    margin: 16px 0 0 0;
    padding: 8px 16px; /* compact size */
    border-radius: 10px;
    border: 2px solid #fff;
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.6px;
    box-shadow: 0 14px 40px rgba(2,6,23,0.5);
    transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
    width: auto; /* ensure not full-width */
    min-width: 0;
}
.slideshow .slide-cta:hover, .slideshow .slide-cta:focus {
    background: #fff;
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* Button under slideshow inherits cta-button styles but customize for position */
.slideshow .cta-button {
    display: inline-block;
    margin: 16px 0 0 0;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid var(--color-accent);
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    width: auto;
    min-width: 0;
    white-space: nowrap;
}
.slideshow .cta-button:hover {
    background-color: white;
    color: var(--color-accent);
}

/* Ensure images fill slideshow uniformly */
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slideshow-indicators { position: absolute; left: 50%; transform: translateX(-50%); bottom: 22px; display: flex; gap: 8px; }
.slideshow-indicators button { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.6); cursor: pointer; }
.slideshow-indicators button.active { background: #fff; transform: scale(1.15); }

.hero-cta { display:flex; justify-content:center; padding: 32px 16px; background: var(--color-white); }
.cta-button.large { padding: 14px 26px; font-size: 1.05rem; }

@media (max-width: 640px) {
    /* On small screens keep layout full-width but not excessively tall */
    .slideshow-panel { width: 92%; height: 60vh; border-radius: 10px; }
    .slideshow-panel .prev, .slideshow-panel .next { padding: 8px 10px; font-size: 18px; }
    .slideshow-panel .slide-cta { bottom: 44px; padding: 9px 16px; }
}

@media (min-width: 1100px) {
    /* On large screens, prefer a tighter portrait panel */
    .slideshow-panel { width: 540px; height: min(86vh, 920px); }
}

.container {
    width: 95%;
    max-width: 1400px; /* Wider content area */
    margin: 0 auto;
    padding: 10px 0;
}

h1, h2, h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300; /* Light weight for elegance */
    margin-top: 0;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--color-secondary);
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 400;
    letter-spacing: 3px;
}

.logo img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 32px;
}

nav ul li a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05em;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    header {
        padding: 8px 0;
    }
    .logo img {
        height: 80px;
        width: 80px;
    }
    nav ul li {
        margin-left: 16px;
    }
    nav ul li a {
        font-size: 0.85em;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
        width: 60px;
    }
    nav ul li {
        margin-left: 10px;
    }
    nav ul li a {
        font-size: 0.75em;
        padding: 5px 8px;
    }
}

/* --- Hero Section (Home Page) --- */
.hero {
    /* Full-viewport hero background: gradient layer + image */
    background-image:url('images/kbay-background.jpg'), linear-gradient(to right, #BEFCBB, #BEFCBB);
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
    background-size: cover, cover;

    /* Fill the first visible section (viewport) */
    min-height: 100vh;
    display: flex;
    align-items: center; /* vertically center hero content */
    justify-content: center; /* horizontally center hero content */
    position: relative;
}

.hero-text {
    text-align: center;
    /* Modern, centered content container */
    width: 100%;
    max-width: 900px;
    padding: clamp(18px, 4vw, 48px);
    color: #ffffff;

    /* Subtle glass-like background with good contrast */
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
    margin: 0 16px; /* spacing on small screens */
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0 0 8px 0;
    color: #fff;
}

.hero p {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin: 0 0 24px 0;
    color: #f1f1f1;
    font-weight: 300;
}

/* Make CTA stand out inside the hero */
.hero .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0; /* ensure breathing room on small screens */
    }
    .hero-text {
        padding: 18px;
        border-radius: 10px;
    }
}

.cta-button {
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-accent);
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: white;
    color: var(--color-accent);
}

/* --- Main Content Sections --- */
section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2em;
    margin-bottom: 5px;
}

.section-heading p {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

/* --- Product Cards (Order Page/Featured) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Founder profile styles */
.founder-profile {
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.founder-photo {
    width: clamp(110px, 18vw, 200px);
    height: clamp(110px, 18vw, 200px);
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 3px solid rgba(0,0,0,0.06);
}

.founder-bio {
    max-width: 760px;
}

.founder-bio h1 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin: 0 0 8px 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.founder-bio p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .founder-profile { gap: 16px; }
    .founder-bio { text-align: center; }
}

.product-card {
    background-color: var(--color-secondary);
    text-align: left;
    overflow: hidden; /* clip zoomed image inside the card */
    border-radius: 8px; /* subtle rounding for a modern look */
}

/* Shared two-column block for aloha headings (picture + text) */
.aloha-block {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.aloha-pic {
    width: clamp(140px, 20vw, 260px);
    height: clamp(140px, 20vw, 260px);
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border: 2px solid rgba(0,0,0,0.04);
    flex: 0 0 auto;
}

.aloha-text {
    flex: 1 1 380px;
    max-width: 920px;
}

/* If an image also has .founder-photo, keep it circular */
.aloha-pic.founder-photo { border-radius: 50%; }

@media (max-width: 720px) {
    .aloha-block { flex-direction: column; align-items: center; }
    .aloha-text { text-align: center; }
}

/* Remove old hover zoom, keep base image styling */
.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
}

/* Magnifier glass overlay for product images */
.magnifier-glass {
    position: absolute;
    pointer-events: none;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    width: 160px;
    height: 160px;
    background-repeat: no-repeat;
    background-size: 440% 440%; /* 2x previous zoom */
    z-index: 10;
    display: none;
}

.product-card h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 400;
}

.product-card p {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

/* --- Footer --- */
footer {
    background-color: var(--color-beige);
    color: var(--color-primary);
    text-align: center;
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer .quick-links a {
    color: var(--color-primary);
    margin-left: 20px;
    text-decoration: none;
    font-weight: 400;
}

/* Instagram link styling */
footer .instagram-link {
    color: var(--color-primary);
    font-size: 1.6em;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

footer .instagram-link:hover {
    color: var(--color-accent);
    transform: scale(1.15);
}

/* Custom Order Form Styles */
.order-form-container {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--color-beige);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.custom-order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 500;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.form-group .required {
    color: var(--color-accent);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1em;
    color: var(--color-primary);
    background-color: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.1);
}

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

.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    background-color: white;
    cursor: pointer;
    font-size: 0.9em;
    transition: border-color 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: var(--color-accent);
}

.file-info {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.form-group button[type="submit"] {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    font-size: 1em;
}

@media (max-width: 600px) {
    .order-form-container {
        padding: 24px;
        margin: 40px 16px;
    }
}

/* Success Page Styles */
.success-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--color-beige);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 5em;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-container h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.success-message {
    margin: 30px 0;
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}

.success-details {
    margin: 40px 0;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    text-align: left;
}

.success-details h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.success-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-details ul li {
    padding: 12px 0;
    font-size: 1em;
    color: #333;
    border-bottom: 1px solid #eee;
}

.success-details ul li:last-child {
    border-bottom: none;
}

.success-details ul li i {
    color: var(--color-accent);
    margin-right: 12px;
    width: 20px;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.success-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    font-size: 0.95em;
}

.success-footer a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.success-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .success-container {
        padding: 40px 24px;
        margin: 40px 16px;
    }
    
    .success-icon {
        font-size: 4em;
    }
    
    .success-container h1 {
        font-size: 2em;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .cta-button {
        width: 100%;
    }
}

/* === Hero Section - Two Column Layout === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    display: none;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    padding: 40px 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Left Column: Slideshow */
.hero-container .slideshow {
    flex: 1 1 500px;
    max-width: 700px;
}

/* Right Column: Text Panel with Gradient */
.hero-text-panel {
    flex: 1 1 350px;
    max-width: 500px;
    padding: 48px 40px;
    background: linear-gradient(145deg, rgba(165, 42, 42, 0.95) 0%, rgba(120, 30, 30, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-text-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-text-panel h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-text-panel .hero-highlight {
    color: #fff;
    font-weight: 400;
    display: block;
}

.hero-text-panel p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 28px 0;
}

.hero-text-panel strong {
    color: #fff;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-button.cta-primary {
    padding: 14px 28px;
    font-size: 0.9rem;
    background-color: #fff;
    color: var(--color-accent);
    border: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button.cta-primary:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.cta-button.cta-secondary {
    padding: 14px 28px;
    font-size: 0.9rem;
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button.cta-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        padding: 30px 16px;
        gap: 30px;
    }
    .hero-container .slideshow {
        max-width: 100%;
    }
    .hero-text-panel {
        max-width: 100%;
        padding: 36px 28px;
        text-align: center;
    }
    .hero-text-panel h1,
    .hero-text-panel p {
        text-align: center;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .cta-button.cta-primary,
    .cta-button.cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* === Section Styles === */
.section {
    padding: 100px 0;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.section-label.light {
    color: rgba(255,255,255,0.7);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #c44);
    border-radius: 2px;
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto 60px auto;
    color: #555;
    line-height: 1.8;
    font-size: 1.15rem;
    text-align: center;
}

/* === Who Section === */
.who-section {
    background-color: var(--color-beige);
}

.who-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.who-card {
    flex: 1 1 220px;
    max-width: 260px;
    padding: 32px 24px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.who-card i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.who-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* === Diff Section === */
.diff-section {
    background: #fff;
}

.diff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.diff-card {
    flex: 1 1 260px;
    max-width: 280px;
    padding: 28px 24px;
    text-align: left;
    border-left: 4px solid var(--color-accent);
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease;
}

.diff-card:hover {
    transform: translateX(6px);
}

.diff-card h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: var(--color-primary);
}

.diff-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* === How Section === */
.how-section {
    background-color: var(--color-beige);
}

.how-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-step {
    flex: 1 1 200px;
    max-width: 240px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 1.8rem;
    font-weight: 300;
    box-shadow: 0 8px 24px rgba(165, 42, 42, 0.3);
}

.how-step h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.how-step p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* === Callout Section === */
.callout-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #333 100%);
    color: #fff;
}

.callout-container {
    text-align: center;
    max-width: 900px;
}

.callout-container h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #fff;
}

.callout-container p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.callout-section .cta-button {
    background-color: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.callout-section .cta-button:hover {
    background-color: #8a2323;
    border-color: #8a2323;
    transform: translateY(-2px);
}

/* === CTA Section === */
.cta-section {
    background-color: var(--color-beige);
}

.cta-container {
    text-align: center;
    max-width: 800px;
}

.cta-container h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-container p {
    color: #444;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-section .cta-button {
    background-color: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-section .cta-button:hover {
    background-color: #8a2323;
    border-color: #8a2323;
    transform: translateY(-2px);
}

/* === Footer === */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-credit {
    margin: 0;
    line-height: 1.6;
}

.footer-credit a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

.footer-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .hero-text-overlay {
        top: 40%;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .who-card, .diff-card {
        max-width: 100%;
    }
}

/* === About Page Styles === */
.about-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--color-beige) 0%, #fff 100%);
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 20px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.about-content p {
    color: #444;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.founder-section {
    padding: 60px 0;
    background-color: var(--color-beige);
    text-align: center;
}

.founder-section img {
    width: clamp(120px, 20vw, 200px);
    height: clamp(120px, 20vw, 200px);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border: 4px solid rgba(165, 42, 42, 0.15);
    margin-bottom: 24px;
}

.founder-section h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.founder-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.founder-section p {
    max-width: 700px;
    margin: 0 auto;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* === About Page - Story Section === */
.about-story {
    padding: 80px 0;
}

.about-story .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
}

.story-image {
    flex: 1 1 300px;
    max-width: 400px;
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: block;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--color-accent);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.4;
}

.story-content {
    flex: 1 1 400px;
    max-width: 600px;
}

.story-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.story-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 24px;
}

.story-content p {
    color: #444;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* === About Page - Values Section === */
.about-values {
    padding: 80px 0;
    background-color: var(--color-beige);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    flex: 1 1 240px;
    max-width: 280px;
    padding: 36px 28px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 2.8rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* === About Page - CTA Section === */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2a2a2a 100%);
    text-align: center;
}

.about-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
}

.about-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.about-cta .cta-button {
    background-color: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
    padding: 14px 32px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.about-cta .cta-button:hover {
    background-color: #8a2323;
    border-color: #8a2323;
    transform: translateY(-2px);
}

.about-tagline {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-story .container {
        flex-direction: column;
        gap: 40px;
    }
    .story-image {
        max-width: 300px;
    }
    .image-accent {
        display: none;
    }
    .about-tagline {
        padding: 0 20px;
    }
}

/* === Final CTA Section === */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-section .text-accent {
    color: var(--color-accent);
    font-weight: 400;
}

.final-cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-text em {
    color: #fff;
    font-style: normal;
    font-weight: 600;
}

.final-cta-actions {
    margin-bottom: 32px;
}

.final-cta-subtext {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* CTA Decorations */
.cta-decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.08;
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: pulse-slow 8s ease-in-out infinite;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    animation: pulse-slow 6s ease-in-out infinite reverse;
}

.cta-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-slow 10s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.1); opacity: 0.12; }
}

/* === Order Page Styles === */
.order-page-main {
    flex: 1;
}

/* Order Hero */
.order-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #333 100%);
    overflow: hidden;
}

.order-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/kbay-background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.order-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.order-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 16px;
}

.order-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Order Expect Section */
.order-expect {
    padding: 80px 0;
    background: var(--color-beige);
}

.expect-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.expect-card {
    flex: 1 1 240px;
    max-width: 280px;
    padding: 32px 24px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expect-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.expect-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #8a2323 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.expect-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.expect-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(165, 42, 42, 0.1);
}

.expect-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.expect-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Order Types Section */
.order-types {
    padding: 80px 0;
}

.types-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.types-text {
    flex: 1 1 400px;
    max-width: 500px;
}

.types-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 20px;
}

.types-text > p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.types-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.types-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #333;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

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

.types-list li i {
    color: var(--color-accent);
    font-size: 1rem;
}

/* Form Card */
.types-form {
    flex: 1 1 380px;
    max-width: 420px;
}

.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(165, 42, 42, 0.1);
    box-sizing: border-box;
    overflow: hidden;
}

.form-card h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.form-card > p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-button.full-width {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    padding: 14px 20px;
}

.form-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    text-align: center;
}

.form-note small {
    color: #888;
    font-size: 0.8rem;
}

.form-note i {
    margin-right: 6px;
    color: var(--color-accent);
}

/* Order CTA Section */
.order-cta {
    position: relative;
    padding: 80px 0;
    background: var(--color-beige);
    text-align: center;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(165,42,42,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.order-cta .container {
    position: relative;
    z-index: 2;
}

.order-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    margin-bottom: 12px;
}

.order-cta > .container > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button i {
    margin-right: 8px;
}

.cta-button.cta-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.cta-button.cta-secondary:hover {
    background-color: var(--color-accent);
    color: #fff;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 70px 0;
    }
    .types-content {
        flex-direction: column;
        gap: 40px;
    }
    .types-text, .types-form {
        max-width: 100%;
    }
    .form-card {
        padding: 32px 24px;
    }
}