/* Being Light — Workplace Wellness Landing Page
   Aesthetic: Warm Sanctuary — serene, luminous, with clear visual rhythm */

:root {
    --color-primary: #F9C07B;
    --color-primary-light: #FBDAAB;
    --color-primary-dark: #E5A85E;
    --color-accent: #C4B5D0;
    --color-accent-light: #E8E0EE;
    --color-text: #3D3530;
    --color-text-light: #6B5E54;
    --color-bg: #FFFDFB;
    --color-bg-warm: #FDF8F3;
    --color-bg-soft: #F5EDE5;
    --color-border: #E8E0D6;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, system-ui, sans-serif;
    --radius: 20px;
    --radius-lg: 28px;
    --shadow-soft: 0 4px 32px rgba(120, 90, 50, 0.07);
    --shadow-hover: 0 16px 48px rgba(120, 90, 50, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

p {
    color: var(--color-text-light);
    line-height: 1.75;
}

.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
    background: var(--color-primary);
    padding: 14px 30px;
    border-radius: 50px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 168, 94, 0.35);
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.92rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--color-text); }

.nav-cta {
    padding: 10px 24px;
    background: var(--color-primary);
    color: var(--color-text) !important;
    border-radius: 50px;
}

.nav-cta:hover { background: var(--color-primary-dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: 0.3s;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url('hero-bg.webp') center bottom / cover no-repeat;
    background-color: #E8D5C4;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        transparent 60%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    padding-top: 15vh;
}

.hero-logo {
    width: 300px;
    height: auto;
    margin-top: 124px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: #5a5a5a;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.3rem);
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.5;
    margin-bottom: 40px;
}

.hero .btn {
    margin-top: -6px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 16px 36px;
}

/* ==================== ABOUT ==================== */
.about {
    padding: 100px 0 60px;
    background: #F5E8D4;
}

.about-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.about-inner h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.7rem);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text);
}

/* ==================== VIDEO ==================== */
.video-section {
    padding: 0 0 120px;
    background: #F5E8D4;
}

.video-wrapper {
    max-width: 1050px;
    margin: 0 auto;
}

.concept-video {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(100, 70, 30, 0.15);
    background: var(--color-bg-soft);
}

/* ==================== PILLARS (THREE E's) ==================== */
.pillars {
    padding: 120px 0;
    background: #F2DFC6;
    position: relative;
}

.pillars-header {
    text-align: center;
    margin-bottom: 64px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 0 0 36px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pillar-card h3 { margin-bottom: 10px; padding: 0 24px; }
.pillar-card p { font-size: 0.95rem; line-height: 1.7; padding: 0 24px; }

.pillar-visual {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 0;
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar-card:hover .pillar-img {
    transform: scale(1.05);
}

/* ==================== OFFERINGS ==================== */
.offerings {
    padding: 120px 0;
    background: #EED8B8;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 { margin-top: 8px; }

.offering-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.offering-card:last-child { margin-bottom: 0; }

.offering-card--reverse { grid-template-columns: 1.2fr 1fr; }
.offering-card--reverse .offering-visual { order: 2; }
.offering-card--reverse .offering-content { order: 1; }

.offering-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(100, 70, 30, 0.12);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offering-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(100, 70, 30, 0.18);
}

.offering-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offering-visual:hover .offering-img {
    transform: scale(1.03);
}

.offering-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: #9a9a9a;
    margin-bottom: 8px;
    line-height: 1;
    opacity: 0.45;
}

.offering-content h3 {
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.offering-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==================== REQUIREMENTS ==================== */
.requirements {
    padding: 120px 0;
    background: #EBD0AA;
}

.requirements .section-header {
    margin-bottom: 60px;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.requirement-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.requirement-card h3 { margin-bottom: 10px; }
.requirement-card p { font-size: 0.95rem; line-height: 1.7; }

.requirement-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(120, 90, 50, 0.1);
}

.requirement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ==================== CONTACT ==================== */
.contact {
    padding: 120px 0;
    background: var(--color-primary);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content h2 {
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact-content p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-email {
    display: inline-block;
    color: var(--color-text);
    font-size: 1.05rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(61, 53, 48, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.contact-email:hover { border-color: var(--color-text); }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
    border-radius: 16px;
    background: white;
    color: var(--color-text);
    transition: box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(107, 94, 84, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 53, 48, 0.12);
}

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

.contact-form .btn {
    align-self: flex-start;
    background: var(--color-text);
    color: var(--color-bg-warm);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.contact-form .btn:hover {
    background: #5a4d42;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 53, 48, 0.25);
}

.form-success {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.form-success h3 {
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 0;
    background: var(--color-bg-warm);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo {
    font-family: var(--font-display);
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 420px;
}

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

.footer-links a {
    font-size: 0.92rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--color-text); }

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered entrance */
.pillar-card:nth-child(1) { transition-delay: 0s; }
.pillar-card:nth-child(2) { transition-delay: 0.15s; }
.pillar-card:nth-child(3) { transition-delay: 0.3s; }

.requirement-card:nth-child(1) { transition-delay: 0s; }
.requirement-card:nth-child(2) { transition-delay: 0.15s; }
.requirement-card:nth-child(3) { transition-delay: 0.3s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero { min-height: 100vh; }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .pillars-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .pillar-visual {
        height: 280px;
    }

    .offering-card,
    .offering-card--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .offering-card--reverse .offering-visual,
    .offering-card--reverse .offering-content {
        order: unset;
    }

    .offering-visual {
        min-height: 260px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--color-bg-warm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .nav-links.active { display: flex; }
    .nav-links a { font-size: 1.5rem; }
    .nav-links .nav-cta { font-size: 1rem; padding: 14px 32px; }
    .nav-toggle { display: flex; z-index: 101; }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .container { padding: 0 20px; }

    .about, .offerings, .pillars,
    .requirements, .contact {
        padding: 80px 0;
    }

    .hero-subtitle { letter-spacing: 0.1em; }

    .pillar-visual { height: 240px; }

    .offering-visual {
        min-height: 200px;
    }

    .requirement-icon {
        width: 130px;
        height: 130px;
    }

    .offering-number {
        font-size: 2.5rem;
    }

    .btn { padding: 14px 28px; }
}
