/* ============================================================
   ONE EARTH BEYOND — Main Stylesheet
   Palette: Earthy Green · Ocean Blue · Warm Beige
   Typefaces: Futura (display headings) · DM Sans (body) · Cormorant Garamond (italic accents)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Cormorant+Garamond:ital,wght@1,300;1,400;1,600&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--sans);
    background: var(--beige);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- DESIGN TOKENS ---- */
:root {
    /* Palette */
    --green:        #4A6741;
    --green-lt:     #7A9B6E;
    --green-dk:     #2D3F28;
    --green-pale:   #C9D8C0;
    --blue:         #2E607A;
    --blue-lt:      #5B90A8;
    --beige:        #F5F0E8;
    --beige-md:     #F5F0E8;
    --beige-dk:     #D4C8B4;
    --tan:          #C4A878;
    --tan-lt:       #DECA96;
    --dark:         #1A1E17;
    --text:         #2A2E27;
    --text-md:      #5C6057;
    --text-lt:      #8E9289;
    --white:        #FAFAF5;

    /* Typography */
    /* Futura: Mac/iOS built-in. Century Gothic = Windows fallback. */
    --display: 'Futura', 'Century Gothic', 'Trebuchet MS', 'Gill Sans', sans-serif;
    --serif:   'Cormorant Garamond', Georgia, serif;   /* italic accents only */
    --sans:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --nav-h:  80px;
    --pad-x:  64px;
    --section: 120px;
    --max-w:  1200px;

    /* Motion */
    --ease:   cubic-bezier(0.4, 0, 0.2, 1);
    --t1:     0.2s;
    --t2:     0.4s;
    --t3:     0.8s;
}

/* ---- HEADING BASE — Futura, all caps ---- */
h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ================================================================
   NAVIGATION
   Default: dark green background, white text (all pages)
   Scrolled: beige background, dark text
   ================================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad-x);
    background: var(--green-dk);
    transition:
        background var(--t2) var(--ease),
        box-shadow var(--t2) var(--ease);
}

.nav.scrolled {
    background: rgba(245, 240, 232, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(42, 46, 39, 0.1);
}

/* Logo */
.nav__logo {
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    transition: color var(--t2) var(--ease);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav__logo-img {
    height: 42px;
    width: auto;
    display: block;
}
.nav.scrolled .nav__logo { color: var(--dark); }

/* Links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(250, 250, 245, 0.82);
    transition: color var(--t2) var(--ease);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width var(--t2) var(--ease);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }
.nav__link:hover { color: var(--white); }
.nav.scrolled .nav__link { color: var(--text-md); }
.nav.scrolled .nav__link:hover { color: var(--green); }

/* CTA button in nav */
.nav__link--btn {
    padding: 8px 22px;
    border: 1px solid rgba(250, 250, 245, 0.4);
    border-radius: 1px;
}
.nav__link--btn::after { display: none; }
.nav.scrolled .nav__link--btn { border-color: var(--green); color: var(--green); }
.nav__link--btn:hover { background: rgba(250, 250, 245, 0.12); }
.nav.scrolled .nav__link--btn:hover {
    background: var(--green);
    color: var(--white) !important;
}

/* Hamburger toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.nav__toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--t2) var(--ease);
    transform-origin: center;
}
.nav.scrolled .nav__toggle span { background: var(--dark); }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile nav overlay */
.nav__mobile {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--beige);
    z-index: 899;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t2) var(--ease);
}
.nav__mobile.open { opacity: 1; pointer-events: all; }
.nav__mobile .mob-link {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-md);
    transition: color var(--t2) var(--ease);
}
.nav__mobile .mob-link:hover { color: var(--green); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--green-dk);
    padding-top: var(--nav-h);
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: var(--green-dk);
}

.hero__overlay { display: none; }

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__brand-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 28px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}

.hero__title {
    font-family: var(--display);
    font-size: clamp(2.8rem, 7vw, 7rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 24px;
}

.hero__divider {
    width: 56px; height: 1px;
    background: var(--tan-lt);
    margin: 0 auto 24px;
}

.hero__tagline {
    font-family: var(--serif);
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(250, 250, 245, 0.78);
    letter-spacing: 0.03em;
}

.hero__scroll {
    position: absolute;
    bottom: 44px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(250, 250, 245, 0.55);
}
.hero__scroll span {
    font-family: var(--sans);
    font-size: 0.67rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, rgba(250,250,245,0.55), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.55; transform: scaleY(1); }
    50%       { opacity: 1;    transform: scaleY(0.55); }
}

/* ================================================================
   MISSION & VISION
   ================================================================ */
.mission {
    padding: var(--section) var(--pad-x) 60px;
    background: var(--beige);
}
.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.mission__block { padding: 60px; }
.mission__block:first-child { border-right: 1px solid var(--beige-dk); }

