/* ==========================================================================
   Soilman Exports — theme stylesheet
   Built on Bootstrap 5.3 (local). Editorial dark-band layout with a
   navy + leaf-green palette taken from the brand mark.
   --------------------------------------------------------------------------
   01. Tokens
   02. Base & typography
   03. Helpers (ornaments, buttons, section framing)
   04. Scroll animation states
   05. Preloader / progress
   06. Announcement bar & header
   07. Mobile drawer
   08. Dot navigation
   09. Hero
   10. Story band & craft rail
   11. Split sections
   12. Image bands & connectors
   13. Feature cards
   14. Product range
   15. Applications
   16. Quality & counters
   17. Banana fabric
   18. Process timeline
   19. Buyers CTA
   20. FAQ
   21. Contact
   22. Footer & floating actions
   23. Responsive
   ========================================================================== */

/* ------------------------------ 01. Tokens ------------------------------ */
:root {
    /* brand */
    --navy-900: #0B1C2E;
    --navy-800: #12304E;
    --navy-700: #1B4068;
    --leaf-600: #5F8C2E;
    --leaf-500: #6E9B37;
    --leaf-400: #8FBF4D;
    --leaf-300: #B4D67B;

    /* editorial surfaces */
    --forest-900: #0D1811;
    --forest-800: #12241C;
    --forest-700: #182F24;
    --forest-600: #1E3A2C;
    --cream: #F2EFE6;
    --cream-dim: rgba(242, 239, 230, .68);
    --cream-faint: rgba(242, 239, 230, .38);
    --hairline: rgba(242, 239, 230, .16);

    /* type */
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* rhythm */
    --band-py: clamp(4.5rem, 9vw, 8.5rem);
    --shell: 1.25rem;

    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------- 02. Base & type --------------------------- */
* { scroll-margin-top: 92px; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* the parked offcanvas drawer sits off the right edge; clip at the root so
       it can never add horizontal scroll on small screens */
    overflow-x: hidden;
}

body {
    background: var(--forest-800);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: .012em;
    overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6, .display-serif {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: .01em;
}

a {
    color: var(--leaf-300);
    text-decoration: none;
    transition: color .3s var(--ease);
}

a:hover { color: var(--leaf-400); }

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

p { margin-bottom: 1.1rem; }

::selection {
    background: var(--leaf-500);
    color: #fff;
}

/* Slim custom scrollbar on desktop */
@media (min-width: 992px) {
    ::-webkit-scrollbar { width: 10px; }
    ::-webkit-scrollbar-track { background: var(--forest-900); }
    ::-webkit-scrollbar-thumb {
        background: var(--leaf-600);
        border: 3px solid var(--forest-900);
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--leaf-400); }
}

/* ----------------------------- 03. Helpers ----------------------------- */
.band {
    position: relative;
    padding: var(--band-py) 0;
}

.band--forest { background: var(--forest-800); }
.band--deep   { background: var(--forest-900); }
.band--raised { background: var(--forest-700); }
.band--navy   { background: linear-gradient(160deg, var(--navy-900), #0d2438 55%, var(--forest-900)); }

/* soft grain so the flat bands do not look plastic */
.band--grain::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background-image: radial-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 3px 3px;
}

.band > .container-xl,
.band > .container-fluid { position: relative; z-index: 2; }

/* Section eyebrow: — ◆ TITLE ◆ — */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    margin-bottom: 1.35rem;
}

.ornament__rule {
    width: clamp(38px, 8vw, 92px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-faint));
}

.ornament__rule + .ornament__rule,
.ornament > .ornament__rule:last-child {
    background: linear-gradient(90deg, var(--cream-faint), transparent);
}

.ornament__gem {
    width: 7px;
    height: 7px;
    background: var(--leaf-400);
    transform: rotate(45deg);
    flex: none;
}

.ornament__text {
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--cream-dim);
    white-space: nowrap;
}

.ornament--start { justify-content: flex-start; }
.ornament--start .ornament__rule:first-child { display: none; }

.section-title {
    font-size: clamp(1.7rem, 4.4vw, 3.6rem);
    margin-bottom: 1rem;
    overflow-wrap: break-word;
}

.section-title em {
    font-style: italic;
    color: var(--leaf-300);
}

.section-lead {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--cream-dim);
    max-width: 46rem;
    margin-inline: auto;
}

.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

.text-leaf { color: var(--leaf-400) !important; }
.text-cream { color: var(--cream) !important; }
.text-dim { color: var(--cream-dim) !important; }

.caps {
    font-size: .78rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
    --bs-btn-focus-box-shadow: 0 0 0 .2rem rgba(143, 191, 77, .28);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 999px;
    border-width: 1px;
    transition: all .38s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn i { font-size: 1rem; }
.btn span { white-space: nowrap; }

.btn-leaf {
    background: var(--leaf-500);
    border-color: var(--leaf-500);
    color: #08150C;
}

.btn-leaf:hover,
.btn-leaf:focus-visible {
    background: var(--leaf-400);
    border-color: var(--leaf-400);
    color: #08150C;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -14px rgba(143, 191, 77, .75);
}

.btn-outline-cream {
    background: transparent;
    border-color: var(--hairline);
    color: var(--cream);
}

.btn-outline-cream:hover,
.btn-outline-cream:focus-visible {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--forest-900);
    transform: translateY(-3px);
}

