*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #FAF7F2;
    --charcoal: #1C1C1A;
    --gold: #C9A84C;
    --gold-light: #E8D5A3;
    --teal: #1D6B5B;
    --teal-light: #E4F0ED;
    --coral: #C94E3A;
    --coral-light: #FAF0EE;
    --sand: #EDE8DF;
    --muted: #7A7570;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.nav-logo .logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--charcoal);
}

/* HERO */
.hero {
    /* padding-top: 8px; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    /* align-items: flex-start; */
    align-items: center !important;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: -2%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(120px, 18vw, 260px);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 168, 76, 0.12);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-left: 0;
    padding-right: 0;
    max-width: 1200px;
    /* IMPORTANT */
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--charcoal);
    color: var(--cream);
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--teal);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--charcoal);
    padding: 13px 28px;
    border: 1px solid rgba(28, 28, 26, 0.25);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: border-color 0.3s, color 0.3s;
}

.btn-outline:hover {
    border-color: var(--charcoal);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

.hero-stats {
    /* position: absolute;
    bottom: 40px;
    left: 190px; */
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

/* SECTION COMMON */
section {
    padding: 100px 5%;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-tag span {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-body {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}

/* ABOUT */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-card {
    position: absolute;
    background: var(--sand);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
}

.about-card.card-1 {
    top: 0;
    left: 0;
    width: 55%;
    height: 50%;
    background: var(--teal-light);
    border: 1px solid rgba(29, 107, 91, 0.15);
}

.about-card.card-2 {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    background: var(--coral-light);
    border: 1px solid rgba(201, 78, 58, 0.15);
}

.about-card.card-3 {
    bottom: 10%;
    left: 30%;
    width: 45%;
    height: 38%;
    background: var(--white);
    box-shadow: 0 8px 40px rgba(28, 28, 26, 0.08);
    z-index: 2;
}

.about-card-icon {
    font-size: 28px;
}

.about-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
}

.about-card-sub {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.values-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    min-width: 32px;
}

.value-text h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.value-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* VENTURES */
.ventures {
    background: var(--cream);
}

.ventures-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ventures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ACER LABS CARD */
.venture-card {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.acer-card {
    background: var(--teal);
    color: white;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    padding: 48px;
}

.acer-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.acer-card-lines {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    height: 200px;
    opacity: 0.06;
}

.venture-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.acer-icon {
    background: rgba(255, 255, 255, 0.15);
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.3px;
}

.brand-tagline {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.venture-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    /* flex: 1; */
    font-weight: 300;
    margin-bottom: 20px;
}


.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.service-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.acer-dot {
    background: rgba(255, 255, 255, 0.5);
}

.vcan-dot {
    background: rgba(28, 28, 26, 0.35);
}

.venture-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: gap 0.3s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'DM Sans', sans-serif;
    width: fit-content;
}

.venture-cta:hover {
    gap: 14px;
}

.venture-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.badge-health {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

/* V CAN CARD */
.vcan-card {
    background: var(--cream);
    border: 1px solid var(--sand);
    min-height: 560px;
    display: flex;
    flex-direction: column;
    padding: 48px;
    position: relative;
}

.vcan-card-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 6px;
}

.vcan-brand-name {
    color: var(--coral);
}

.vcan-brand-tagline {
    color: var(--muted);
}

.vcan-icon {
    background: var(--coral-light);
}

.vcan-desc {
    color: var(--muted);
}

.vcan-service {
    color: var(--charcoal);
    opacity: 0.7;
}

.vcan-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(28, 28, 26, 0.2);
    color: var(--charcoal);
    transition: gap 0.3s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: 'DM Sans', sans-serif;
    width: fit-content;
}

.vcan-cta:hover {
    gap: 14px;
}

.badge-food {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(201, 78, 58, 0.1);
    color: var(--coral);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* Flavour strip */
.flavour-strip {
    display: flex;
    gap: 8px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.flavour-pill {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.fp-1 {
    background: #FFE8D6;
    color: #B8521A;
}

.fp-2 {
    background: #D4EDDA;
    color: #1A6B35;
}

.fp-3 {
    background: #FFF3CD;
    color: #7D5800;
}

.fp-4 {
    background: #E8D5FF;
    color: #5A2090;
}

.fp-5 {
    background: #FFD6E0;
    color: #A0153E;
}

/* WHY US */
.whyus {
    background: var(--charcoal);
    color: white;
    position: relative;
    overflow: hidden;
}

.whyus-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.whyus-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.whyus .section-title {
    color: white;
}

.whyus .section-body {
    color: rgba(255, 255, 255, 0.5);
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item {
    background: var(--charcoal);
    padding: 40px 32px;
    position: relative;
    transition: background 0.3s;
}

.why-item:hover {
    background: #262624;
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
    margin-bottom: 20px;
}

.why-title {
    font-size: 15px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}

.why-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
}

/* CONTACT */
.contact {
    background: var(--white);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--cream);
    border: 1px solid var(--sand);
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    border-radius: 3px;
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.form-submit {
    background: var(--charcoal);
    color: var(--cream);
    border: none;
    padding: 15px 32px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--teal);
}

.contact-info {
    padding-top: 40px;
}

.contact-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 32px;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail dt {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
}

.contact-detail dd {
    font-size: 15px;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.6;
}

.venture-contact-links {
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin-top: 40px;
}

.vc-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid var(--sand);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.25s, background 0.25s;
}

.vc-link:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.vc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.vc-teal {
    background: var(--teal);
}

.vc-coral {
    background: var(--coral);
}

.vc-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
}

.vc-arrow {
    margin-left: auto;
    color: var(--muted);
    font-size: 16px;
}

/* FOOTER */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.5);
    padding: 48px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.footer-copy {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-ventures {
    display: flex;
    gap: 24px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-ventures span {
    opacity: 0.5;
}

.footer-ventures .f-teal {
    color: #5DCAA5;
    opacity: 1;
}

.footer-ventures .f-coral {
    color: #F0997B;
    opacity: 1;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-desc {
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-ctas {
    animation: fadeUp 0.7s 0.45s ease both;
}

.hero-stats {
    animation: fadeUp 0.7s 0.6s ease both;
}

  /* ================= HERO IMAGE FIX ================= */

  /* DESKTOP */
 /* ===== AWARD SECTION IMAGE STYLE ===== */

 .award-images {
     margin-top: 60px;
     display: flex;
     gap: 20px;
     justify-content: flex-start;
 }

 /* FIXED IMAGE SIZE */
 .award-images img {
     width: 280px;
     height: 200px;
     object-fit: cover;
     border-radius: 8px;
     flex-shrink: 0;
     transition: 0.3s ease;
 }

 /* HOVER EFFECT */
 .award-images img:hover {
     transform: translateY(-6px) scale(1.04);
 }

 /* MOBILE */
 @media (max-width: 900px) {
     .award-images {
         flex-direction: column;
         align-items: center;
     }

     .award-images img {
         width: 90%;
         max-width: 320px;
         height: 220px;
     }
 }
/* ===== FULL WIDTH PROMOTER SECTION ===== */

/* REMOVE width restriction */
.about-top {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}

/* FULL WIDTH IMAGE ROW */
.promoter-images {
    width: 100%;
    display: flex;
    gap: 20px;
}

/* ===== PROMOTER IMAGE (REAL LOOK) ===== */

.promoter-images {
    width: 100%;
    display: flex;
    gap: 30px;
}

/* IMAGE STYLE (FULL IMAGE VISIBLE) */
.promoter-images img {
    width: 80%;
    max-width: 270px;
    /* good professional size */
    height: 300px;
    /* portrait look (like real person) */

    object-fit: contain;
    /* IMPORTANT: shows full image */
    background: #f5f5f5;
    /* fills empty space nicely */

    border-radius: 12px;
    padding: 10px;
    /* gives framed look */

    flex: 1;
    transition: 0.3s ease;
}

/* HOVER */
.promoter-images img:hover {
    transform: translateY(-6px) scale(1.02);
}

/* MOBILE */
@media (max-width: 900px) {
    .promoter-images {
        flex-direction: column;
        align-items: center;
    }

    .promoter-images img {
        width: 90%;
        max-width: 320px;
        height: 400px;
    }
}
/* FIX PROMOTER TEXT WIDTH */
#promoters .section-body {
    max-width: 100%;
}
/* RESPONSIVE */
@media (max-width: 900px) {

    .about-grid,
    .ventures-grid,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .ventures-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .whyus-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
      
}


.about_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}
.secton_container{
    max-width: 1200px ;
    width: 100%;
    margin: 0 auto;
}