.mission__label {
    font-family: var(--display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    line-height: 1.1;
}
.mission__heading {
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}
.mission__text {
    font-family: var(--sans);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.75;
}

/* ================================================================
   OUR VENTURES (Criss-Cross Layout)
   ================================================================ */
.ventures { background: var(--beige); }

.ventures__header {
    padding: 60px var(--pad-x) 60px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.ventures__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}
.ventures__title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.1;
}

/* Each venture row */
.venture {
    display: flex;
    min-height: 640px;
    border-top: 1px solid var(--beige-dk);
    background: var(--beige);
    padding: 24px;
    gap: 24px;
}
/* Even ventures: flip image to the right */
.venture:nth-child(even) { flex-direction: row-reverse; }

/* Visual / image half */
.venture__visual {
    flex: 0 0 52%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
.venture__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t3) var(--ease);
}
.venture:hover .venture__img { transform: scale(1.04); }
a.venture__visual { display: block; cursor: pointer; }

/* Clickable overlay on hover */
a.venture__visual::after {
    content: 'Visit Site ↗';
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 30, 23, 0.45);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity var(--t2) var(--ease);
}
a.venture__visual:hover::after { opacity: 1; }

.venture__name a {
    color: inherit;
    text-decoration: none;
}
.venture__name a:hover { color: var(--green); }