.btn-navy {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--cream);
}

.btn-navy:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; transform: translateY(-3px); }

.btn-sm { padding: .7rem 1.4rem; font-size: .72rem; }
.btn-lg { padding: 1.15rem 2.4rem; font-size: .84rem; }

/* Text link with an animated rule */
.link-rule {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream);
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--hairline);
}

.link-rule i { transition: transform .35s var(--ease); }
.link-rule:hover { color: var(--leaf-300); border-color: var(--leaf-500); }
.link-rule:hover i { transform: translateX(5px); }

/* Address-as-map-link. Shared by the footer, the contact card and the mobile
   drawer so the affordance reads the same wherever an address appears. */
.map-link {
    display: block;
    color: inherit;
    transition: color .35s var(--ease);
}

.map-link:hover { color: var(--cream); }

/* the address is its own block so the note never trails the last address line */
.map-link > span:first-child { display: block; }

.map-note {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .32rem;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--leaf-400);
    transition: color .35s var(--ease);
}

.map-note i {
    font-size: .76rem;
    line-height: 1;
    color: inherit;
}

.map-link:hover .map-note { color: var(--leaf-300); }

/* ---------------------- 04. Scroll animation states ---------------------- */
[data-anim] {
    opacity: 0;
    transition:
        opacity .9s var(--ease-soft),
        transform 1s var(--ease),
        clip-path 1.1s var(--ease);
    transition-delay: var(--anim-delay, 0ms);
    will-change: opacity, transform;
}

[data-anim="up"]     { transform: translateY(46px); }
[data-anim="down"]   { transform: translateY(-40px); }
[data-anim="left"]   { transform: translateX(58px); }
[data-anim="right"]  { transform: translateX(-58px); }
[data-anim="zoom"]   { transform: scale(.9); }
[data-anim="fade"]   { transform: none; }
[data-anim="flip"]   { transform: perspective(900px) rotateX(14deg) translateY(34px); }

/* The curtain sits on the CHILDREN, not on the observed element itself: a
   clip-path that collapses an element to zero area also hides it from
   IntersectionObserver, so a masked element could never trigger its own
   reveal and stayed invisible forever. */
[data-anim="mask"] { transform: scale(1.06); }

[data-anim="mask"] > *,
[data-anim="mask-x"] > * {
    transition: clip-path 1.1s var(--ease);
    transition-delay: var(--anim-delay, 0ms);
}

[data-anim="mask"] > *   { clip-path: inset(0 0 100% 0); }
[data-anim="mask-x"] > * { clip-path: inset(0 100% 0 0); }

[data-anim="mask"].is-visible > *,
[data-anim="mask-x"].is-visible > * { clip-path: inset(0 0 0 0); }

/* No clip-path here: the mask curtain now lives on the children, and clipping
   a revealed element to its own box cut off anything meant to sit outside it
   (the craft tiles corner ticks). */
[data-anim].is-visible {
    opacity: 1;
    transform: none;
}

/* Headline that reveals word by word */
.reveal-words > span {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.reveal-words > span > i {
    display: inline-block;
    font-style: inherit;
    transform: translateY(105%);
    transition: transform .95s var(--ease);
    transition-delay: calc(var(--w, 0) * 70ms);
}

.reveal-words.is-visible > span > i { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    [data-anim],
    [data-anim].is-visible,
    [data-anim="mask"] > *,
    [data-anim="mask-x"] > * {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        transition: none !important;
    }

    .reveal-words > span > i { transform: none !important; transition: none !important; }
    .parallax__img { transform: none !important; }
}

/* ---------------------- 05. Preloader & progress bar --------------------- */
.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 1080;
    background: rgba(0, 0, 0, .25);
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--navy-700), var(--leaf-400));
    transition: width .1s linear;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: var(--forest-900);
    transition: opacity .7s var(--ease), visibility .7s;
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
}

.preloader__inner { text-align: center; }

.preloader__inner img {
    width: 96px;
    height: auto;
    animation: floaty 2.4s ease-in-out infinite;
}

.preloader__bar {
    display: block;
    width: 170px;
    height: 2px;
    margin: 1.6rem auto 0;
    background: rgba(242, 239, 230, .14);
    overflow: hidden;
}

.preloader__bar i {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--leaf-400);
    animation: loadsweep 1.1s ease-in-out infinite;
}

@keyframes loadsweep {
    0%   { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* -------------------- 06. Announcement bar & header --------------------- */
.announce {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1035;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(242, 239, 230, .08);
    font-size: .78rem;
    transition: transform .45s var(--ease), opacity .35s;
}

.announce.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.announce__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 40px;
}

.announce__text {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--cream-dim);
    letter-spacing: .06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announce__text i { color: var(--leaf-400); }

.announce__meta {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.announce__meta a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--cream-dim);
    letter-spacing: .04em;
}

.announce__meta a:hover { color: var(--leaf-300); }
.announce__meta i { color: var(--leaf-500); }

.announce__social { display: flex; gap: .85rem; padding-left: 1.4rem; border-left: 1px solid var(--hairline); }
.announce__social i { font-size: .95rem; }

.site-header {
    position: fixed;
    inset: 40px 0 auto 0;
    z-index: 1030;
    transition: background .45s var(--ease), box-shadow .45s, top .45s var(--ease), padding .45s var(--ease);
    padding: .55rem 0;
}

