/* ============================================================
   SIMONSEZ AUSTRALIA — Design System
   Earthy & Eco · Beige · Olive · Terracotta
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
    /* Colours */
    --cream: #F7F2EA;
    --cream-dark: #EDE6D8;
    --sand: #C9B99A;
    --sand-light: #E4DAC9;
    --olive: #4A6741;
    --olive-light: #637F5A;
    --olive-dark: #344B2E;
    --terra: #B5603B;
    --terra-dark: #8D4527;
    --charcoal: #1C1C1A;
    --charcoal-mid: #3A3A38;
    --muted: #7A7570;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(28, 28, 26, .08), 0 1px 2px rgba(28, 28, 26, .05);
    --shadow: 0 4px 16px rgba(28, 28, 26, .10), 0 2px 4px rgba(28, 28, 26, .06);
    --shadow-lg: 0 10px 40px rgba(28, 28, 26, .14), 0 4px 12px rgba(28, 28, 26, .08);
    --shadow-xl: 0 20px 60px rgba(28, 28, 26, .18);

    /* Transitions */
    --transition: all .25s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: all .45s cubic-bezier(.4, 0, .2, 1);

    /* Layout */
    --container: 1200px;
    --nav-h: 76px;
    --strip-h: 36px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ── Layout Utilities ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

.section {
    padding: var(--space-24) 0;
}

.section-sm {
    padding: var(--space-16) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 600;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
}

h2 {
    font-size: clamp(1.875rem, 4vw, var(--text-4xl));
}

h3 {
    font-size: clamp(1.375rem, 2.5vw, var(--text-2xl));
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
    font-family: var(--font-body);
    font-weight: 600;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: var(--space-3);
}

.lead {
    font-size: var(--text-lg);
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

.text-center {
    text-align: center;
}

.text-olive {
    color: var(--olive);
}

.text-terra {
    color: var(--terra);
}

.text-muted {
    color: var(--muted);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

.btn-primary:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 103, 65, .35);
}

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

.btn-outline:hover {
    background: var(--olive);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-terra {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}

.btn-terra:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 96, 59, .35);
}

.btn-white {
    background: var(--white);
    color: var(--olive);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .25);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: var(--text-xs);
}

.btn-lg {
    padding: 18px 44px;
    font-size: var(--text-base);
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: var(--strip-h);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav.transparent {
    background: transparent;
}

.nav.scrolled {
    background: rgba(247, 242, 234, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(28, 28, 26, .08);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--charcoal);
    transition: var(--transition);
}

.nav-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav.transparent .nav-logo {
    color: var(--white);
}

.nav.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--olive);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    color: var(--white);
    font-family: var(--font-display);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--charcoal-mid);
    transition: var(--transition);
    position: relative;
}

.nav.transparent .nav-link {
    color: rgba(255, 255, 255, .85);
}

.nav.scrolled .nav-link {
    color: var(--charcoal-mid);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--olive);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--olive);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav.transparent .nav-link::after {
    background: var(--white);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: var(--space-2);
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    border-radius: 2px;
}

.nav.transparent .nav-hamburger span {
    background: var(--white);
}

.nav.scrolled .nav-hamburger span {
    background: var(--charcoal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu .nav-link {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--charcoal);
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: none;
    border: none;
    font-size: var(--text-2xl);
    cursor: pointer;
    color: var(--charcoal);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(28, 28, 26, .72) 0%,
            rgba(52, 75, 46, .55) 50%,
            rgba(28, 28, 26, .30) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    padding-top: calc(var(--nav-h) + var(--strip-h));
}

.hero-content .eyebrow {
    color: var(--sand-light);
    font-size: var(--text-xs);
    letter-spacing: .2em;
    margin-bottom: var(--space-5);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: var(--space-6);
    max-width: 14ch;
}

.hero-title em {
    font-style: italic;
    color: var(--sand-light);
}

.hero-sub {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, .80);
    max-width: 46ch;
    margin-bottom: var(--space-10);
    font-weight: 300;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-16);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.hero-stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .65);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ── Section Headers ── */
.section-header {
    margin-bottom: var(--space-12);
}