/* Placeholder gradient backgrounds (visible when image hasn't loaded) */
.venture__visual--gifting  { background: linear-gradient(140deg, #C4A878 0%, #9B7A48 40%, #5A3E28 100%); }
.venture__visual--living   { background: linear-gradient(140deg, #7A9B6E 0%, #4A6741 40%, #2D3F28 100%); }
.venture__visual--packaging { background: linear-gradient(140deg, #5B90A8 0%, #2E607A 40%, #1A3A4A 100%); }

/* Content half */
.venture__content {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--beige);
}
.venture:nth-child(even) .venture__content { background: var(--beige-md); }

.venture__number {
    font-family: var(--display);
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--beige-dk);
    line-height: 1;
    margin-bottom: 28px;
}
.venture__category {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}
.venture__name {
    font-family: var(--display);
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.1;
}
.venture__desc {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.9;
    margin-bottom: 44px;
}
.venture__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    transition: gap var(--t2) var(--ease), color var(--t2) var(--ease);
    width: fit-content;
}
.venture__link:hover { gap: 16px; color: var(--green-dk); }
.venture__link svg { flex-shrink: 0; transition: transform var(--t2) var(--ease); }
.venture__link:hover svg { transform: translateX(4px); }

.venture__link--soon { color: var(--text-lt); cursor: default; }
.venture__link--soon:hover { gap: 10px; color: var(--text-lt); }
.venture__link--soon:hover svg { transform: none; }

.venture__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--beige-dk);
    color: var(--text-md);
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 1px;
    margin-bottom: 28px;
}

/* ================================================================
   INNER PAGE HERO (subpages)
   ================================================================ */
.page-hero {
    height: 52vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 0 var(--pad-x) 64px;
    position: relative;
    overflow: hidden;
    background: var(--green-dk);
    /* No margin-top needed — nav is green and blends with this section */
    padding-top: var(--nav-h);
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-dk) 0%, var(--dark) 100%);
}
.page-hero__tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(26,30,23,0.45) 100%);
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
}
.page-hero__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--tan-lt);
    margin-bottom: 14px;
}
.page-hero__title {
    font-family: var(--display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

/* ================================================================
   OUR STORY PAGE
   ================================================================ */
.story {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.story__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
}

/* Founder narrative photo (full image, not a team card) */
.story__photo-wrap { position: relative; }
.story__photo,
.story__photo-ph {
    width: 100%;
    aspect-ratio: 1 / 1;  /* Square */
    object-fit: cover;
    border-radius: 30px;
}
.story__photo-ph {
    background: linear-gradient(155deg, var(--beige-dk) 0%, var(--tan) 45%, var(--green-lt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-family: var(--serif);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
}
.story__photo-caption {
    position: absolute;
    bottom: -24px; right: -24px;
    background: var(--green);
    color: var(--white);
    padding: 22px 28px;
}
.story__photo-caption strong {
    display: block;
    font-family: var(--display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.story__photo-caption em {
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,250,245,0.7);
    font-style: normal;
}

.story__text-wrap { padding-top: 8px; }
.story__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}
.story__heading {
    font-family: var(--display);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 36px;
    line-height: 1.15;
}
.story__quote {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: var(--green);
    border-left: 2px solid var(--green-pale);
    padding-left: 24px;
    margin-bottom: 32px;
    line-height: 1.65;
}
.story__body {
    font-family: var(--sans);
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.95;
}
.story__body + .story__body { margin-top: 16px; }

/* TEAM */
.team {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.team__inner { max-width: var(--max-w); margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
}

.team__origin {
    font-family: var(--sans);
    font-size: 1.08rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.95;
    max-width: 860px;
    margin: 0 auto 64px;
    text-align: justify;
}
.team__origin strong {
    font-weight: 600;
    color: var(--text);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
/* Team photos — square */
.team__photo,
.team__photo-ph {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top center;
    border-radius: 30px;
    margin-bottom: 28px;
}
.team__photo-ph {
    background: linear-gradient(155deg, var(--beige-dk) 0%, var(--tan-lt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.team__photo-ph::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(26,30,23,0.18) 100%);
}
.team__name {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}
.team__role {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}
.team__bio {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.82;
}

/* ================================================================
   ESG PAGE
   ================================================================ */
.esg-intro {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.esg-intro__inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.esg-pledge {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}
.esg-pledge__line1 {
    display: block;
    font-family: var(--display);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.15;
    white-space: nowrap;
}
.esg-pledge__line2 {
    display: block;
    font-family: var(--display);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--green-dk);
    line-height: 1.15;
    white-space: nowrap;
}

.esg-intro__text {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.9;
    margin-top: 8px;
}

.esg-pillars {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.esg-pillars__inner { max-width: var(--max-w); margin: 0 auto; }
.esg-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--beige-dk);
    margin-top: 72px;
    border: 1px solid var(--beige-dk);
}
.esg-pillar { background: var(--beige); padding: 52px 44px; }
.esg-pillar__icon { width: 44px; height: 44px; margin-bottom: 28px; color: var(--green); }
.esg-pillar__title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 18px;
}
.esg-pillar__text {
    font-family: var(--sans);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.85;
}

.esg-commitments {
    padding: var(--section) var(--pad-x);
    background: var(--green-dk);
    color: var(--white);
}
.esg-commitments__inner { max-width: var(--max-w); margin: 0 auto; }
.esg-commitments__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 72px;
}
.esg-commitment { padding: 36px; border: 1px solid rgba(255,255,255,0.1); }
.esg-commitment__num {
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--tan-lt);
    line-height: 1;
    margin-bottom: 16px;
}
.esg-commitment__title {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}
.esg-commitment__text {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(250, 250, 245, 0.65);
    line-height: 1.82;
}

/* ================================================================
   CAREERS PAGE
   ================================================================ */
.careers-intro {
    padding: var(--section) var(--pad-x) 80px;
    background: var(--beige);
}
.careers-intro__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.careers-intro__title {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 24px;
}
.careers-intro__text {
    font-family: var(--sans);
    font-size: 1.02rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.9;
}

/* Culture section */
.careers-culture {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.careers-culture__inner { max-width: var(--max-w); margin: 0 auto; }
.careers-culture__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    margin-top: 72px;
}
.cval { padding-top: 28px; border-top: 2px solid var(--green-pale); }
.cval__title {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 14px;
}
.cval__text {
    font-family: var(--sans);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.85;
}

/* Early careers / internship */
.careers-early {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.careers-early__inner { max-width: var(--max-w); margin: 0 auto; }
.careers-early__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 72px;
}
.early-card {
    padding: 40px;
    border: 1px solid var(--beige-dk);
    position: relative;
}
.early-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.early-card__title {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
}
.early-card__text {
    font-family: var(--sans);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.85;
    margin-bottom: 24px;
}
.careers-apply {
    margin-top: 64px;
    padding: 44px;
    background: var(--green-dk);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.careers-apply__text {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.careers-apply__email {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--tan-lt);
    transition: color var(--t2) var(--ease);
}
.careers-apply__email:hover { color: var(--white); }

/* Open roles */
.careers-openings {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.careers-openings__inner { max-width: var(--max-w); margin: 0 auto; }
.careers-openings__empty {
    margin-top: 64px;
    padding: 80px 40px;
    border: 1px solid var(--beige-dk);
    text-align: center;
    background: var(--beige);
}
.careers-openings__empty-title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 12px;
}
.careers-openings__empty-text {
    font-family: var(--sans);
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--text-md);
    margin-bottom: 32px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section {
    padding: var(--section) var(--pad-x);
    background: var(--beige);
}
.contact-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
}
.contact-info__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
}
.contact-info__title {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.15;
}
.contact-info__text {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-md);
    line-height: 1.88;
    margin-bottom: 52px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail__type {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: 5px;
}
.contact-detail__value {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    transition: color var(--t2) var(--ease);
}
a.contact-detail__value:hover { color: var(--green); }

/* FORM */
.form-group { margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-label {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-md);
    margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--beige-dk);
    background: transparent;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    outline: none;
    transition: border-color var(--t2) var(--ease);
    appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--green); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-lt); }