.site-header.is-stuck {
    top: 0;
    background: rgba(13, 24, 17, .93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px -22px rgba(0, 0, 0, .95);
    border-bottom: 1px solid var(--hairline);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--cream);
    flex: none;
}

.brand__logo {
    width: 64px;
    height: 54px;
    object-fit: contain;
    transition: transform .5s var(--ease);
}

.brand:hover .brand__logo { transform: scale(1.06) rotate(-3deg); }

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__text strong {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.brand__text strong em {
    font-style: normal;
    color: var(--leaf-400);
}

.brand__text small {
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-top: .25rem;
}

.site-nav__list { display: flex; align-items: center; gap: .35rem; }

.site-nav__link {
    position: relative;
    display: block;
    padding: .55rem .95rem;
    font-size: .76rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--cream);
    opacity: .8;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: .95rem;
    right: .95rem;
    bottom: .3rem;
    height: 1px;
    background: var(--leaf-400);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--cream);
    opacity: 1;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__actions { display: flex; align-items: center; gap: .85rem; }

.nav-toggle {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: 50%;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--cream);
    transition: transform .35s var(--ease), width .35s var(--ease);
}

.nav-toggle span:nth-child(2) { width: 13px; margin-left: auto; }
.nav-toggle:hover { border-color: var(--leaf-500); }
.nav-toggle:hover span:nth-child(2) { width: 20px; }

/* -------------------------- 07. Mobile drawer --------------------------- */
.mobile-nav {
    width: min(400px, 88vw);
    background: var(--forest-900);
    border-left: 1px solid var(--hairline);
    color: var(--cream);
}

.mobile-nav .offcanvas-header { padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--hairline); }
.mobile-nav .offcanvas-title img { width: 74px; height: auto; }
.mobile-nav .btn-close { filter: invert(1) grayscale(1) brightness(2); opacity: .7; }
.mobile-nav .offcanvas-body { padding: 1.6rem; display: flex; flex-direction: column; }

.mobile-nav__list { margin: 0 0 auto; }

.mobile-nav__list li {
    border-bottom: 1px solid var(--hairline);
    opacity: 0;
    transform: translateX(24px);
}

.offcanvas.show .mobile-nav__list li {
    animation: drawerIn .5s var(--ease) forwards;
    animation-delay: calc(var(--d) * 60ms + 120ms);
}

@keyframes drawerIn {
    to { opacity: 1; transform: translateX(0); }
}

.mobile-nav__list a {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.05rem .2rem;
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--cream);
}

.mobile-nav__list a:hover { color: var(--leaf-300); padding-left: .6rem; }
.mobile-nav__list a i { margin-left: auto; font-size: .95rem; opacity: .5; }

.mobile-nav__num {
    font-family: var(--sans);
    font-size: .6rem;
    letter-spacing: .2em;
    color: var(--leaf-500);
}

.mobile-nav__foot { padding-top: 2rem; }

.mobile-nav__contact li {
    display: flex;
    gap: .7rem;
    font-size: .85rem;
    color: var(--cream-dim);
    margin-bottom: .7rem;
}

.mobile-nav__contact i { color: var(--leaf-500); }

.mobile-nav__social { display: flex; gap: .7rem; margin-top: 1.4rem; }

.mobile-nav__social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--cream);
}

.mobile-nav__social a:hover { background: var(--leaf-500); border-color: var(--leaf-500); color: #08150C; }

/* ------------------------- 08. Dot navigation --------------------------- */
/* Parked on the left so the floating WhatsApp / back-to-top buttons on the
   bottom right can never sit on top of the dots. */
.dot-nav {
    position: fixed;
    top: 50%;
    left: 1.6rem;
    transform: translateY(-50%);
    z-index: 1020;
    text-align: center;
}

.dot-nav__label {
    display: block;
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--cream-faint);
    writing-mode: vertical-rl;
    margin: 0 auto 1rem;
}

.dot-nav ul { display: flex; flex-direction: column; align-items: center; gap: .95rem; }

/* scoped to the section list — the social links below use real icon glyphs */
.dot-nav ul a {
    position: relative;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
}

.dot-nav ul a i {
    width: 7px;
    height: 7px;
    border: 1px solid var(--cream-faint);
    transform: rotate(45deg);
    transition: all .4s var(--ease);
}

.dot-nav ul a em {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    white-space: nowrap;
    font-style: normal;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(13, 24, 17, .9);
    border: 1px solid var(--hairline);
    padding: .3rem .6rem;
    opacity: 0;
    pointer-events: none;
    transition: all .35s var(--ease);
}

.dot-nav ul a:hover em { opacity: 1; transform: translateY(-50%) translateX(0); }
.dot-nav ul a:hover i { border-color: var(--leaf-400); }

.dot-nav ul a.is-active i {
    background: var(--leaf-400);
    border-color: var(--leaf-400);
    transform: rotate(45deg) scale(1.35);
    box-shadow: 0 0 0 4px rgba(143, 191, 77, .18);
}

.dot-nav__social {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--hairline);
}

.dot-nav__social a { color: var(--cream-faint); font-size: .85rem; }
.dot-nav__social a:hover { color: var(--leaf-400); }

