body {
    font-family: var(--body-font);
    background: var(--pink-bg);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: default;
}

:root {
    --pink-bg: #FFF5F5;
    --pink-light: #FFF0F2;
    --pink-card: #FFFFFF;
    --wine-dark: #3A0712;
    --wine-mid: #5C1322;
    --wine-light: #801F33;
    --copper: #C26D48;
    --copper-light: #DB8D69;
    --copper-glow: rgba(194, 109, 72, 0.12);
    --gold: #B59438;
    --gold-light: #D4B359;
    --charcoal: #2D3748;
    --muted-gray: #718096;
    --white: #FFFFFF;
    --body-font: 'Barlow', sans-serif;
    --heading-font: 'Barlow Condensed', sans-serif;
    --display-font: 'Bebas Neue', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ===== CUSTOM MOUSE PRESENTATION ===== */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--wine-mid);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--wine-mid);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.15s;
    opacity: 0.4;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--pink-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--wine-mid);
    border-radius: 4px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wine-mid);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--wine-mid);
}

.section-title {
    font-family: var(--display-font);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--wine-dark);
}

.section-title .accent {
    color: var(--copper);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.7;
    max-width: 60ch;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--wine-mid);
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 2.25rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 19, 34, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: transparent;
    color: var(--wine-mid);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 2.25rem;
    border: 2px solid var(--wine-mid);
    text-decoration: none;
    transition: all 0.25s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-secondary:hover {
    border-color: var(--wine-dark);
    color: var(--white);
    background: var(--wine-mid);
}

.divider {
    width: 4rem;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-mid), transparent);
    margin: 1.5rem 0;
}

