/* ===========================================================================
   SUNVERA SOLAR STRUCTURES — STYLESHEET
   ---------------------------------------------------------------------------
   Colours, fonts and spacing live in the :root variables below — change them
   in one place to re-skin the whole site.
   =========================================================================== */

:root {
    --bg: #F5F7F2;
    /* page background            */
    --bg-alt: #EBEFE7;
    /* alternating section bg     */
    --white: #FFFFFF;
    --green: #1E7A4C;
    /* brand green                */
    --green-dark: #176A41;
    /* brand green (hover)        */
    --ink: #13201A;
    /* darkest headings           */
    --ink-2: #1A2620;
    /* dark text                  */
    --muted: #586259;
    /* body text                  */
    --muted-2: #6A7468;
    /* secondary text             */
    --muted-3: #7A8478;
    /* labels                     */
    --line: rgba(0, 0, 0, 0.08);
    --maxw: 1280px;
    --serif: 'Newsreader', Georgia, serif;
    --sans: 'Archivo', system-ui, -apple-system, sans-serif;
}

/* ---- Reset / base ------------------------------------------------------- */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink-2);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: clamp(20px, 5vw, 56px);
    padding-right: clamp(20px, 5vw, 56px);
}

/* ---- Scroll reveal animation ------------------------------------------- */
@keyframes svUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.reveal {
    animation: svUp both;
    animation-timeline: view();
    animation-range: entry 4% cover 20%;
}


.fade-1 {
    animation: svUp .8s .05s both;
}

.fade-2 {
    animation: svUp .9s .12s both;
}

.fade-3 {
    animation: svUp .9s .22s both;
}

.fade-4 {
    animation: svUp .9s .32s both;
}

/* ---- Shared type helpers ----------------------------------------------- */
.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 22px;
}

.h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 6.4vw, 88px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--ink);
}

.h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--ink);
}

.lead {
    font-size: clamp(16px, 1.7vw, 20px);
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 30px;
    border-radius: 2px;
    transition: background .2s, border-color .2s, gap .2s;
    cursor: pointer;
    font-family: var(--sans);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-2);
    border-color: rgba(0, 0, 0, 0.16);
}

.btn-ghost:hover {
    border-color: var(--green);
}

.btn-ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
    padding: 13px 22px;
    font-size: 12px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: gap .2s;
    white-space: nowrap;
}

.link-arrow:hover {
    gap: 16px;
}

/* ===========================================================================
   TOP BAR + HEADER
   =========================================================================== */
.topbar {
    background: var(--bg-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.topbar .wrap {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-right {
    gap: 22px;
}

.topbar a {
    color: var(--muted-2);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--ink-2);
}

.dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--green);
}

.dot-soft {
    background: #C7CFC2;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(245, 247, 242, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-row {
    height: clamp(68px, 8vw, 96px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: clamp(44px, 6vw, 72px);
    width: auto;
    object-fit: contain;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-desktop a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s;
}

.nav-desktop a:hover {
    color: var(--ink-2);
}

.nav-desktop a.active {
    color: var(--green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 2px;
    cursor: pointer;
    color: var(--ink-2);
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink-2);
    box-shadow: 0 6px 0 var(--ink-2), 0 -6px 0 var(--ink-2);
}

.mobile-panel {
    border-top: 1px solid var(--line);
    background: var(--bg);
    padding: 14px clamp(20px, 5vw, 56px) 26px;
    flex-direction: column;
    gap: 4px;
    display: none;
}

.mobile-panel.open {
    display: flex;
}

.mobile-panel a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3A463C;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-panel a.active {
    color: var(--green);
}

/* ===========================================================================
   GENERIC SECTION
   =========================================================================== */
.section {
    padding-top: clamp(72px, 10vw, 130px);
    padding-bottom: clamp(72px, 10vw, 130px);
}

.section--bg {
    background: var(--bg);
}

.section--alt {
    background: var(--bg-alt);
}

.bdr-top {
    border-top: 1px solid var(--line);
}

.bdr-bottom {
    border-bottom: 1px solid var(--line);
}

/* Two-column text/image layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===========================================================================
   HERO (Home)
   =========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background-color: #13201A;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

/* Dark scrim over the photo so the text stays clearly readable */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 20, 15, 0.86) 0%, rgba(12, 20, 15, 0.66) 45%, rgba(12, 20, 15, 0.45) 100%),
        linear-gradient(180deg, rgba(12, 20, 15, 0.55), rgba(12, 20, 15, 0.35));
}