/* ------------------------------ 09. Hero -------------------------------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    /* the extra bottom padding keeps the centred content clear of the scroll cue,
       but it gives way on short viewports so the CTAs stay above the fold */
    padding: clamp(7rem, 15vh, 9rem) 0 clamp(5.5rem, 11vh, 10rem);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: -8% 0 -8% 0;
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.12);
    animation: heroZoom 14s var(--ease-soft) forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(120% 80% at 50% 30%, rgba(9, 20, 14, .28), rgba(9, 20, 14, .78) 70%),
        linear-gradient(180deg, rgba(11, 28, 46, .55), rgba(13, 24, 17, .35) 40%, var(--forest-800) 99%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero__eyebrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: var(--cream);
    margin-bottom: .2rem;
}

/* Brand lockup sitting between the eyebrow and the headline. The flanking
   rules mirror the "— EXPORTS —" device in the logo. */
.hero__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(.7rem, 2vw, 1.4rem);
    margin: .35rem auto 1.15rem;
    max-width: 34rem;
}

.hero__brand-rule {
    flex: 1 1 auto;
    max-width: 7rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 239, 230, .7));
}

.hero__brand-rule:last-child {
    background: linear-gradient(90deg, rgba(242, 239, 230, .7), transparent);
}

.hero__brand-name {
    font-family: var(--serif);
    font-size: clamp(.82rem, 1.6vw, 1.06rem);
    text-transform: uppercase;
    letter-spacing: clamp(.24em, .6vw, .42em);
    /* the wide tracking leaves a gap after the last letter — pull it back */
    text-indent: clamp(.24em, .6vw, .42em);
    white-space: nowrap;
    /* the hero photograph has bright patches behind this line */
    text-shadow: 0 2px 14px rgba(6, 14, 10, .75);
    color: var(--cream);
}

.hero__brand-name em {
    font-style: normal;
    color: var(--leaf-300);
}

.hero__title {
    font-size: clamp(1.85rem, 8.4vw, 7rem);
    text-transform: uppercase;
    letter-spacing: clamp(.02em, 1.1vw, .18em);
    line-height: 1.04;
    margin: 0 0 1.6rem;
    text-shadow: 0 18px 50px rgba(0, 0, 0, .45);
    overflow-wrap: break-word;
}

.hero__sub {
    max-width: 44rem;
    margin: 0 auto 1.8rem;
    font-size: clamp(.74rem, 1.5vw, .86rem);
    letter-spacing: .3em;
    text-transform: uppercase;
    line-height: 2.3;
    color: rgba(242, 239, 230, .82);
}

.hero__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .55rem 1.5rem;
    margin-bottom: clamp(1.5rem, 3.4vh, 2.6rem);
    font-size: .72rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.hero__pills span { display: inline-flex; align-items: center; gap: 1.5rem; }
.hero__pills span::after {
    content: "";
    width: 5px;
    height: 5px;
    background: var(--leaf-500);
    transform: rotate(45deg);
}

.hero__pills span:last-child::after { display: none; }

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--cream-faint);
}

.hero__scroll i {
    display: block;
    width: 1px;
    height: 54px;
    background: linear-gradient(180deg, var(--leaf-400), transparent);
    position: relative;
    overflow: hidden;
}

.hero__scroll i::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 1px;
    height: 18px;
    background: var(--cream);
    animation: scrollTick 2s var(--ease-soft) infinite;
}

@keyframes scrollTick {
    0%   { transform: translateY(-20px); opacity: 0; }
    35%  { opacity: 1; }
    100% { transform: translateY(56px); opacity: 0; }
}

/* ---------------------- 10. Story band & craft rail ---------------------- */
.story-lines {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.4vw, 1.85rem);
    line-height: 1.6;
    color: var(--cream);
    max-width: 52rem;
    margin: 0 auto;
}

.story-lines em { font-style: italic; color: var(--cream-dim); }

/* the company name opens the line — set apart by tracking, not by weight */
.story-lines strong {
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--leaf-300);
}

/* The five stages — bamboo/banana, fibre, yarn, fabric — read as one sequence.
   The row is a snap scroller: centred and static while the tiles fit, and it
   only starts scrolling once there are more of them than the width allows. */
.craft-rail {
    --tile-w: clamp(112px, 12.5vw, 148px);
    --tile-h: calc(var(--tile-w) * 1.15);
    --tile-radius: clamp(18px, 2.4vw, 28px);
    --rail-pad: 22px;   /* headroom for the hover lift and the corner ticks */
    position: relative;
    margin-top: clamp(2.6rem, 4.6vw, 4rem);
}

/* the thread lives on the rail, not the scroller, so it stays put while the
   tiles travel over it */
.craft-rail__thread {
    position: absolute;
    top: calc(var(--rail-pad) + var(--tile-h) / 2);
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hairline) 14%, var(--hairline) 86%, transparent);
}

.craft-row {
    display: flex;
    /* safe centring: centred while everything fits, and if it ever overflows
       the row scrolls rather than clipping the first tile out of reach */
    justify-content: safe center;
    gap: clamp(1.5rem, 4vw, 3.4rem);
    /* the scroller clips the y axis too, so the padding buys the lift its room */
    padding: var(--rail-pad) 0 .5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--hairline) transparent;
}

.craft-row::-webkit-scrollbar { height: 3px; }
.craft-row::-webkit-scrollbar-track { background: transparent; }
.craft-row::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 3px; }