/* ===== REVEAL RENDERS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

#nav.scrolled {
    background: rgba(255, 245, 245, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(58, 7, 18, 0.06);
    border-bottom: 1px solid rgba(92, 19, 34, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--wine-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display-font);
    font-size: 1.3rem;
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.logo-text {
    line-height: 1;
}

.logo-text span:first-child {
    display: block;
    font-family: var(--display-font);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    color: var(--wine-dark);
}

.logo-text span:last-child {
    display: block;
    font-family: var(--heading-font);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--heading-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--wine-mid);
    transition: left 0.2s, right 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--wine-mid);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    left: 1rem;
    right: 1rem;
}

.nav-cta {
    font-family: var(--heading-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white) !important;
    background: var(--wine-mid);
    padding: 0.625rem 1.5rem !important;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.nav-cta:hover {
    background: var(--wine-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--wine-dark);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--pink-light);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: var(--display-font);
    font-size: 3rem;
    letter-spacing: 0.05em;
    color: var(--wine-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.page {
    display: none;
    padding-top: 6rem;
}

.page.active {
    display: block;
}

#hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--pink-light);
    padding-top: 4rem;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(92, 19, 34, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 19, 34, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--heading-font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--copper);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    background: var(--copper);
}

.hero-headline {
    font-family: var(--display-font);
    font-size: clamp(3.8rem, 8.5vw, 8.5rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--wine-dark);
    margin-bottom: 2rem;
}

.hero-headline .accent-color {
    color: var(--copper);
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.7;
    max-width: 55ch;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(92, 19, 34, 0.12);
    background: var(--white);
}

.stat {
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(92, 19, 34, 0.08);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--display-font);
    font-size: 2.8rem;
    color: var(--wine-mid);
    line-height: 1;
}

.stat-label {
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-gray);
    margin-top: 0.5rem;
}

.ticker-wrap {
    background: var(--wine-mid);
    overflow: hidden;
    padding: 0.75rem 0;
}

.ticker-track {
    display: flex;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink-bg);
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background: var(--copper-light);
    border-radius: 50%;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

#about-section {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    background: var(--pink-light);
    padding: 2rem;
    border: 1px solid rgba(92, 19, 34, 0.06);
}

.about-card-deco {
    padding: 3rem 2rem;
    background: var(--white);
    border: 2px dashed rgba(194, 109, 72, 0.3);
    text-align: center;
}

.about-card-deco h3 {
    font-family: var(--display-font);
    font-size: 4rem;
    color: var(--wine-mid);
    line-height: 1;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.pillar {
    padding: 1.25rem;
    border: 1px solid rgba(92, 19, 34, 0.08);
    background: var(--pink-bg);
    border-left: 3px solid var(--copper);
}

.pillar-num {
    font-family: var(--display-font);
    font-size: 1.6rem;
    color: var(--wine-mid);
    margin-bottom: 0.25rem;
}

.pillar-label {
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}

#segments {
    padding: 7rem 0;
    background: var(--pink-light);
}

.segments-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.segment-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid rgba(92, 19, 34, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.segment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(58, 7, 18, 0.05);
    border-color: rgba(194, 109, 72, 0.3);
}

.segment-title {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--wine-dark);
    margin-bottom: 0.75rem;
}

.segment-desc {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.segment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-family: var(--heading-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wine-mid);
    background: var(--pink-bg);
    padding: 0.25rem 0.75rem;
}

.inner-header {
    background: var(--pink-light);
    padding: 6rem 0 4rem;
    border-bottom: 1px solid rgba(92, 19, 34, 0.06);
}

.chemicals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3.5rem 0;
}

.chem-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(92, 19, 34, 0.06);
}

.chem-name {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wine-dark);
}

.chem-formula {
    font-family: var(--display-font);
    font-size: 2rem;
    color: var(--copper);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.chem-desc {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.65;
}

.compliance-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid rgba(92, 19, 34, 0.1);
    padding: 0.875rem 1.25rem;
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--wine-dark);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    padding: 5rem 0;
}

.col-pane-visual {
    background: var(--pink-light);
    border: 1px dashed rgba(92, 19, 34, 0.15);
    padding: 3rem;
    text-align: center;
}

.col-pane-visual h4 {
    font-family: var(--display-font);
    font-size: 4.5rem;
    color: rgba(92, 19, 34, 0.15);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.feature-list li::before {
    content: '■';
    color: var(--copper);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.proj-card {
    background: var(--white);
    padding: 2.5rem;
    border-top: 4px solid var(--wine-mid);
    border-inline: 1px solid rgba(92, 19, 34, 0.06);
    border-bottom: 1px solid rgba(92, 19, 34, 0.06);
}

.proj-cat {
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 0.5rem;
}

.proj-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--wine-dark);
    margin-bottom: 0.75rem;
}

.proj-desc {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.cta-band {
    background: var(--pink-light);
    padding: 5rem 0;
    border-style: 1px solid rgba(92, 19, 34, 0.06);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

#contact-section {
    padding: 6rem 0;
    background: var(--pink-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(92, 19, 34, 0.05);
}

.contact-icon {
    width: 2.2rem;
    height: 2.2rem;
    background: var(--pink-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine-mid);
    font-size: 1.1rem;
}

.contact-label {
    font-family: var(--heading-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-gray);
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wine-dark);
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.wa-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #25D366;
    color: #444;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    text-decoration: none;
    transition: all 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.wa-button:hover {
    background: #1ebd59;
    transform: translateY(-1px);
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(92, 19, 34, 0.08);
    padding: 3.5rem;
    box-shadow: 0 4px 24px rgba(58, 7, 18, 0.02);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--heading-font);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--pink-bg);
    border: 1px solid rgba(92, 19, 34, 0.1);
    color: var(--wine-dark);
    font-family: var(--body-font);
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--wine-mid);
}

.form-group textarea {
    min-height: 7rem;
    resize: vertical;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1.5rem;
}

footer {
    background: var(--wine-dark);
    color: var(--pink-bg);
    padding: 4.5rem 0 2.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand p {
    color: rgba(255, 245, 245, 0.65);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--heading-font);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    color: rgba(255, 245, 245, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 245, 245, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 245, 245, 0.5);
}