.hero-inner {
    position: relative;
    padding-top: clamp(96px, 14vw, 200px);
    padding-bottom: clamp(96px, 14vw, 200px);
    max-width: var(--maxw);
}

.hero-kicker {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5FCF9A;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(46px, 8vw, 110px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
    color: #FFFFFF;
    max-width: 14ch;
}

.hero-lead {
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
    max-width: 760px;
    margin: 0 0 42px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* ===========================================================================
   STATS
   =========================================================================== */
.stats {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
}

.stats .wrap {
    padding-top: clamp(40px, 5vw, 60px);
    padding-bottom: clamp(40px, 5vw, 60px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1;
    color: var(--ink);
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-2);
}

/* ===========================================================================
   FEATURE GRID (Why choose us)
   =========================================================================== */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.feat-card {
    background: var(--bg-alt);
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 200px;
    transition: background .25s;
}

.section--bg .feat-card {
    background: var(--bg);
}

.feat-card:hover {
    background: #EFF2EB;
}

.feat-num {
    font-family: ui-monospace, monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--green);
}

.feat-card h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: var(--ink-2);
}

.feat-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted-2);
    margin: 0;
}

/* ===========================================================================
   PRODUCT FAMILY CARDS
   =========================================================================== */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 58px;
}

.section-head .copy {
    max-width: 680px;
}

.fam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.fam-card {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
}

.fam-card .shot {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.fam-card .shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fam-card .meta {
    padding: 22px 22px 26px;
}

.fam-card .no {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    color: var(--green);
}

.fam-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 6px;
    color: var(--ink-2);
}

.fam-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted-2);
    margin: 0;
}

/* ===========================================================================
   PILLARS
   =========================================================================== */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 2px solid var(--green);
    padding-top: 24px;
}

.pillar h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin: 0;
}

.pillar p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-2);
    margin: 0;
}

/* ===========================================================================
   TESTIMONIALS CAROUSEL
   =========================================================================== */
.testimonials-carousel {
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.testimonials-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 24px;
    padding: 4px 0;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: border-color .25s, box-shadow .25s;
}

.testimonial-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 20px rgba(30, 122, 76, 0.08);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-alt);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
}

.testimonial-title {
    font-size: 12px;
    color: var(--muted-2);
}

/* Testimonials carousel buttons - positioned outside the track */
.testimonials-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    cursor: pointer;
    background: var(--white);
    color: var(--ink-2);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 10;
}

.testimonials-carousel .carousel-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.testimonials-carousel .carousel-btn.prev {
    left: -22px;
}

.testimonials-carousel .carousel-btn.next {
    right: -22px;
}

.testimonials-carousel .carousel-dots {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.testimonials-carousel .carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}

.testimonials-carousel .carousel-dots button.active {
    background: var(--green);
}

.testimonials-carousel .carousel-dots button:hover {
    background: rgba(30, 122, 76, 0.5);
}

/* ===========================================================================
   BROCHURE SECTION
   =========================================================================== */
.brochure-section {
    max-width: 900px;
    margin: 0 auto;
}

.brochure-preview {
    display: flex;
    gap: 40px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brochure-thumbnail {
    flex: 0 0 300px;
    position: relative;
    background: linear-gradient(135deg, var(--bg-alt) 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.brochure-thumbnail img {
    width: 180px;
    height: auto;
    opacity: 0.8;
}

.brochure-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brochure-icon {
    font-size: 20px;
}

.brochure-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brochure-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.brochure-info h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    margin: 0 0 16px;
}

.brochure-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 24px;
}

.brochure-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.brochure-features li {
    font-size: 14px;
    color: var(--muted-2);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brochure-features li:before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    font-size: 12px;
}

.brochure-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.brochure-actions .btn {
    flex: 1;
    text-align: center;
}

/* Responsive brochure section */
@media (max-width: 768px) {
    .brochure-preview {
        flex-direction: column;
    }

    .brochure-thumbnail {
        flex: 0 0 auto;
        min-height: 200px;
    }

    .brochure-thumbnail img {
        width: 120px;
    }

    .brochure-info {
        padding: 30px 24px;
    }

    .brochure-info h3 {
        font-size: 24px;
    }

    .brochure-actions {
        flex-direction: column;
    }
}

/* ===========================================================================
   IMAGE PANELS (with caption frame)
   =========================================================================== */
.media-panel {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
}

.media-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-panel.ratio-4-5 {
    aspect-ratio: 4/5;
}

.media-panel.ratio-1-1 {
    aspect-ratio: 1/1;
}


.media-caption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-family: ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #fff;
    background: rgba(19, 32, 26, 0.55);
    padding: 5px 10px;
    border-radius: 2px;
}