.craft-tile {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: var(--tile-w);
    margin: 0;
    text-align: center;
    /* a swipe settles with a tile centred rather than halfway between two */
    scroll-snap-align: center;
}

/* outer frame = a thin lit mat around the photograph */
.craft-tile__frame {
    position: relative;
    width: var(--tile-w);
    height: var(--tile-h);
    margin: 0 auto .95rem;
    padding: 5px;
    border-radius: var(--tile-radius);
    background: linear-gradient(155deg, rgba(242, 239, 230, .2), rgba(242, 239, 230, .03) 58%);
    box-shadow: 0 18px 34px rgba(6, 14, 10, .38);
    transition: transform .55s var(--ease), background .55s, box-shadow .55s;
}

/* Corner ticks that draw themselves in on hover. Cream, not leaf: the mat
   turns leaf green on hover, so green ticks disappeared into it and only the
   stub outside the frame showed. */
.craft-tile__frame::before,
.craft-tile__frame::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    /* all four borders present, two of them transparent: zero-width borders next
       to a radius render as a stub in Chrome instead of a clean bracket */
    border: 1px solid transparent;
    opacity: 0;
    transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.craft-tile__frame::before {
    top: -10px;
    left: -10px;
    border-top-color: var(--cream);
    border-left-color: var(--cream);
    transform: translate(6px, 6px);
}

.craft-tile__frame::after {
    right: -10px;
    bottom: -10px;
    border-bottom-color: var(--cream);
    border-right-color: var(--cream);
    transform: translate(-6px, -6px);
}

.craft-tile__media {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--tile-radius) - 5px);
    overflow: hidden;
}

.craft-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92);
    transition: transform .9s var(--ease), filter .6s;
}

/* an even, light wash — enough to tie five different photographs together,
   not so much that it covers them */
.craft-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 24, 17, .1), rgba(13, 24, 17, .26));
    transition: opacity .55s;
}

.craft-tile:hover .craft-tile__frame {
    transform: translateY(-8px);
    background: linear-gradient(155deg, rgba(143, 191, 77, .6), rgba(242, 239, 230, .06) 62%);
    box-shadow: 0 26px 46px rgba(6, 14, 10, .5);
}

.craft-tile:hover .craft-tile__frame::before,
.craft-tile:hover .craft-tile__frame::after { opacity: 1; transform: translate(0, 0); }

.craft-tile:hover .craft-tile__media img { transform: scale(1.09); filter: saturate(1.05); }
.craft-tile:hover .craft-tile__media::after { opacity: .45; }

/* index and name sit below the photograph so nothing covers the image */
.craft-tile__label { display: block; }

.craft-tile__step {
    display: block;
    margin-bottom: .28rem;
    font-family: var(--sans);
    font-size: .62rem;
    letter-spacing: .28em;
    text-indent: .28em;
    color: var(--leaf-400);
    transition: color .4s;
}

.craft-tile__name {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(.95rem, 1.4vw, 1.08rem);
    color: var(--cream-dim);
    letter-spacing: .06em;
    transition: color .4s;
}

.craft-tile:hover .craft-tile__step { color: var(--leaf-300); }
.craft-tile:hover .craft-tile__name { color: var(--cream); }

@media (prefers-reduced-motion: reduce) {
    .craft-row { scroll-behavior: auto; }
}

/* --------------------------- 11. Split sections -------------------------- */
.split { display: grid; grid-template-columns: repeat(2, 1fr); align-items: stretch; }

.split--reverse .split__media { order: 2; }

.split__media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.split__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--forest-700);
}

.split__body .section-title { font-size: clamp(1.8rem, 3vw, 2.8rem); }

.split__play {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--leaf-500);
    color: #08150C;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 0 0 0 rgba(110, 155, 55, .55);
    animation: pulseRing 2.6s infinite;
}

@keyframes pulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(110, 155, 55, .5); }
    70%  { box-shadow: 0 0 0 22px rgba(110, 155, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(110, 155, 55, 0); }
}

/* ---------------------- 12. Image bands & connectors --------------------- */
.image-band {
    position: relative;
    height: clamp(280px, 46vw, 520px);
    overflow: hidden;
}

.parallax__img {
    position: absolute;
    inset: -14% 0;
    width: 100%;
    height: 128%;
    object-fit: cover;
    will-change: transform;
}

.image-band__caption {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background: linear-gradient(180deg, transparent, rgba(9, 20, 14, .82));
    text-align: center;
}

.image-band__caption p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    margin: 0;
    color: var(--cream);
}

/* the round "+" that stitches two bands together, straight from the mockup */
.connector {
    position: relative;
    z-index: 6;
    height: 0;
    display: flex;
    justify-content: center;
}

.connector button,
.connector span {
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--leaf-500);
    color: #08150C;
    border: 4px solid var(--forest-800);
    font-size: 1.15rem;
    line-height: 1;
    transition: transform .45s var(--ease), background .35s;
    cursor: pointer;
}

.connector button:hover {
    background: var(--leaf-400);
    transform: translateY(-50%) rotate(90deg) scale(1.08);
}

/* --------------------------- 13. Feature cards --------------------------- */
.feature-card {
    height: 100%;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--forest-700);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform .5s var(--ease), border-color .5s, background .5s;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, var(--navy-700), var(--leaf-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(143, 191, 77, .35);
    background: var(--forest-600);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(143, 191, 77, .12);
    border: 1px solid rgba(143, 191, 77, .3);
    color: var(--leaf-400);
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: transform .5s var(--ease), background .4s;
}

