/* ========================================
   Whitspirations Creations - Main Styles
   Color Palette: Deep Teal/Navy Blue with Gold Accents
   ======================================== */

/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    /* Primary Colors */
    --primary-navy: #0a2540;
    --primary-teal: #0d4f6d;
    --primary-dark: #051829;
    --accent-gold: #d4a574;
    --accent-gold-light: #e8c49a;
    --accent-gold-dark: #b8935f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

section {
    padding: var(--section-padding);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(13, 79, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 109, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-teal);
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-navy);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

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

.nav-link.btn-cta {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-link.btn-cta::after {
    display: none;
}

.nav-link.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
}

.scroll-indicator a:hover {
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ========================================
   Who We Serve Section
   ======================================== */
.who-we-serve {
    background: var(--light-gray);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.serve-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.serve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.serve-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.serve-card h3 {
    font-size: 1.2rem;
    color: var(--primary-navy);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    background: var(--light-gray);
}

.gallery-browser {
    margin-top: 3rem;
}

/* Folder list */
.folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* An author display value outranks the UA rule for [hidden], so the grid needs
   its own rule to stay hidden while a folder is open */
.folder-grid[hidden] {
    display: none;
}

.folder-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    text-align: left;
    padding: 1.75rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.folder-card:hover,
.folder-card:focus-visible {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    outline: none;
}

.folder-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.folder-body {
    display: block;
    flex: 1;
}

.folder-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.folder-desc {
    display: block;
    margin: 0.35rem 0 0.6rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.folder-count {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-teal);
    background: rgba(13, 79, 109, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

.folder-count.is-empty {
    color: var(--accent-gold-dark);
    background: rgba(212, 165, 116, 0.15);
}

.folder-arrow {
    flex-shrink: 0;
    color: var(--accent-gold-dark);
    transition: var(--transition);
}

.folder-card:hover .folder-arrow {
    transform: translateX(4px);
}

/* Opened folder */
.folder-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(10, 37, 64, 0.1);
}

.folder-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-navy);
    transition: var(--transition);
}

.folder-back:hover {
    background: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.folder-panel-title {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.folder-panel-title i {
    color: var(--accent-gold-dark);
    font-size: 1.3rem;
}

/* Image grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery-thumb {
    display: block;
    width: 100%;
    padding: 0;
    background: var(--white);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(10, 37, 64, 0.18);
    outline: none;
}

.gallery-thumb img {
    width: 100%;
    height: auto;
    /* Card artwork is mostly portrait, so show the whole design rather than
       cropping it to a square */
    aspect-ratio: 4 / 5;
    object-fit: contain;
    padding: 0.5rem;
    background: var(--light-gray);
}

.gallery-thumb-caption {
    display: block;
    padding: 0.9rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-navy);
    text-align: center;
}

/* Empty folder state */
.folder-empty {
    background: var(--white);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.folder-empty > i {
    display: block;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
}

.folder-empty-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.folder-empty-text {
    max-width: 520px;
    margin: 0 auto 2rem;
    color: var(--medium-gray);
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(5, 24, 41, 0.94);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-figure {
    max-width: min(1100px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-figure img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-figure figcaption {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    text-align: center;
}

.lightbox-close,
.lightbox-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--light-gray);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-tagline {
    text-align: center;
    margin-bottom: 3rem;
}

.tagline-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-gold);
    font-style: italic;
}

.about-story {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-story h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.about-story p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.belief-statement {
    font-weight: 600;
    color: var(--primary-navy);
    font-style: italic;
    padding: 1.5rem;
    background: var(--light-gray);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-box {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(10, 37, 64, 0.3);
}

.vm-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vm-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.about-commitment {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-commitment h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.commitment-list,
.differentiators-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.commitment-list li,
.differentiators-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.commitment-list i {
    color: var(--primary-teal);
    font-size: 1.2rem;
}

.differentiators-list i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* ========================================
   Approach Section
   ======================================== */
.approach {
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.approach-step:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.approach-step p {
    color: var(--medium-gray);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-gold-light);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--accent-gold);
    width: 30px;
}

.social-links {
    margin-top: 3rem;
}

.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold-light);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(13, 79, 109, 0.1);
}

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

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    grid-column: 1 / -1;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer h4 {
    color: var(--accent-gold-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    color: var(--accent-gold);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .folder-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .folder-panel-title {
        font-size: 1.3rem;
    }

    .folder-empty .btn {
        width: auto;
    }

    .lightbox {
        padding: 1rem;
        gap: 0.5rem;
    }

    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .folder-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .folder-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .about-story,
    .about-commitment,
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* ========================================
   Custom Creations
   A celebratory, colorful counterpart to the brand's navy + gold core.
   All rules are namespaced .cc-* so the rest of the site is untouched.
   ======================================== */
:root {
    --cc-berry: #b4356b;
    --cc-coral: #e2674f;
    --cc-sun: #e8a83a;
    --cc-leaf: #3f8f70;
    --cc-sky: #2f7fa8;
    --cc-violet: #6b4b9a;
    --cc-cream: #fff9f2;
    --cc-blush: #fdeef1;
}

.custom-creations {
    position: relative;
    overflow: hidden;
    /* Sits higher than the other sections: the shared 80px top padding is cut
       back so the title starts near the top of the viewport when the tab is
       opened. The Gallery above still contributes its own bottom padding, so
       the two sections keep a comfortable gap. */
    padding-top: 24px;
    background:
        radial-gradient(ellipse 60% 45% at 12% 0%, rgba(180, 53, 107, 0.13), transparent 70%),
        radial-gradient(ellipse 55% 50% at 88% 12%, rgba(47, 127, 168, 0.14), transparent 70%),
        radial-gradient(ellipse 70% 45% at 50% 100%, rgba(232, 168, 58, 0.16), transparent 70%),
        var(--cc-cream);
}

/* Scattered confetti dots, fixed behind content so scrolling stays cheap */
.cc-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        radial-gradient(circle, var(--cc-berry) 42%, transparent 44%),
        radial-gradient(circle, var(--cc-sun) 42%, transparent 44%),
        radial-gradient(circle, var(--cc-leaf) 42%, transparent 44%),
        radial-gradient(circle, var(--cc-sky) 42%, transparent 44%);
    background-size: 13px 13px, 9px 9px, 11px 11px, 8px 8px;
    background-position: 4% 14%, 22% 78%, 79% 22%, 94% 62%;
    background-repeat: repeat-y, repeat-y, repeat-y, repeat-y;
}

.custom-creations .container {
    position: relative;
    z-index: 1;
}

/* --- Intro: asymmetric split, copy left, art collage right --- */
.cc-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    /* Start-aligned, not centred: the collage column is far taller than the
       copy, and centring pushed the title down by roughly half that difference */
    align-items: start;
    margin-bottom: 4.5rem;
}

.cc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(135deg, var(--cc-berry), var(--cc-violet));
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(180, 53, 107, 0.28);
}

.cc-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin: 1.25rem 0 0.75rem;
    background: linear-gradient(100deg, var(--cc-berry) 0%, var(--cc-coral) 38%, var(--cc-sun) 68%, var(--cc-leaf) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--cc-berry);
}