/* ===========================================================================
   SERVICES — process + profiles + specs
   =========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.process-card {
    background: var(--bg-alt);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 190px;
}

.process-card .step {
    font-family: ui-monospace, monospace;
    font-size: 13px;
    color: var(--green);
}

.process-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 0;
    color: var(--ink-2);
}

.process-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-2);
    margin: 0;
}

.prof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.prof-card {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 3px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prof-card .shot {
    height: 120px;
    border-radius: 2px;
    overflow: hidden;
}

.prof-card .shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prof-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    color: var(--ink-2);
}

.prof-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted-2);
    margin: 0;
}

.prof-card .parts {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-3);
    border-top: 1px solid var(--line);
    padding-top: 14px;
}


.spec-card {
    border: 1px solid var(--line);
    background: var(--bg-alt);
    border-radius: 3px;
    overflow: hidden;
}

.spec-head {
    padding: 24px 30px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spec-head h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--ink-2);
}

.spec-head .code {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    color: var(--green);
}

.spec-body {
    padding: 8px 30px 26px;
}

.spec-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-row .k {
    font-size: 14px;
    color: #5E685D;
}

.spec-row .v {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
    text-align: right;
}


/* ===========================================================================
   CONTACT
   =========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 72px;
    align-items: start;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.field>span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #5E685D;
}

.input {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.14);
    color: var(--ink-2);
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 2px;
    font-family: var(--sans);
}

.input::placeholder {
    color: #94A08F;
}

.input:focus {
    outline: none;
    border-color: var(--green);
}

select.input {
    appearance: none;
}

textarea.input {
    resize: vertical;
}

.alert-success {
    border: 1px solid rgba(30, 122, 76, 0.35);
    background: var(--white);
    border-radius: 3px;
    padding: 48px 40px;
}

.alert-success .check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.alert-success h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 14px;
    color: var(--ink);
}

.alert-error {
    border: 1px solid rgba(180, 60, 60, 0.35);
    background: #FCF3F3;
    color: #8A3A3A;
    border-radius: 3px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.contact-block .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-3);
    margin-bottom: 14px;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #3A463C;
    margin: 0;
}

.contact-block a {
    font-size: 16px;
    color: var(--green);
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.map-embed {
    aspect-ratio: 3/2;
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.foot {
    font-family: var(--sans);
    background: var(--bg-alt);
    color: var(--muted);
}

.foot-cta {
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #FFFFFF, #F5F7F2);
}

.foot-cta .wrap {
    padding-top: clamp(64px, 9vw, 120px);
    padding-bottom: clamp(64px, 9vw, 120px);
}

.cta-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-row .copy {
    max-width: 680px;
}

.cta-row h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 22px;
}

.cta-row .copy p {
    font-size: 16px;
    line-height: 1.65;
    color: #5E685D;
    max-width: 520px;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.foot-main .wrap {
    padding-top: clamp(56px, 7vw, 84px);
    padding-bottom: 40px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.foot-brand .lockup {
    margin-bottom: 22px;
}

.foot-brand .site-logo {
    height: 96px;
}

.foot-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-2);
    max-width: 300px;
    margin: 0 0 18px;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 10px;
    border-radius: 2px;
}

.foot-col .head {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-3);
    margin-bottom: 18px;
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
}

.foot-links a:hover {
    color: var(--green);
}

.foot-col p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted-2);
    margin: 0 0 14px;
}

.foot-col a.line {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
}

.foot-col a.line:hover {
    color: var(--green);
}

.foot-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--muted-3);
    padding-right: 80px; /* Space for WhatsApp button */
}