.feature-card:hover .feature-card__icon {
    background: var(--leaf-500);
    color: #08150C;
    transform: rotate(-8deg) scale(1.06);
}

.feature-card h3 {
    font-size: 1.45rem;
    margin-bottom: .7rem;
}

.feature-card p {
    font-size: .93rem;
    color: var(--cream-dim);
    margin: 0;
}

.feature-card__num {
    position: absolute;
    top: .4rem;
    right: 1rem;
    font-family: var(--serif);
    font-size: 4.4rem;
    line-height: 1;
    color: rgba(242, 239, 230, .05);
    pointer-events: none;
}

/* --------------------------- 14. Product range --------------------------- */
.range-list { counter-reset: range; }

.range-list li {
    counter-increment: range;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.05rem .4rem;
    border-bottom: 1px solid var(--hairline);
    font-family: var(--serif);
    font-size: 1.32rem;
    color: var(--cream);
    transition: color .35s, padding .35s var(--ease), background .35s;
}

.range-list li::before {
    content: counter(range, decimal-leading-zero);
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .16em;
    color: var(--leaf-500);
    flex: none;
    width: 26px;
}

.range-list li::after {
    content: "";
    margin-left: auto;
    width: 6px;
    height: 6px;
    background: var(--hairline);
    transform: rotate(45deg);
    transition: background .35s, transform .45s var(--ease);
}

.range-list li:hover {
    padding-left: 1.1rem;
    color: var(--leaf-300);
    background: linear-gradient(90deg, rgba(143, 191, 77, .07), transparent);
}

.range-list li:hover::after { background: var(--leaf-400); transform: rotate(135deg); }

.range-note {
    font-size: .85rem;
    font-style: italic;
    color: var(--cream-faint);
    margin-top: 1.4rem;
}

.range-figure {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 280px;
}

/* only the product-range figure stretches to match its text column */
.range-figure--fill {
    height: 100%;
    min-height: clamp(320px, 40vw, 560px);
}

.range-figure img { width: 100%; height: 100%; object-fit: cover; }

.range-figure__tag {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    z-index: 2;
    background: rgba(13, 24, 17, .85);
    border: 1px solid var(--hairline);
    backdrop-filter: blur(6px);
    padding: .85rem 1.2rem;
}

.range-figure__tag strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--leaf-300);
}

.range-figure__tag span {
    font-size: .64rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

/* --------------------------- 15. Applications ---------------------------- */
.app-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    border-radius: 4px;
    color: var(--cream);
}

.app-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease), filter .6s;
    filter: saturate(.8) brightness(.85);
}

.app-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 28, 46, .1) 30%, rgba(9, 20, 14, .9));
    transition: background .5s;
}

.app-card__body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1.6rem;
    transform: translateY(0);
    transition: transform .5s var(--ease);
}

.app-card__body h3 {
    font-size: 1.5rem;
    margin-bottom: .35rem;
}

.app-card__body p {
    font-size: .86rem;
    color: var(--cream-dim);
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .55s var(--ease), opacity .45s;
}

.app-card__index {
    position: absolute;
    top: 1.2rem;
    left: 1.6rem;
    z-index: 2;
    font-size: .64rem;
    letter-spacing: .24em;
    color: var(--leaf-300);
}

.app-card:hover img { transform: scale(1.09); filter: saturate(1) brightness(1); }
.app-card:hover::after { background: linear-gradient(180deg, rgba(11, 28, 46, .05) 20%, rgba(9, 20, 14, .94)); }
.app-card:hover .app-card__body p { max-height: 8rem; opacity: 1; margin-top: .4rem; }

/* ------------------------ 16. Quality & counters ------------------------- */
.stat {
    text-align: center;
    padding: 1.5rem .5rem;
    position: relative;
}

.stat + .stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: var(--hairline);
}

.stat__num {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1;
    color: var(--leaf-300);
    display: block;
}

.stat__label {
    display: block;
    margin-top: .7rem;
    font-size: .68rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.check-list li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    margin-bottom: .95rem;
    color: var(--cream-dim);
    font-size: .96rem;
}

.check-list i {
    color: var(--leaf-400);
    font-size: 1.05rem;
    line-height: 1.6;
    flex: none;
}

.check-list strong { color: var(--cream); font-weight: 500; }

/* --------------------------- 17. Banana fabric --------------------------- */
.banana-hero {
    position: relative;
    padding: clamp(5rem, 10vw, 9rem) 0;
    overflow: hidden;
}

.banana-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banana-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.banana-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(9, 20, 14, .95) 30%, rgba(9, 20, 14, .55));
}

.banana-hero .container-xl { position: relative; z-index: 2; }

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.8rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.05rem;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    font-size: .74rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream-dim);
    background: rgba(242, 239, 230, .03);
    transition: all .4s var(--ease);
}

.pill i { color: var(--leaf-400); font-size: .8rem; }

.pill:hover {
    border-color: var(--leaf-500);
    color: var(--cream);
    transform: translateY(-3px);
    background: rgba(143, 191, 77, .1);
}

.benefit-row {
    display: flex;
    gap: 1.1rem;
    padding: 1.15rem 0;
    border-bottom: 1px dashed var(--hairline);
}

.benefit-row:last-child { border-bottom: 0; }