.cc-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-navy);
    padding-left: 1rem;
    border-left: 5px solid var(--cc-sun);
    margin-bottom: 1.25rem;
}

.cc-lede {
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 34rem;
}

.cc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.cc-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 7px 15px;
    border-radius: 50px;
    background: var(--white);
    border: 2px solid currentColor;
    transition: var(--transition);
}

.cc-chip i {
    font-size: 0.85rem;
}

.cc-chip:hover {
    transform: translateY(-3px) rotate(-1.5deg);
}

.cc-chip-1 { color: var(--cc-berry); }
.cc-chip-2 { color: var(--cc-violet); }
.cc-chip-3 { color: var(--cc-sky); }
.cc-chip-4 { color: var(--cc-coral); }
.cc-chip-5 { color: var(--cc-leaf); }
.cc-chip-6 { color: #a37c1f; }

/* --- Collage: overlapping, tilted keepsakes pulled from the gallery --- */
.cc-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cc-art {
    background: var(--white);
    border-radius: 18px;
    padding: 0.6rem 0.6rem 0;
    box-shadow: 0 14px 34px rgba(10, 37, 64, 0.16);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cc-art img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    border-radius: 12px;
    background: var(--cc-blush);
}

.cc-art figcaption {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    color: var(--primary-navy);
    padding: 0.6rem 0.25rem 0.7rem;
}

.cc-art-a { transform: rotate(-3deg); }
.cc-art-b { transform: rotate(2.5deg) translateY(1.75rem); }
.cc-art-c { transform: rotate(2deg) translateY(-1rem); }
.cc-art-d { transform: rotate(-2deg) translateY(0.75rem); }

.cc-art-a { border-bottom: 6px solid var(--cc-berry); }
.cc-art-b { border-bottom: 6px solid var(--cc-sky); }
.cc-art-c { border-bottom: 6px solid var(--cc-sun); }
.cc-art-d { border-bottom: 6px solid var(--cc-leaf); }

.cc-art:hover {
    transform: rotate(0deg) scale(1.04);
    box-shadow: 0 20px 44px rgba(10, 37, 64, 0.24);
    z-index: 2;
}

/* --- Questionnaire --- */
.cc-form-shell {
    background: var(--white);
    border-radius: 26px;
    padding: 3rem;
    box-shadow: 0 18px 50px rgba(10, 37, 64, 0.12);
    position: relative;
    overflow: hidden;
}

/* Rainbow ribbon across the top of the card */
.cc-form-shell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg,
        var(--cc-berry) 0%, var(--cc-violet) 20%, var(--cc-sky) 40%,
        var(--cc-leaf) 60%, var(--cc-sun) 80%, var(--cc-coral) 100%);
}