/* ===========================================================================
   WHATSAPP FLOAT
   =========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 16px;
        right: 16px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1120px) {
    .nav-desktop {
        display: none;
    }

    .burger {
        display: flex;
    }
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fam-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pillars {
        grid-template-columns: 1fr 1fr;
    }

    .stats .wrap {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .prof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonial-slide {
        flex: 0 0 calc(50% - 12px);
    }

    .testimonials-carousel .carousel-btn.prev {
        left: -18px;
    }

    .testimonials-carousel .carousel-btn.next {
        right: -18px;
    }

    /* Brochure section on tablet */
    .brochure-container {
        padding: 24px 0;
    }

    /* Solar band text */
    .solar-band-inner {
        padding: 60px 0;
    }

    /* Suppliers logos */
    .suppliers-logos {
        gap: 24px;
    }
}

@media (max-width: 820px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }

    /* Footer bottom stacks vertically */
    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-right: 0;
        padding-bottom: 80px; /* space for whatsapp button above bottom edge */
    }
}

@media (max-width: 640px) {
    /* Topbar collapses to single line */
    .topbar-left {
        display: none;
    }
    .topbar .wrap {
        justify-content: flex-end;
    }

    /* Hero adjustments */
    .hero h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .hero-lead {
        font-size: 16px;
    }

    /* Section head stacks */
    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 36px;
    }

    /* Brochure preview stacks */
    .brochure-preview {
        flex-direction: column;
    }

    .brochure-thumbnail {
        flex: 0 0 auto;
        min-height: 180px;
    }

    .brochure-info {
        padding: 24px 20px;
    }

    .brochure-actions {
        flex-direction: column;
    }

    /* Book viewer on mobile  */
    .book {
        max-width: 100%;
    }

    .book-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* Suppliers */
    .suppliers-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .supplier-logo {
        height: 36px !important;
    }

    /* CTA row */
    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .feat-grid,
    .fam-grid,
    .pillars,
    .stats .wrap,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .prof-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonials-carousel .carousel-btn {
        display: none;
    }

    /* Alert success padding */
    .alert-success {
        padding: 32px 24px;
    }

    /* Contact details */
    .contact-details {
        gap: 24px;
    }

    /* Photo hero sections */
    .photo-hero {
        min-height: 300px;
        padding: 60px 0;
    }
}

@media (max-width: 520px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }

    .topbar-right .hide-sm {
        display: none;
    }

    /* Mobile brand logo smaller */
    .foot-brand .site-logo {
        height: 72px;
    }

    /* Tags wrap nicely */
    .tags {
        gap: 8px;
    }
}

/* ===========================================================================
   CAROUSEL (home "built to hold up")
   =========================================================================== */
.carousel {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: var(--car-ratio, 4/5);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink-2);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.carousel-btn:hover {
    background: #fff;
}

.carousel-btn.prev {
    left: 14px;
}

.carousel-btn.next {
    right: 14px;
}

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
}

.carousel-dots button.active {
    background: #fff;
}

/* ===========================================================================
   FULL-WIDTH SOLAR BAND
   =========================================================================== */
.solar-band {
    position: relative;
    overflow: hidden;
    background-color: #13201A;
    background-size: cover;
    background-position: center;
}

.solar-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 20, 15, 0.82), rgba(12, 20, 15, 0.45));
}

.solar-band-inner {
    position: relative;
    padding-top: clamp(72px, 10vw, 120px);
    padding-bottom: clamp(72px, 10vw, 120px);
}

/* ===========================================================================
   FOUNDERS
   =========================================================================== */
.founders-lead {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 16/9;
}

.founders-lead img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.founder {
    display: grid;
    grid-template-columns: 195px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 250px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

/* Name spans the body (right) column on desktop */
.founder-name {
    grid-column: 2;
    grid-row: 1;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--ink-2);
    padding: 28px 30px 0;
}

.founder-photo {
    grid-column: 1;
    grid-row: 1 / 3;   /* spans both rows so photo fills full height */
    background: var(--bg-alt);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.founder-body {
    grid-column: 2;
    grid-row: 2;
    padding: 10px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.founder-body h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--ink-2);
}

.founder-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.founder-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-2);
    margin: 12px 0 0;
}

/* ===========================================================================
   FACTORY VIDEO
   =========================================================================== */