.benefit-row__icon {
    flex: none;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(143, 191, 77, .3);
    color: var(--leaf-400);
    background: rgba(143, 191, 77, .08);
    transition: all .45s var(--ease);
}

.benefit-row:hover .benefit-row__icon {
    background: var(--leaf-500);
    color: #08150C;
    transform: scale(1.08);
}

.benefit-row h4 {
    font-size: 1.22rem;
    margin-bottom: .2rem;
}

.benefit-row p {
    font-size: .9rem;
    color: var(--cream-dim);
    margin: 0;
}

/* -------------------------- 18. Process timeline ------------------------- */
.process { position: relative; }

.process::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 2.5rem;
    bottom: 2.5rem;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--hairline) 12%, var(--hairline) 88%, transparent);
}

.process-step {
    position: relative;
    width: 50%;
    padding: 0 3rem 3rem 0;
    text-align: right;
}

.process-step:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 3rem 3rem;
    text-align: left;
}

.process-step__dot {
    position: absolute;
    top: .55rem;
    right: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--forest-800);
    border: 1px solid var(--leaf-500);
    display: grid;
    place-items: center;
}

.process-step__dot::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--leaf-400);
}

.process-step:nth-child(even) .process-step__dot { right: auto; left: -9px; }

.process-step__num {
    font-size: .64rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--leaf-500);
    display: block;
    margin-bottom: .4rem;
}

.process-step h4 { font-size: 1.5rem; margin-bottom: .5rem; }

.process-step p { font-size: .93rem; color: var(--cream-dim); margin: 0; }

/* ---------------------------- 19. Buyers CTA ----------------------------- */
.buyers {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.buyers__glow {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 155, 55, .22), transparent 68%);
    top: -32%;
    right: -12%;
    pointer-events: none;
    animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
    to { transform: translate3d(-70px, 50px, 0) scale(1.12); }
}

.buyers__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* ------------------------------- 20. FAQ -------------------------------- */
.faq .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--hairline);
}

.faq .accordion-button {
    background: transparent;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    padding: 1.5rem .3rem;
    box-shadow: none;
    gap: 1rem;
}

.faq .accordion-button:not(.collapsed) { color: var(--leaf-300); background: transparent; }

.faq .accordion-button::after {
    content: "\F64D";
    font-family: bootstrap-icons !important;
    background-image: none;
    width: auto;
    height: auto;
    font-size: 1rem;
    color: var(--leaf-400);
    transition: transform .4s var(--ease);
}

.faq .accordion-button:not(.collapsed)::after { transform: rotate(135deg); }
.faq .accordion-button:focus { box-shadow: none; }

.faq .accordion-body {
    padding: 0 2.5rem 1.8rem .3rem;
    color: var(--cream-dim);
    font-size: .96rem;
}

.faq .accordion-item:hover .accordion-button { color: var(--leaf-300); }

/* ----------------------------- 21. Contact ------------------------------- */
.contact-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.6rem;
    background: rgba(242, 239, 230, .035);
    border: 1px solid var(--hairline);
    border-radius: 4px;
    height: 100%;
    transition: all .45s var(--ease);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(143, 191, 77, .35);
    background: rgba(143, 191, 77, .07);
}

/* Email + WhatsApp share one card so the address card can take the width it
   needs. Two rows, same anatomy as a plain card, split by a hairline. */
.contact-card--stack {
    flex-direction: column;
    justify-content: center;
    /* the base card sets flex-start, which would shrink the rows to their text
       and leave the divider short of the card edge */
    align-items: stretch;
    gap: 0;
}

.contact-card__row {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.05rem 0;
}

.contact-card__row:first-child { padding-top: 0; }
.contact-card__row:last-child { padding-bottom: 0; }

.contact-card__row + .contact-card__row { border-top: 1px solid var(--hairline); }

.contact-card__icon {
    flex: none;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(143, 191, 77, .12);
    color: var(--leaf-400);
    font-size: 1.25rem;
}

.contact-card h5 {
    font-size: .7rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-family: var(--sans);
    color: var(--cream-faint);
    margin-bottom: .4rem;
}

.contact-card a,
.contact-card p {
    color: var(--cream);
    font-size: 1rem;
    margin: 0;
    word-break: break-word;
}

.contact-card a:hover { color: var(--leaf-300); }


/* Days on their own line, times underneath — easier to scan than one long run. */
.contact-card__hours span {
    display: block;
    color: var(--cream);
}

/* outranks the .contact-card p colour without reaching for !important */
.contact-card p.contact-card__hours { color: var(--cream-dim); }



.enquiry-form .form-control,
.enquiry-form .form-select {
    background: rgba(242, 239, 230, .04);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    color: var(--cream);
    padding: .95rem 1.1rem;
    font-size: .92rem;
}

.enquiry-form .form-control::placeholder { color: var(--cream-faint); }

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    background: rgba(242, 239, 230, .06);
    border-color: var(--leaf-500);
    box-shadow: 0 0 0 .2rem rgba(143, 191, 77, .14);
    color: var(--cream);
}

.enquiry-form .form-select option { background: var(--forest-800); color: var(--cream); }

.enquiry-form label {
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cream-faint);
    margin-bottom: .5rem;
}

/* --------------------- 22. Footer & floating actions --------------------- */
.site-footer {
    position: relative;
    background: var(--forest-900);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
    border-top: 1px solid var(--hairline);
    overflow: hidden;
}