.section-header.centered {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    color: var(--muted);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: 1.75;
}

/* ── Cards ── */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-img {
    transform: scale(1.04);
}

.card-img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-body {
    padding: var(--space-6);
}

.card-tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--olive);
    background: rgba(74, 103, 65, .10);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.card-desc {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.65;
    margin-bottom: var(--space-4);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-top: 1px solid var(--cream-dark);
}

.card-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--olive);
}

/* ── Product Cards ── */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--olive);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.product-card-body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-name {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.product-card-desc {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.65;
    margin-bottom: var(--space-4);
    flex: 1;
}

.product-card-specs {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.product-spec {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 500;
}

.product-spec-icon {
    width: 18px;
    height: 18px;
    opacity: .6;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--cream-dark);
}

.product-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--olive);
}

.product-price-note {
    font-size: var(--text-xs);
    color: var(--muted);
    font-family: var(--font-body);
    font-weight: 400;
    display: block;
}

/* ── Grids ── */
.grid {
    display: grid;
    gap: var(--space-6);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-auto {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ── Pillars / Feature Blocks ── */
.pillars {
    background: var(--olive);
    color: var(--white);
    padding: var(--space-20) 0;
}

.pillars .eyebrow {
    color: var(--sand-light);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    font-size: 1.75rem;
}

.pillar h3 {
    color: var(--white);
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.pillar p {
    color: rgba(255, 255, 255, .7);
    font-size: var(--text-sm);
    line-height: 1.75;
}

/* ── CTA Banner ── */
.cta-banner {
    background: var(--cream-dark);
    padding: var(--space-20) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A6741' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, var(--text-4xl));
    max-width: 14ch;
    margin-bottom: var(--space-2);
}

.cta-banner p {
    color: var(--muted);
    font-size: var(--text-lg);
}

.cta-banner-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Filters / Tabs ── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-10);
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    border: 2px solid var(--sand);
    background: transparent;
    color: var(--charcoal-mid);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--olive);
    color: var(--olive);
}

.filter-btn.active {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}

/* ── Forms ── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.form-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--charcoal-mid);
    letter-spacing: .02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--sand-light);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--charcoal);
    font-size: var(--text-base);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 4px rgba(74, 103, 65, .10);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--sand);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--space-5);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-item:nth-child(4n+1) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: var(--transition-slow);
}

.gallery-item:nth-child(4n+1) img {
    aspect-ratio: unset;
    height: 100%;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 28, 26, .5), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-label {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    z-index: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(4n+1) {
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(28, 28, 26, .95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: scale(.92);
    transition: var(--transition);
}

.lightbox.open img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    background: rgba(255, 255, 255, .15);
    border: none;
    color: var(--white);
    font-size: var(--text-2xl);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .28);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: none;
    color: var(--white);
    font-size: var(--text-2xl);
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .24);
}

.lightbox-prev {
    left: var(--space-6);
}

.lightbox-next {
    right: var(--space-6);
}

.lightbox-caption {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .75);
    font-size: var(--text-sm);
    white-space: nowrap;
}

/* ── Maps & Contact ── */
.map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid var(--cream-dark);
    height: 420px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(74, 103, 65, .10);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-info-label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: var(--space-1);
}

.contact-info-value {
    font-size: var(--text-base);
    color: var(--charcoal);
    font-weight: 500;
}

.contact-info-value a:hover {
    color: var(--olive);
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .75);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand .nav-logo-icon {
    background: var(--olive);
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    height: 52px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: brightness(0) invert(1);
}

.footer-brand .logo-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: rgba(255, 255, 255, .5);
    font-size: var(--text-sm);
    line-height: 1.75;
    max-width: 30ch;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .4);
    margin-bottom: var(--space-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .65);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--sand-light);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.footer-contact-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-contact-value {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .75);
}

.footer-contact-value a:hover {
    color: var(--sand-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copy {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .35);
}

.footer-standards {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .4);
}

.standards-badge {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 4px 10px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .04em;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 28, 26, .85) 0%, rgba(28, 28, 26, .30) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6) var(--space-12);
    width: 100%;
}