.video-embed {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #13201A;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-placeholder {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 15, 0.42);
}

.video-play {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, background .2s;
}

.video-play:hover {
    transform: scale(1.06);
    background: #fff;
}

.video-play span {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent var(--green);
    margin-left: 5px;
}

.video-caption {
    position: absolute;
    bottom: 18px;
    left: 22px;
    color: #fff;
    font-family: ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    background: rgba(12, 20, 15, 0.5);
    padding: 6px 12px;
    border-radius: 2px;
}

/* ===========================================================================
   PROJECTS — video + detail cards
   =========================================================================== */

/* Video wrapper */
.proj-video-wrap {
    position: relative;
}

.proj-video-player {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--ink);
    border-radius: 6px;
    overflow: hidden;
}

.proj-video-player video,
.proj-video-player iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

/* Placeholder state */
.proj-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(145deg, #0d1a13 0%, #1a2e20 60%, #0e1f16 100%);
}

.proj-video-icon svg {
    width: 72px;
    height: 72px;
    opacity: 0.7;
    transition: opacity .2s;
}

.proj-video-placeholder:hover .proj-video-icon svg {
    opacity: 1;
}

.proj-video-label {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* View Details button — below video */
.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: 24px;
    background: transparent;
    border: 1px solid var(--green);
    border-radius: 4px;
    color: var(--green);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.btn-view-details:hover {
    background: rgba(30, 122, 76, 0.05);
}

.btn-view-details:active {
    transform: none;
}

.btn-view-details[aria-expanded="true"] {
    background: var(--green);
    color: #fff;
}

.vd-icon {
    font-size: 16px;
    line-height: 1;
}

/* Slide-down detail panel */
.proj-details-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.proj-details-panel[hidden] {
    display: block !important;
    visibility: hidden;
}

/* keep in flow for transition */
.proj-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 28px;
}

/* Individual project detail card */
.proj-detail-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 28px 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow .25s, transform .25s;
}

.proj-detail-card:hover {
    box-shadow: 0 10px 32px -16px rgba(20, 40, 28, 0.22);
    transform: translateY(-2px);
}

.pdc-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdc-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}

.pdc-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
}

.pdc-location svg {
    flex-shrink: 0;
}

.pdc-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}



/* ===========================================================================
   CAREER
   =========================================================================== */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 34px 34px;
}

.job-main {
    max-width: 720px;
}

.job-main h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--ink-2);
}

.job-meta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.job-main p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-2);
    margin: 12px 0 0;
}

/* ===========================================================================
   RESPONSIVE (new components)
   =========================================================================== */
@media (max-width: 900px) {
    .founders {
        grid-template-columns: 1fr;
    }

    .proj-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===========================================================================
   MOBILE / TABLET OPTIMISATION
   =========================================================================== */
html,
body {
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}

/* Tablet */
@media (max-width: 768px) {
    .section {
        padding-top: clamp(56px, 9vw, 110px);
        padding-bottom: clamp(56px, 9vw, 110px);
    }

    .two-col {
        gap: 44px;
    }
}

/* Small tablet / large phone — the topbar email is too long to fit */
@media (max-width: 680px) {
    .topbar-right {
        display: none;
    }

    .topbar .wrap {
        justify-content: center;
    }

    .topbar-left {
        font-size: 10px;
        gap: 10px;
        letter-spacing: 0.14em;
    }
}

/* Phones */
@media (max-width: 560px) {
    .header-actions .btn {
        display: none;
    }

    /* the CTA overlaps the logo at phone width */
    .hero-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 60px);
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .job-card {
        padding: 26px 24px;
    }

    .job-card .btn {
        width: 100%;
        justify-content: center;
    }



    .video-play {
        width: 66px;
        height: 66px;
    }

    .btn {
        padding: 15px 26px;
    }
}