.cc-form-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cc-form-head h3 {
    font-size: 1.9rem;
    margin-bottom: 0.6rem;
}

.cc-form-head p {
    color: var(--medium-gray);
    max-width: 44rem;
    margin: 0 auto;
}

.cc-fieldset {
    border: 2px solid var(--cc-blush);
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.7), var(--white));
}

.cc-fieldset legend {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-navy);
    padding: 0 0.75rem;
    margin-left: 0.5rem;
}

.cc-fieldset legend em {
    font-style: italic;
    color: var(--cc-berry);
}

.cc-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--white);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cc-fieldset-you { border-color: rgba(47, 127, 168, 0.28); }
.cc-fieldset-you .cc-step { background: linear-gradient(135deg, var(--cc-sky), #1f5f80); }
.cc-fieldset-them { border-color: rgba(180, 53, 107, 0.24); }
.cc-fieldset-them .cc-step { background: linear-gradient(135deg, var(--cc-berry), var(--cc-violet)); }
.cc-fieldset-story { border-color: rgba(232, 168, 58, 0.34); }
.cc-fieldset-story .cc-step { background: linear-gradient(135deg, var(--cc-sun), var(--cc-coral)); }

/* --- Final product picker --- */
.cc-fieldset-product { border-color: rgba(107, 75, 154, 0.26); }
.cc-fieldset-product .cc-step { background: linear-gradient(135deg, var(--cc-violet), var(--cc-leaf)); }

.cc-fieldset-hint {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: -0.4rem 0 1.25rem;
}

.cc-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* The native box is hidden but still focusable, so the visible chip carries
   the focus ring via :focus-visible on the input */
.cc-pick input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.cc-pick label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-navy);
    background: var(--white);
    border: 2px solid #e6dfd6;
    border-radius: 50px;
    padding: 9px 20px 9px 12px;
    transition: var(--transition);
}

.cc-pick-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ded5ca;
    background: var(--white);
    font-size: 0.6rem;
    color: transparent;
    flex-shrink: 0;
    transition: var(--transition);
}

.cc-pick label:hover {
    border-color: currentColor;
    transform: translateY(-2px);
}

.cc-pick input:checked + label {
    color: var(--white);
    border-color: transparent;
}

.cc-pick input:checked + label .cc-pick-box {
    background: rgba(255, 255, 255, 0.9);
    border-color: transparent;
    color: inherit;
}

.cc-pick input:focus-visible + label {
    outline: 3px solid var(--cc-sky);
    outline-offset: 3px;
}