.page-hero .eyebrow {
    color: var(--sand-light);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: var(--space-3);
}

.page-hero p {
    color: rgba(255, 255, 255, .75);
    font-size: var(--text-lg);
    max-width: 48ch;
}

/* ── Utility ── */
.bg-cream {
    background: var(--cream);
}

.bg-white {
    background: var(--white);
}

.bg-olive {
    background: var(--olive);
}

.bg-charcoal {
    background: var(--charcoal);
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--terra);
    border-radius: 2px;
    margin: var(--space-4) 0;
}

.divider.centered {
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .04em;
}

.badge-olive {
    background: rgba(74, 103, 65, .12);
    color: var(--olive);
}

.badge-terra {
    background: rgba(181, 96, 59, .12);
    color: var(--terra);
}

.badge-sand {
    background: var(--sand-light);
    color: var(--charcoal-mid);
}

/* ── Sticky nav active helper ── */
@media (max-width: 900px) {

    .nav-links,
    .nav-cta .btn {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Legal / Fine Print ── */
.legal-content h2 {
    font-size: var(--text-2xl);
    margin: var(--space-10) 0 var(--space-4);
    padding-top: var(--space-8);
    border-top: 1px solid var(--cream-dark);
}

.legal-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
}

.legal-content p {
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: var(--space-4);
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--space-6);
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: var(--space-4);
}

.legal-content li {
    margin-bottom: var(--space-2);
}

.toc {
    background: var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-8);
    margin-bottom: var(--space-10);
}

.toc h4 {
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
}

.toc ol {
    list-style: decimal;
    padding-left: var(--space-5);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2) var(--space-6);
}

.toc a {
    font-size: var(--text-sm);
    color: var(--olive);
    transition: var(--transition);
}

.toc a:hover {
    color: var(--olive-dark);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .toc ol {
        grid-template-columns: 1fr;
    }
}

/* ── Testimonial / Quote ── */
.quote-block {
    border-left: 4px solid var(--terra);
    padding: var(--space-6) var(--space-8);
    background: var(--white);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-sm);
}

.quote-block blockquote {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.quote-author {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Modal Overlay for product detail */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(28, 28, 26, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.product-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.product-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(24px) scale(.97);
    transition: var(--transition);
}

.product-modal-overlay.open .product-modal {
    transform: translateY(0) scale(1);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
}

.product-modal-img {
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
    overflow: hidden;
}

.product-modal-img img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.product-modal-content {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
}

.product-modal-close {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    width: 40px;
    height: 40px;
    background: var(--cream);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.product-modal-close:hover {
    background: var(--cream-dark);
}

.product-modal-wrap {
    position: relative;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin: var(--space-5) 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: var(--text-sm);
}

.spec-row-label {
    color: var(--muted);
    font-weight: 500;
}

.spec-row-value {
    font-weight: 600;
    color: var(--charcoal);
}

/* ── About values ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--olive);
    transition: var(--transition);
}

.value-card:nth-child(2) {
    border-top-color: var(--terra);
}

.value-card:nth-child(3) {
    border-top-color: var(--sand);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
}

.value-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.value-card p {
    color: var(--muted);
    font-size: var(--text-sm);
    line-height: 1.75;
}

/* ── Two-col split layout ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.split.reverse {
    direction: rtl;
}

.split.reverse>* {
    direction: ltr;
}

@media (max-width: 768px) {

    .split,
    .split.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: var(--space-8);
    }
}

.split-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

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

/* ── Floating display home badge ── */
.display-badge {
    position: absolute;
    bottom: -var(--space-6);
    right: var(--space-6);
    background: var(--olive);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 160px;
}

.display-badge .num {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1;
}

.display-badge .lbl {
    font-size: var(--text-xs);
    opacity: .75;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ── Compliant banner ── */
.compliant-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--strip-h);
    background: var(--olive-dark);
    color: rgba(255, 255, 255, .85);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ── Newsletter ── */
.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 480px;
}

.newsletter-form .form-input {
    flex: 1;
    border-radius: var(--radius-full);
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
}