/* Request-a-quote button shown inside the mobile menu (since the header CTA is hidden) */
.mobile-panel a.mobile-quote {
    display: block;
    text-align: center;
    background: var(--green);
    color: #fff;
    border-bottom: none;
    border-radius: 2px;
    padding: 15px;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.mobile-panel a.mobile-quote:hover {
    background: var(--green-dark);
}

/* ===========================================================================
   PHOTO HERO (inner pages — replaces the striped page-hero)
   =========================================================================== */
.photo-hero {
    position: relative;
    overflow: hidden;
    background-color: #13201A;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.photo-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 20, 15, 0.86), rgba(12, 20, 15, 0.52));
}

.photo-hero .wrap {
    position: relative;
    padding-top: clamp(80px, 11vw, 150px);
    padding-bottom: clamp(60px, 8vw, 110px);
}

.photo-hero .eyebrow {
    color: #5FCF9A;
}

.photo-hero h1 {
    color: #fff;
    max-width: 900px;
}

.photo-hero .lead {
    color: rgba(255, 255, 255, 0.86);
    max-width: 640px;
}

/* Founder cards on mobile — title first, then portrait photo, then body text */
@media (max-width: 560px) {
    .founder {
        display: flex;
        flex-direction: column;
        padding: 0;
        min-height: unset;
    }

    /* 1 — title */
    .founder-name {
        order: 0;
        padding: 20px 20px 10px;
        font-size: 19px;
    }

    /* 2 — photo */
    .founder-photo {
        order: 1;
        flex: none;
        width: 100%;
        height: 220px;
    }

    .founder-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
    }

    /* 3 — role + bio */
    .founder-body {
        order: 2;
        padding: 14px 20px 24px;
    }

    .founders-lead {
        aspect-ratio: 4/3;
    }
}

/* ===========================================================================
   EMPTY FAMILY-CARD PANEL (when a product family has no photo yet)
   =========================================================================== */
.shot--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    padding: 20px;
    text-align: center;
}

.shot--empty span {
    font-family: ui-monospace, monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-3);
}

/* ===========================================================================
   MOUNTING SYSTEMS (Ground / Rooftop MMS) + generic 3-col grid
   =========================================================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
}

.systems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.system-card {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

.system-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.system-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.system-body {
    padding: 30px 32px 34px;
}

.system-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.system-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 12px;
    color: var(--ink-2);
}

.system-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-2);
    margin: 0;
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .systems-grid {
        grid-template-columns: 1fr;
    }
}


/* ===========================================================================
   SUPPLIERS STRIP (home "we procure from")
   =========================================================================== */
.suppliers {
    background: #C8DBCB;
    border-top: 1px solid rgba(30, 122, 76, 0.14);
    border-bottom: 1px solid rgba(30, 122, 76, 0.14);
    padding: clamp(48px, 7vw, 84px) 0;
}

.suppliers-head {
    text-align: center;
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.suppliers-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 5vw, 64px);
}

.supplier-logo {
    width: 140px;
    height: 52px;
    object-fit: contain;
    object-position: center;
    opacity: 0.82;
    mix-blend-mode: multiply;
    filter: grayscale(15%) contrast(1.05);
    transition: opacity .25s, filter .25s, transform .25s;
}

.supplier-logo:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

/* Scale down the AM/NS India logo which is a PNG and renders larger */
.supplier-logo[src*="supplier-amns"] {
    transform: scale(0.72);
}

.supplier-logo[src*="supplier-amns"]:hover {
    transform: scale(0.76);
}

/* ===========================================================================
   CLICKABLE FAMILY CARDS + SPEC MODAL
   =========================================================================== */
.fam-card--clickable {
    cursor: pointer;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}

.fam-card--clickable:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px -20px rgba(20, 40, 28, 0.55);
}

.fam-card--clickable:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.fam-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 8vh 20px 40px;
    overflow-y: auto;
}

.modal.open {
    display: flex;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 20, 15, 0.6);
}

.modal-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    animation: svUp .25s ease both;
}

.modal-content .spec-card {
    background: var(--white);
}

.modal-content .spec-head {
    padding-right: 58px;
}

.spec-foot {
    font-family: ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted-3);
    padding-top: 16px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: var(--ink-2);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 560px) {
    .supplier-logo {
        width: 100px;
        height: 38px;
    }
}

/* ---- Map embed (Contact page) ------------------------------------------ */
.map-embed {
    margin-top: 28px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--bg-alt);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.map-open-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.02em;
    background: rgba(30, 122, 76, 0.06);
    border-bottom: 1px solid var(--line);
    transition: background .18s, color .18s;
}

.map-open-link:hover {
    background: rgba(30, 122, 76, 0.13);
    color: var(--green-dark);
}