/* Each option keeps its own colour so the row reads as a paint box */
.cc-pick-1 input:checked + label { background: var(--cc-berry); }
.cc-pick-1 input:checked + label .cc-pick-box { color: var(--cc-berry); }
.cc-pick-2 input:checked + label { background: var(--cc-violet); }
.cc-pick-2 input:checked + label .cc-pick-box { color: var(--cc-violet); }
.cc-pick-3 input:checked + label { background: var(--cc-sky); }
.cc-pick-3 input:checked + label .cc-pick-box { color: var(--cc-sky); }
.cc-pick-4 input:checked + label { background: var(--cc-leaf); }
.cc-pick-4 input:checked + label .cc-pick-box { color: var(--cc-leaf); }
.cc-pick-5 input:checked + label { background: #a37c1f; }
.cc-pick-5 input:checked + label .cc-pick-box { color: #a37c1f; }
.cc-pick-6 input:checked + label { background: var(--cc-coral); }
.cc-pick-6 input:checked + label .cc-pick-box { color: var(--cc-coral); }
.cc-pick-7 input:checked + label { background: #2f7f6a; }
.cc-pick-7 input:checked + label .cc-pick-box { color: #2f7f6a; }

/* "You have an idea?" reads as an invitation rather than one more chip */
.cc-pick-idea {
    margin-top: 1.1rem;
}

.cc-pick-idea label {
    border-style: dashed;
    border-color: var(--cc-violet);
    color: var(--cc-violet);
    background: rgba(107, 75, 154, 0.06);
    font-size: 0.92rem;
    padding-right: 24px;
}

.cc-pick-idea input:checked + label {
    background: linear-gradient(120deg, var(--cc-violet), var(--cc-berry));
    border-style: solid;
    color: var(--white);
}

.cc-pick-idea input:checked + label .cc-pick-box { color: var(--cc-violet); }

.cc-product-idea {
    margin-top: 1.25rem;
    max-width: 32rem;
}

.cc-fieldset-product .form-group input:focus {
    border-color: var(--cc-violet);
    box-shadow: 0 0 0 4px rgba(107, 75, 154, 0.14);
}

.cc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.cc-span-2 {
    grid-column: 1 / -1;
}

.cc-form .form-group input,
.cc-form .form-group select,
.cc-form .form-group textarea {
    background: var(--white);
    border-color: #e6dfd6;
}

.cc-form .form-group input::placeholder,
.cc-form .form-group textarea::placeholder {
    color: #a99f95;
}

.cc-fieldset-you .form-group input:focus {
    border-color: var(--cc-sky);
    box-shadow: 0 0 0 4px rgba(47, 127, 168, 0.14);
}

.cc-fieldset-them .form-group input:focus,
.cc-fieldset-them .form-group select:focus {
    border-color: var(--cc-berry);
    box-shadow: 0 0 0 4px rgba(180, 53, 107, 0.13);
}

.cc-fieldset-story .form-group input:focus,
.cc-fieldset-story .form-group textarea:focus {
    border-color: var(--cc-coral);
    box-shadow: 0 0 0 4px rgba(226, 103, 79, 0.14);
}

.cc-req {
    color: var(--cc-coral);
}

.cc-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cc-form-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2.25rem;
}

.cc-submit {
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.05rem;
    padding: 16px 44px;
    background: linear-gradient(120deg, var(--cc-berry), var(--cc-coral) 55%, var(--cc-sun));
    box-shadow: 0 10px 26px rgba(180, 53, 107, 0.32);
}

.cc-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(180, 53, 107, 0.4);
}

.cc-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cc-form-note {
    font-size: 0.88rem;
    color: var(--medium-gray);
    text-align: center;
}

.cc-message {
    grid-column: auto;
    margin-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .cc-art,
    .cc-chip,
    .cc-pick label,
    .cc-pick-box,
    .cc-submit {
        transition: none;
    }

    .cc-art:hover,
    .cc-chip:hover,
    .cc-pick label:hover,
    .cc-submit:hover:not(:disabled) {
        transform: none;
    }
}

@media (max-width: 992px) {
    .cc-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cc-collage {
        max-width: 540px;
        margin: 0 auto;
    }

    .cc-lede {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .cc-form-shell {
        padding: 2rem 1.25rem;
    }

    .cc-fieldset {
        padding: 1.5rem 1rem;
    }

    .cc-fieldset legend {
        font-size: 1rem;
        margin-left: 0;
        padding: 0 0.4rem;
    }

    .cc-art-a,
    .cc-art-b,
    .cc-art-c,
    .cc-art-d {
        transform: none;
    }

    .cc-collage {
        gap: 1rem;
    }

    .cc-submit {
        width: 100%;
    }

    .cc-picks {
        gap: 0.6rem;
    }

    .cc-pick label {
        font-size: 0.85rem;
        padding: 8px 16px 8px 10px;
    }
}

@media (max-width: 480px) {
    .cc-collage {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .cc-chip {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Nav tab for the new section */
.nav-link-accent {
    color: var(--cc-berry);
    font-weight: 700;
}