.site-footer__leaf {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 155, 55, .16), transparent 70%);
    pointer-events: none;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.4rem;
}

.footer-brand img { width: 72px; height: 60px; object-fit: contain; }

.footer-about {
    font-size: .92rem;
    color: var(--cream-dim);
    max-width: 26rem;
}

.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--cream);
    transition: all .4s var(--ease);
}

.footer-social a:hover {
    background: var(--leaf-500);
    border-color: var(--leaf-500);
    color: #08150C;
    transform: translateY(-4px);
}

.footer-title {
    font-family: var(--sans);
    font-size: .7rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: .8rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--leaf-500);
}

.footer-links li { margin-bottom: .6rem; }

.footer-links a {
    color: var(--cream-dim);
    font-size: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: all .35s var(--ease);
}

.footer-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--leaf-500);
    transition: width .35s var(--ease);
}

.footer-links a:hover { color: var(--leaf-300); }
.footer-links a:hover::before { width: 12px; }

.footer-contact li {
    display: flex;
    gap: .8rem;
    margin-bottom: .95rem;
    font-size: .9rem;
    color: var(--cream-dim);
}

.footer-contact i { color: var(--leaf-500); font-size: 1rem; line-height: 1.6; }


.site-footer__bottom {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding: 1.5rem 0;
    border-top: 1px solid var(--hairline);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    color: var(--cream-faint);
}

.site-footer__bottom ul { display: flex; gap: 1.6rem; }

.footer-gstin {
    margin-left: 1.1rem;
    padding-left: 1.1rem;
    border-left: 1px solid var(--hairline);
    letter-spacing: .1em;
    color: var(--cream-faint);
}
.site-footer__bottom a { color: var(--cream-faint); }
.site-footer__bottom a:hover { color: var(--leaf-300); }

.float-whatsapp,
.to-top {
    position: fixed;
    right: 1.4rem;
    z-index: 1040;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    transition: all .45s var(--ease);
}

.float-whatsapp {
    bottom: 5.6rem;
    background: #25D366;
    color: #06331A;
    box-shadow: 0 12px 28px -12px rgba(37, 211, 102, .8);
}

.float-whatsapp:hover { color: #06331A; transform: translateY(-4px) scale(1.06); }

.to-top {
    bottom: 1.4rem;
    background: var(--leaf-500);
    color: #08150C;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--leaf-400); transform: translateY(-4px); }

/* ---------------------------- 23. Responsive ----------------------------- */
@media (max-width: 1399.98px) {
    .dot-nav { left: .8rem; }
}

/* the nav only just fits at 1200-1400, so tighten the tracking there */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .site-nav__link {
        padding: .55rem .58rem;
        font-size: .7rem;
        letter-spacing: .1em;
    }

    .site-nav__actions .btn { padding: .85rem 1.3rem; font-size: .7rem; letter-spacing: .12em; }
    .brand__text strong { font-size: 1.3rem; }
}

@media (max-width: 1199.98px) {
    .dot-nav { display: none !important; }
}

@media (max-width: 991.98px) {
    .announce__meta li:not(.announce__social) { display: none; }
    .announce__row { justify-content: center; gap: 1rem; }

    .split { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .split__media { min-height: 320px; }

    .split__play {
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translate(-50%, 50%);
    }

    .process::before { left: 8px; }

    .process-step,
    .process-step:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 2.4rem 2.6rem;
        text-align: left;
    }

    .process-step__dot,
    .process-step:nth-child(even) .process-step__dot { left: 0; right: auto; }

    .stat + .stat::before { display: none; }
}

@media (max-width: 767.98px) {
    :root { --band-py: 3.75rem; }

    .announce__text span { display: none; }
    .site-header { inset: 40px 0 auto 0; }
    .brand__logo { width: 46px; height: 46px; }
    .brand__text strong { font-size: 1.2rem; }
    .brand__text small { font-size: .5rem; letter-spacing: .22em; }

    .hero { min-height: 92svh; padding-top: 7.5rem; }
    .hero__sub { letter-spacing: .18em; line-height: 2; }
    .hero__pills { gap: .4rem .9rem; }
    .hero__pills span { gap: .9rem; }
    .hero__cta .btn { width: 100%; justify-content: center; }
    .hero__scroll { display: none; }

    /* the row scrolls on a phone, so the tiles get a bit more presence */
    .craft-rail { --tile-w: 124px; }
    .craft-row { gap: 1.4rem; }
    .craft-tile__step { font-size: .58rem; }
    .craft-tile__name { font-size: .9rem; }

    .range-list li { font-size: 1.1rem; }

    .site-footer__bottom { flex-direction: column; text-align: center; }
    .footer-gstin { display: block; margin: .5rem 0 0; padding: 0; border-left: 0; }
    .site-footer__bottom ul { gap: 1.1rem; flex-wrap: wrap; justify-content: center; }

    .float-whatsapp, .to-top { right: 1rem; width: 44px; height: 44px; font-size: 1.05rem; }
    .float-whatsapp { bottom: 4.8rem; }
}

@media (max-width: 575.98px) {
    .ornament__rule { width: 28px; }
    .ornament__text { font-size: .62rem; letter-spacing: .3em; }
    .btn { padding: .9rem 1.5rem; font-size: .72rem; }
}