.form-textarea { resize: vertical; min-height: 120px; }

/* BUTTON */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--t2) var(--ease), color var(--t2) var(--ease);
    border-radius: 1px;
}
.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-dk); }
.btn--outline { background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }

.form-success {
    display: none;
    padding: 20px 24px;
    background: var(--green-pale);
    color: var(--green-dk);
    font-family: var(--sans);
    font-size: 0.9rem;
    margin-top: 16px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--green-dk);
    color: var(--white);
    padding: 88px var(--pad-x) 44px;
}
.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
    font-family: var(--display);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}
.footer__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(250,250,245,0.6);
    line-height: 1.75;
    max-width: 340px;
}
.footer__col-title {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tan-lt);
    margin-bottom: 28px;
}
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__link {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(250,250,245,0.6);
    transition: color var(--t2) var(--ease);
}
.footer__link:hover { color: var(--white); }
.footer__link--muted { opacity: 0.35; pointer-events: none; cursor: default; }
.footer__bottom {
    max-width: var(--max-w);
    margin: 36px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 300;
    color: rgba(250,250,245,0.28);
}

/* Accessible hide — keeps element in DOM for SEO/screen readers */
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--t3) var(--ease), transform var(--t3) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    :root { --pad-x: 40px; --section: 88px; }

    .mission__inner { grid-template-columns: 1fr; }
    .mission__block:first-child { border-right: none; border-bottom: 1px solid var(--beige-dk); }

    .venture { min-height: 520px; }
    .venture__content { padding: 60px 44px; }

    .story__inner { grid-template-columns: 1fr; gap: 72px; }
    .story__photo-caption { right: 0; }

    .team__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .esg-pillars__grid { grid-template-columns: 1fr; }
    .esg-commitments__grid { grid-template-columns: 1fr; }

    .careers-culture__grid { grid-template-columns: 1fr; }
    .careers-early__grid { grid-template-columns: 1fr; }

    .contact-section__inner { grid-template-columns: 1fr; gap: 64px; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
    :root { --pad-x: 24px; --section: 64px; --nav-h: 64px; }

    html { scroll-padding-top: 64px; }

    .nav__links { display: none; }
    .nav__toggle { display: flex; }

    .venture, .venture:nth-child(even) { flex-direction: column-reverse !important; min-height: auto; }
    .venture__visual { flex: 0 0 260px; height: 260px; width: 100%; }
    .venture__content { flex: 1; padding: 48px 28px; }
    .venture__number { font-size: 3rem; }

    .mission__block { padding: 48px 0; }
    .ventures__header { padding-bottom: 48px; }

    .team__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

    .esg-pillars__grid { gap: 0; }

    .careers-culture__grid,
    .careers-early__grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    .careers-apply { flex-direction: column; gap: 16px; }

    .hero__brand-logo { width: 100px; height: 100px; }
    .hero__title { font-size: 2.5rem; }

    /* ESG pledge — allow wrapping so text doesn't overflow narrow screens */
    .esg-pledge__line1,
    .esg-pledge__line2 {
        white-space: normal;
        font-size: 1.75rem;
    }

    /* Story photo caption — pull back inside viewport */
    .story__photo-caption {
        position: static;
        margin-top: 12px;
        display: block;
    }

    /* Page hero — less wasted height on short phone screens */
    .page-hero { min-height: 260px; padding-bottom: 40px; }

    /* ESG pillar cards — tighter horizontal padding */
    .esg-pillar { padding: 40px 24px; }

    /* Venture image area — slightly taller for better proportion */
    .venture__visual { flex: 0 0 220px; height: 220px; width: 100%; }

    /* Prevent footer nav links from being too cramped */
    .footer__inner { gap: 32px; }

    /* Ensure buttons are full-width and easy to tap */
    .btn { width: 100%; justify-content: center; }

    /* Section header spacing */
    .section-header { margin-bottom: 48px; }
}

/* ================================================================
   RESPONSIVE — SMALL PHONES (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
    .hero__brand-logo { width: 80px; height: 80px; }
    .hero__title { font-size: 2rem; letter-spacing: 0.06em; }
    .hero__tagline { font-size: 0.95rem; }

    .page-hero__title { font-size: 2.2rem; }
    .page-hero { min-height: 220px; }

    .esg-pledge__line1,
    .esg-pledge__line2 { font-size: 1.45rem; }

    .ventures__title { font-size: 2rem; }

    .venture__content { padding: 36px 20px; }
    .venture__visual { flex: 0 0 190px; height: 190px; width: 100%; }

    .mission__block { padding: 36px 0; }

    .careers-apply { padding: 28px 20px; }
    .esg-commitment { padding: 24px; }
}
