/* ==========================================================================
   Arqia — Luxury Architectural Glass
   Shared Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Google Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Raleway:wght@500;700&family=Instrument+Sans:wght@400;500&family=DM+Sans:wght@400;500&family=Outfit:wght@400;600&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds */
    --bg-dark: #1A1814;
    --bg-cream: #FAF8F5;
    --bg-warm-white: #FFF8EC;
    --bg-white: #FFFFFF;
    --bg-footer: #494949;
    --bg-contact-panel: #2E2B25;
    --bg-card-dark: #242018;

    /* Gold palette */
    --gold: #B8925A;
    --gold-alt: #B8965A;
    --gold-light: #D4B483;
    --gold-rich: #C9A050;
    --gold-button: #B08A3E;

    /* Text */
    --text-dark: #1C1510;
    --text-black: #000000;
    --text-dark-gray: #4A4640;
    --text-medium-gray: #8A857E;
    --text-gray-body: #6A5E54;
    --text-muted: #9A8E80;

    /* Borders / Dividers */
    --border-card: #2A2520;
    --border-light: #EAE6DE;
    --border-orange: #FFC37F;
    --divider: #D9D9D9;

    /* Misc */
    --tag-bg: #CA976D;

    /* Layout */
    --max-width: 1440px;
    --section-px: 120px;
    --section-py: 80px;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Segoe UI', sans-serif;
    --font-nav: 'Raleway', sans-serif;
    --font-card-title: 'Instrument Sans', sans-serif;
    --font-label: 'DM Sans', sans-serif;
    --font-footer: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease, opacity 0.25s ease;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   2. Utility: Page Wrapper
   -------------------------------------------------------------------------- */
.page-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   3. Navbar
   -------------------------------------------------------------------------- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--section-px);
    height: 96px;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(184, 146, 90, 0.22);
    position: relative;
    z-index: 100;
}

.navbar__logo {
    flex-shrink: 0;
}

.navbar__logo img {
    width: 208px;
    height: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__link {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-dark);
    padding-bottom: 4px;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.navbar__link:hover {
    color: var(--gold);
}

.navbar__link--active {
    border-bottom-color: var(--gold);
    color: var(--gold);
}

.navbar__cta {
    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    transition: background 0.3s ease, color 0.3s ease;
}

.navbar__cta:hover {
    background: var(--gold);
    color: var(--bg-white);
}

/* Navbar Dropdowns */
.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-white);
    border: 1px solid rgba(184, 146, 90, 0.3);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 200;
    margin-top: 4px;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__dropdown:hover>.navbar__link {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.navbar__dropdown-item {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    padding: 12px 24px;
    transition: color 0.2s ease, background-color 0.2s ease;
    white-space: nowrap;
}

.navbar__dropdown-item:hover {
    color: var(--gold);
    background-color: rgba(184, 146, 90, 0.15);
}

.navbar__dropdown-item--active {
    color: var(--gold);
}

/* Mobile menu toggle (hidden on desktop) */
.navbar__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.navbar__menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Mobile Drawer
   -------------------------------------------------------------------------- */
.mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 299;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-backdrop--visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    height: calc(100dvh - 72px);
    width: min(72vw, 300px);
    background: var(--bg-white);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer--open {
    transform: translateX(0);
}

.mobile-backdrop {
    top: 72px;
}

.mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0 40px;
}

.mobile-drawer__item {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-drawer__item--active {
    color: var(--gold);
}

.mobile-drawer__chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--text-dark);
}

.mobile-drawer__toggle[aria-expanded="true"] .mobile-drawer__chevron {
    transform: rotate(180deg);
}

.mobile-drawer__submenu {
    display: none;
    flex-direction: column;
}

.mobile-drawer__submenu--open {
    display: flex;
}

.mobile-drawer__sub {
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 11px 24px 11px 36px;
    display: block;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-drawer__sub:hover {
    color: var(--gold);
}

.mobile-drawer__sub--active {
    background: rgba(184, 146, 90, 0.13);
    color: var(--text-dark);
}

/* Hamburger → Cross animation */
.navbar__menu-toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__menu-toggle--open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__menu-toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 650px;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__bg--mirror {
    transform: scaleX(-1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(26, 26, 26, 0.88) 0%,
            rgba(87, 85, 85, 0.5) 45%,
            rgba(187, 187, 187, 0) 75%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-left: var(--section-px);
    max-width: 52vw;
}

.hero__tag {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero__heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FAF8F5;
    margin-bottom: 0;
}

.hero__heading--light {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Cladding Collections section — mobile overrides
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .cl-collections {
        padding: 60px 24px !important;
        gap: 40px !important;
    }

    .cl-collections__tag {
        letter-spacing: 0.14em !important;
    }

    .cl-collections__heading {
        font-size: 28px !important;
        max-width: 100% !important;
    }

    .cl-collections__heading br {
        display: none;
    }

    .cl-collections__cards {
        flex-direction: column !important;
        gap: 32px !important;
    }

    .cl-collections__left-text {
        padding: 10px !important;
    }

    .cl-collections__left-title {
        font-size: 30px !important;
    }

    .cl-collections__left-img {
        min-height: 220px !important;
    }

    .cl-collections__right-card {
        padding: 28px !important;
        gap: 32px !important;
    }
}

/* Cladding about section — different heading on mobile vs desktop */
.about-heading--mobile {
    display: none;
}

.about-heading--desktop {
    display: block;
}

/* Page-level heroes (Cladding, Partitions) — longer headings need smaller desktop size */
.hero__heading--page {
    font-size: 52px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {

    .hero--cladding .hero__heading,
    .hero--cladding .hero__subheading {
        font-size: 10vw;
    }
}

.hero__subheading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero__description {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.64);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__cta {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gold-light);
    color: var(--bg-dark);
    padding: 16px 40px;
    transition: background 0.3s ease;
}

.hero__cta:hover {
    background: var(--gold-rich);
}

/* --------------------------------------------------------------------------
   5. Section Labels / Tags
   -------------------------------------------------------------------------- */
.section-tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-alt);
    margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   6. Section Headings
   -------------------------------------------------------------------------- */
.section-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-heading--white {
    color: var(--bg-white);
}

.section-heading--gold {
    color: var(--gold);
}

/* Inline color variant for mixed headings */
.section-heading .gold {
    color: var(--gold);
}

.section-heading .white {
    color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   7. Body Text
   -------------------------------------------------------------------------- */
.body-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-gray-body);
}

.body-text--light {
    font-weight: 300;
}

.body-text--small {
    font-size: 14px;
}

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

.body-text--white {
    color: rgba(255, 255, 255, 0.7);
}

.body-text--dark-gray {
    color: var(--text-dark-gray);
}

/* --------------------------------------------------------------------------
   8. Gold Divider Line
   -------------------------------------------------------------------------- */
.gold-divider {
    width: 36px;
    height: 1px;
    background: var(--gold);
    border: none;
}

/* Decorative gradient divider */
.decorative-divider {
    width: 100%;
    max-width: 1007px;
    height: 1px;
    margin: 0 auto;
    opacity: 0.18;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold) 30%,
            var(--gold) 70%,
            transparent 100%);
    border: none;
}

/* --------------------------------------------------------------------------
   9. About / Intro Section
   -------------------------------------------------------------------------- */
.about-section {
    background: var(--bg-warm-white);
    padding: var(--section-py) var(--section-px);
}

.about-section__inner {
    display: flex;
    justify-content: space-between;
    gap: 240px;
}

.about-section__left {
    flex-shrink: 0;
    max-width: 432px;
    margin-top: 6rem;
}

.about-section__right {
    max-width: 463px;
}

.about-section__right .body-text {
    margin-bottom: 24px;
}

/* Stacked (single-column) layout used on collection pages (Tintos / Gellos) */
.about-section__stacked {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.about-section__intro {
    max-width: 100%;
}

.about-section__cards-list {
    width: 100%;
}

/* --------------------------------------------------------------------------
   10. Collections Section (Home page)
   -------------------------------------------------------------------------- */
.collections-section {
    background: var(--bg-dark);
    padding: var(--section-py) var(--section-px);
}

.collections__row {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

/* Image card */
.collection-image-card {
    background: #181410;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 40px rgba(184, 146, 90, 0.08),
        0 0 80px rgba(184, 146, 90, 0.04);
}

.collection-image-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(180deg,
            rgba(184, 150, 90, 0.4) 0%,
            rgba(184, 150, 90, 0.08) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.collection-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detail card */
.collection-detail-card {
    background: var(--bg-card-dark);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 40px;
}

.collection-detail-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 32px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.collection-detail-card__list {
    margin-bottom: 24px;
}

.collection-detail-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
}

.collection-detail-card__list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.collection-view-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    border: 0.8px solid var(--gold);
    padding: 12px 24px;
    transition: background 0.3s ease, color 0.3s ease;
}

.collection-view-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* --------------------------------------------------------------------------
   11. Why Arqia Section
   -------------------------------------------------------------------------- */
.why-arqia {
    background: var(--bg-dark);
    padding: 100px var(--section-px);
    position: relative;
    overflow: hidden;
}

.why-arqia__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 280px;
    color: rgba(184, 150, 90, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.why-arqia__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.why-arqia__left {
    flex-shrink: 0;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-arqia__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.why-arqia__card {
    background: rgba(184, 150, 90, 0.1);
    border: 1px solid rgba(184, 150, 90, 0.12);
    border-radius: 0;
    padding: 32px;
}

.why-arqia__card-number {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 12px;
}

.why-arqia__card-title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 15px;
    color: var(--bg-white);
    margin-bottom: 8px;
}

.why-arqia__card-text,
.why-arqia__card-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.why-arqia__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   12. Explore Products / All Products Grid
   -------------------------------------------------------------------------- */
.products-section {
    background: var(--bg-cream);
    padding: var(--section-py) var(--section-px);
    border-top: 2px solid var(--gold);
}

.products-section .section-tag {
    font-size: 12px;
}

.products-section .section-heading {
    font-size: 45px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card__image {
    width: 100%;
    height: 224px;
    border-radius: 0;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
    transform-origin: center top;
    transition: transform 0.4s ease;
}

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

.product-card__title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
}

.product-card__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray-body);
}

.products-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gold);
    color: var(--bg-white);
    padding: 16px 40px;
    margin-top: 48px;
    transition: background 0.3s ease;
}

.products-cta:hover {
    background: var(--gold-rich);
}

/* --------------------------------------------------------------------------
   13. Why Glass Cladding
   -------------------------------------------------------------------------- */
.glass-cladding {
    background: var(--bg-dark);
    padding: var(--section-py) var(--section-px);
}

.glass-cladding__inner {
    display: flex;
    gap: 12vw;
    align-items: flex-start;
}

.glass-cladding__left {
    flex: 0 0 auto;
}

.glass-cladding__right {
    flex: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(184, 150, 90, 0.1);
}

.benefit-item__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
}

.benefit-item__title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 15px;
    color: var(--bg-white);
    margin-bottom: 0;
}

.benefit-item__text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   14. Contact Section
   -------------------------------------------------------------------------- */
.contact-section {
    display: flex;
    min-height: 600px;
}

.contact__image {
    flex: 0 0 25%;
    background-size: cover;
    background-position: center;
    min-height: 100%;
}

.contact__panel {
    flex: 0 0 75%;
    display: flex;
    flex-direction: row;
}

.contact__info {
    background: var(--bg-contact-panel);
    padding: 64px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__info-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 28px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.contact__info-tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 24px;
}

.contact__info-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon--square {
    border-radius: 0;
}

.contact-item__icon img,
.contact-item__icon svg {
    width: 16px;
    height: 16px;
}

.contact-item__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item__text p {
    margin: 0;
}

/* Contact Form */
.contact__form-wrap {
    position: relative;
    padding: 48px;
    flex: 2;
    background-image: url('/static/images/gellos-hero-bg.png');
    background-size: cover;
    background-position: center;
}

.contact__form-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.contact__form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__form-heading {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.contact__form-heading .gold {
    color: var(--gold);
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    font-family: var(--font-card-title);
    font-weight: 400;
    font-size: 16px;
    color: var(--bg-white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 0;
    transition: border-color 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

.form-submit {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: var(--bg-white);
    color: var(--text-black);
    padding: 14px 40px;
    align-self: flex-start;
    transition: background 0.3s ease, color 0.3s ease;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   15. Manufacturing Banner
   -------------------------------------------------------------------------- */
.mfg-banner {
    background: var(--bg-dark);
    padding: 24px var(--section-px);
    text-align: center;
}

.mfg-banner__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.mfg-banner__text strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--bg-footer);
    padding: var(--section-py) var(--section-px);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    color: var(--bg-white);
}

.footer__logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__logo-mark {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--bg-white);
    position: relative;
    display: inline-block;
}

.footer__logo-tm {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    margin-left: 2px;
    vertical-align: super;
    letter-spacing: 0;
}

.footer__logo-sub {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    text-transform: uppercase;
}

.footer__tagline--short {
    display: none;
}

.footer__tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.footer__columns {
    display: flex;
    gap: 96px;
}

.footer__column-title {
    font-family: var(--font-footer);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer__column a {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.footer__column a:hover {
    color: var(--gold-light);
}

.footer__address {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.footer__divider {
    width: 100%;
    height: 1.33px;
    background: var(--divider);
    opacity: 0.3;
    border: none;
    margin-bottom: 32px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__connect-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__copyright {
    font-family: var(--font-footer);
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.footer__social-icon:hover {
    opacity: 0.8;
}

.footer__social-icon img,
.footer__social-icon svg {
    width: 40px;
    height: 40px;
}

.footer__connect {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__connect-label {
    font-family: var(--font-footer);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.footer__connect-line {
    display: block;
    width: 64px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* Contact item gold labels */
.contact-item__label {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   17. Industry Cards (Tintos / gellos pages)
   -------------------------------------------------------------------------- */
.industry-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.industry-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(184, 150, 90, 0.5);
    padding: 10px;
}

.industry-card__icon img,
.industry-card__icon svg {
    width: 36px;
    height: 36px;
}

.industry-card__title {
    font-family: var(--font-card-title);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.industry-card__text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray-body);
}

/* --------------------------------------------------------------------------
   18. Project Cards
   -------------------------------------------------------------------------- */
.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-orange);
}

.project-card__image {
    width: 100%;
    height: 300px;
    position: relative;
}

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

.project-card__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

.project-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--tag-bg);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 1;
}

.project-card__body {
    padding: 20px 24px 24px;
    background: var(--bg-white);
}

.project-card__title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.project-card__text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray-body);
}

/* --------------------------------------------------------------------------
   19. Other Collections Banner
   -------------------------------------------------------------------------- */
.other-collections {
    display: flex;
}

.other-collections__card {
    flex: 1;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.other-collections__card--cream {
    background: var(--bg-cream);
}

.other-collections__card--dark {
    background: var(--bg-dark);
}

.other-collections__label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 12px;
}

.other-collections__card--cream .other-collections__label {
    color: var(--gold-alt);
}

.other-collections__card--dark .other-collections__label {
    color: var(--gold-light);
}

.other-collections__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.other-collections__card--cream .other-collections__title {
    color: var(--text-dark);
}

.other-collections__card--cream .other-collections__title .gold {
    color: var(--gold);
}

.other-collections__card--dark .other-collections__title {
    color: var(--bg-white);
}

.other-collections__subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.other-collections__card--dark .other-collections__subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.other-collections__text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}

.other-collections__card--cream .other-collections__text {
    color: var(--text-gray-body);
}

.other-collections__card--dark .other-collections__text {
    color: rgba(255, 255, 255, 0.55);
}

.other-collections__btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 12px 24px;
    border: 0.8px solid var(--gold);
    background: var(--gold);
    color: var(--text-dark);
    align-self: flex-start;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.other-collections__btn:hover {
    background: transparent;
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   20. Buttons — Shared Variants
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.btn--gold-outline {
    font-size: 14px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    background: transparent;
}

.btn--gold-outline:hover {
    background: var(--gold);
    color: var(--bg-white);
}

.btn--gold-filled {
    font-size: 16px;
    background: var(--gold);
    color: var(--bg-white);
    padding: 12px 40px;
}

.btn--gold-filled:hover {
    background: var(--gold-rich);
}

.btn--dark-gold {
    font-size: 16px;
    background: var(--gold-button);
    color: var(--text-dark);
    padding: 16px 40px;
}

.btn--dark-gold:hover {
    background: var(--gold-rich);
}

.btn--white {
    font-size: 14px;
    background: var(--bg-white);
    color: var(--text-black);
    padding: 14px 40px;
}

.btn--white:hover {
    background: var(--gold);
    color: var(--bg-white);
}

/* --------------------------------------------------------------------------
   21. Utility Classes
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

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

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.gap-48 {
    gap: 48px;
}

.gap-64 {
    gap: 64px;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-48 {
    margin-bottom: 48px;
}

.w-full {
    width: 100%;
}

.relative {
    position: relative;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   NEW HOMEPAGE SECTIONS
   ========================================================================== */

/* --------------------------------------------------------------------------
   H1. Hero — Home New Variant
   -------------------------------------------------------------------------- */
.hero--home-new .hero__heading .text-cream {
    color: #FAF8F5;
}

.hero--home-new .hero__heading .text-gold {
    color: #D4B483;
}

/* --------------------------------------------------------------------------
   H2. Sectors Bar
   -------------------------------------------------------------------------- */
.sectors-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px;
    background: #FAF8F5;
    border-bottom: 1px solid #EAE6DE;
}

.sectors-bar__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.sectors-bar__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sectors-bar__icon img,
.sectors-bar__icon svg {
    width: 56px;
    height: 56px;
}

.sectors-bar__title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    color: #4A4640;
}

.sectors-bar__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #8A857E;
}

.sectors-bar__divider {
    width: 1px;
    align-self: stretch;
    background: #EAE6DE;
}

/* --------------------------------------------------------------------------
   H3. Sector Detail Section
   -------------------------------------------------------------------------- */
.sector-detail {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 120px;
    padding: 80px 120px;
}

.sector-detail--light {
    background: #FFF8EC;
}

.sector-detail--dark {
    background: #1A1814;
}

/* Left column */
.sector-detail__content {
    width: 547px;
    flex-shrink: 0;
}

/* Number badge */
.sector-detail__badge {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 120px;
    letter-spacing: -0.05em;
    color: rgba(184, 150, 90, 0.24);
    line-height: 1;
}

/* Badge label — overlaps the number */
.sector-detail__badge-label {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-top: -41px;
}

.sector-detail__badge-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #B8965A;
    flex-shrink: 0;
}

.sector-detail__badge-label span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #B8965A;
}

/* Heading — reuse .section-heading .gold */

/* Description */
.sector-detail__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}

.sector-detail--light .sector-detail__desc {
    color: #4A4640;
}

.sector-detail--dark .sector-detail__desc {
    color: #8A857E;
}

/* Performance label */
.sector-detail__perf-label {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.sector-detail__perf-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: #B8965A;
    flex-shrink: 0;
}

.sector-detail__perf-label span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.21em;
    color: #B8965A;
}

/* Performance list */
.sector-detail__perf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-detail__perf-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
}

.sector-detail__perf-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #B8965A;
    flex-shrink: 0;
}

.sector-detail--light .sector-detail__perf-list li {
    border-bottom: 0.8px solid #EAE6DE;
    color: #4A4640;
}

.sector-detail--dark .sector-detail__perf-list li {
    border-bottom: 1px solid rgba(184, 150, 90, 0.1);
    color: #8A857E;
}

/* Right image */
.sector-detail__image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 64px rgba(184, 150, 90, 0.25);
    position: relative;
}

.sector-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient border via pseudo-element */
.sector-detail__image::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(150deg, rgba(184, 150, 90, 1) 0%, rgba(255, 237, 204, 1) 48%, rgba(184, 150, 90, 1) 97%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Thin border variant */
.sector-detail__image--thin-border::before {
    padding: 4px;
}

/* --------------------------------------------------------------------------
   H4. Collection Cards Row
   -------------------------------------------------------------------------- */
.collection-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(255, 195, 127, 0.48);
}

.collection-cards__card {
    flex: 1;
    padding: 48px 64px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.collection-cards__card:not(:last-child) {
    border-right: 2px solid rgba(255, 195, 127, 0.48);
}

.collection-cards__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #8A857E;
    margin-bottom: 12px;
}

.collection-cards__name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 32px;
    color: var(--text-dark);
}

.collection-cards__name--bold {
    font-weight: 500;
}

.collection-cards__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #8A857E;
    margin-bottom: 24px;
}

.collection-cards__cta {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #B8965A;
}

/* --------------------------------------------------------------------------
   H5. Sustainability Section
   -------------------------------------------------------------------------- */
.sustainability {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #1A1814;
}

.sustainability__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sustainability__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 100%;
    margin: 0 auto;
}

.sustainability__heading {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.2;
}

.sustainability__heading .text-cream {
    color: #FAF8F5;
}

.sustainability__heading .text-gold {
    color: #D4B483;
}

.sustainability__body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.035em;
    color: rgba(250, 248, 245, 0.42);
}

.sustainability__cta {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #1A1814;
    background: #B8965A;
    padding: 17px 44px;
    transition: background 0.3s ease;
}

.sustainability__cta:hover {
    background: var(--gold-rich);
}

/* --------------------------------------------------------------------------
   HP1. Hero — Home Variant Additions
   -------------------------------------------------------------------------- */
.hero__subheading--italic {
    font-style: italic;
}

.hero__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
}

.hero__link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    color: #FFFFFF;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(184, 150, 90, 0.4);
    background: none;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.hero__link:hover {
    border-bottom-color: var(--gold);
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   HP2. Intro / Our Collections Section
   -------------------------------------------------------------------------- */
.intro-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 120px;
    padding: 80px 120px;
    background: #FFF8EC;
}

.intro-section__left {
    flex-shrink: 0;
    max-width: 480px;
}

.intro-section__carousel-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-section__mobile-cards {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.intro-section__mobile-cards .intro-collection-card {
    width: 100%;
    height: 500px;
    flex: none;
    display: flex;
    flex-direction: column;
}

.intro-section__mobile-cards .intro-collection-card .intro-collection-card__image {
    flex: 0 0 70%;
    height: 70%;
    object-fit: cover;
    width: 100%;
}

.intro-section__mobile-cards .intro-collection-card .intro-collection-card__body {
    flex: 1;
    overflow: hidden;
}

.intro-section__right {
    overflow: hidden;
    width: 100%;
    padding: 16px 0;
}

.collection-carousel__track {
    display: flex;
    gap: 20px;
    will-change: transform;
    flex-shrink: 0;
}

.collection-carousel__track .intro-collection-card {
    flex: 0 0 auto;
    min-width: 0;
}

.collection-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.collection-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 24, 20, 0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.collection-carousel__dot--active {
    background: #B8965A;
    transform: scale(1.25);
}

.intro-stats {
    display: flex;
    flex-direction: row;
    gap: 48px;
    padding-top: 48px;
    border-top: 0.8px solid #EAE6DE;
    margin-top: 32px;
}

.intro-stats__item {
    display: flex;
    flex-direction: column;
}

.intro-stats__number {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 52px;
    color: #1A1814;
    line-height: 1.1;
}

.intro-stats__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8A857E;
}

a.intro-collection-card,
a.featured-product-card {
    text-decoration: none;
    color: inherit;
}

a.intro-collection-card:hover,
a.featured-product-card:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.my-color-lab__collection-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 195, 127, 0.7);
}

.my-color-lab__collection-link:hover {
    text-decoration-color: rgba(255, 195, 127, 1);
}

.intro-collection-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 195, 127, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: rgba(255, 249, 242, 0.8);
    overflow: hidden;
    flex: 1;
    height: 400px;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.intro-collection-card__image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.intro-collection-card__body {
    padding: 20px 24px;
    flex: 1;
    overflow: hidden;
}

.intro-collection-card__title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 20px;
    color: #1C1B1F;
    margin-bottom: 4px;
}

.intro-collection-card__desc {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 14px;
    color: #565656;
}

/* --------------------------------------------------------------------------
   HP3. Featured Products Section
   -------------------------------------------------------------------------- */
.featured-products {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 80px 120px;
    background: #1A1814;
}

.featured-products__header {
    display: flex;
    flex-direction: column;
    max-width: 488px;
    gap: 32px;
}

.featured-products__grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.featured-product-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.featured-product-card__image {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(184, 150, 90, 0.6);
    box-shadow: 0 4px 40px rgba(184, 150, 90, 0.15);
    aspect-ratio: 1 / 1;
}

.featured-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-product-card__title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 24px;
    color: #FAF8F5;
}

.featured-product-card__desc {
    font-family: var(--font-card-title);
    font-weight: 400;
    font-size: 20px;
    color: #8A857E;
}

/* --------------------------------------------------------------------------
   HP3b. My Color Lab Section
   -------------------------------------------------------------------------- */
.my-color-lab {
    background: #FFF8EC;
    padding: 80px 120px;
}

.my-color-lab__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.my-color-lab__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 533px;
}

.my-color-lab__heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: #000000;
}

.my-color-lab__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: #4A4640;
}

.my-color-lab__divider {
    width: 100%;
    height: 1px;
    background: #B8965A;
    opacity: 0.4;
}

.my-color-lab__tagline {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #B8965A;
}

.my-color-lab__image-wrap {
    flex-shrink: 0;
    width: 450px;
    height: 455px;
    border-radius: 8px;
    overflow: hidden;
}

.my-color-lab__image-wrap img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   HP4. Techniques Section
   -------------------------------------------------------------------------- */
.techniques-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    padding: 80px 120px;
    background: #1A1814;
}

.techniques-section__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.techniques-section__header-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.techniques-section__header-right {
    max-width: 340px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #8A857E;
    text-align: left;
}

.techniques-section__grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
}

.technique-card {
    flex: 1;
    border-radius: 8px;
    border: 1px solid rgba(255, 195, 127, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    overflow: hidden;
}

.technique-card__image {
    width: 100%;
    height: 373px;
    object-fit: cover;
    display: block;
}

.technique-card__body {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.technique-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    color: #1A1814;
}

.technique-card__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: #695E4A;
}

.technique-card__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #B9965A;
    transition: color 0.25s ease;
}

.technique-card__link:hover {
    color: var(--gold-rich);
}

/* --------------------------------------------------------------------------
   HP5. Featured Projects Section
   -------------------------------------------------------------------------- */
.fp-section {
    background: #1A1814;
}

.fp-section .section-heading {
    color: #FAF8F5;
}

.fp-section__top {
    display: flex;
    align-items: flex-start;
    padding: 0px 0 0 120px;
    gap: 80px;
}

.fp-section__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 100px;
    padding-bottom: 80px;
    flex-shrink: 0;
    width: 280px;
}

.fp-section__main-card {
    flex: 1;
}

.fp-section__row {
    display: flex;
    border-top: 2px solid rgba(255, 195, 127, 0.48);
}

.fp-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.fp-section__row .fp-card:not(:last-child) {
    border-right: 2px solid rgba(255, 195, 127, 0.48);
}

.fp-card__image-wrap {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.fp-card__image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
    pointer-events: none;
}

/* Bottom row cards: text overlaid on image, no white section */
.fp-section__row .fp-card {
    position: relative;
}

.fp-section__row .fp-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 24px;
    background: transparent;
}

.fp-section__row .fp-card__title {
    color: var(--text-dark);
}

.fp-section__row .fp-card__location {
    color: var(--text-dark-gray);
}

.fp-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #CA976D;
    color: #FFFFFF;
    padding: 6px 12px;
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 14px;
    z-index: 1;
    border-radius: 4px;
}

.fp-card__info {
    padding: 16px 24px;
}

/* Main card: also overlay text on image */
.fp-section__main-card .fp-card {
    position: relative;
    margin-left: 31.5vw;
}

.fp-section__main-card .fp-card__image-wrap {
    height: 420px;
}

.fp-section__main-card .fp-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 16px 24px;
    background: transparent;
}

.featured-project-card__title,
.fp-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    color: #1A1814;
}

.featured-project-card__location,
.fp-card__location {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

/* --------------------------------------------------------------------------
   HP6. Why Arqia — Home Variant Overrides
   -------------------------------------------------------------------------- */
.why-arqia--home {
    min-height: 655px;
}

/* Cladding & Partitions pages only — desktop margin */
.why-arqia--product .why-arqia__cards {
    margin-left: 10vw;
}

.why-arqia__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: #8A857E;
}

.why-arqia--home .why-arqia__cards {
    display: grid;
    grid-template-columns: repeat(2, 226px);
    gap: 16px;
    position: absolute;
    right: 120px;
    top: 0px;
    margin-top: 0;
}

.why-arqia--home .why-arqia__card {
    width: 226px;
    flex: none;
}

.why-arqia--home .why-arqia__card-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #FAF8F5;
}

.why-arqia--home .why-arqia__card-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    line-height: 1.75em;
    color: rgba(250, 248, 245, 0.42);
}

/* --------------------------------------------------------------------------
   HP7. Design & Engineering Section
   -------------------------------------------------------------------------- */
.design-engineering {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 80px 120px;
    background: #FAF8F5;
}

.design-engineering .section-heading {
    font-size: 36px;
    margin-top: -32px;
}

.design-engineering__header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.design-engineering__grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.design-engineering__card {
    flex: 1;
    background: rgba(184, 150, 90, 0.1);
    border: 1px solid rgba(184, 150, 90, 0.12);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.design-engineering__card-icon {
    width: 32px;
    height: 32px;
    color: #B8965A;
}

.design-engineering__card-icon img,
.design-engineering__card-icon svg {
    width: 32px;
    height: 32px;
}

.design-engineering__card-title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 20px;
    color: #1A1814;
}

.design-engineering__card-desc {
    font-family: var(--font-card-title);
    font-weight: 400;
    font-size: 16px;
    color: #535353;
}

/* --------------------------------------------------------------------------
   HP8. Materials Section
   -------------------------------------------------------------------------- */
.materials-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 80px 120px;
    background: #FAF8F5;
}

.materials-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.material-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.material-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.material-card__title {
    font-family: var(--font-card-title);
    font-weight: 500;
    font-size: 20px;
    color: #1C1B1F;
}

.material-card__desc {
    font-family: var(--font-card-title);
    font-weight: 400;
    font-size: 16px;
    color: #565656;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   21b. Catalog Download Modal
   -------------------------------------------------------------------------- */
.catalog-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.catalog-modal-backdrop--visible {
    opacity: 1;
    pointer-events: auto;
}

.catalog-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(480px, 92vw);
    max-height: 96dvh;
    overflow-y: auto;
    background: #FFFFFF;
    border: 1.5px solid rgba(184, 150, 90, 0.35);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-direction: column;
}

.catalog-modal--open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.catalog-modal-backdrop,
.catalog-modal {
    display: block;
}

.catalog-modal:not(.catalog-modal--open) {
    pointer-events: none;
}

.catalog-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 12px;
    border-bottom: 1px solid rgba(184, 150, 90, 0.18);
}

.catalog-modal__header-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-modal__header-line {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.catalog-modal__header-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
}

.catalog-modal__close {
    font-size: 22px;
    color: var(--text-dark);
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.catalog-modal__close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.catalog-modal__body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.catalog-modal__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.catalog-modal__title-italic {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.catalog-modal__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-gray-body);
    margin-bottom: 14px;
}

.catalog-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.catalog-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.catalog-modal__field label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-dark);
}

.catalog-modal__field input,
.catalog-modal__field select {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    color: var(--text-dark);
    background: #F9F7F4;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8px 10px;
    width: 100%;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.catalog-modal__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23B8925A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.catalog-modal__field input:focus,
.catalog-modal__field select:focus {
    border-bottom-color: var(--gold);
    outline: none;
}

.catalog-modal__field input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.catalog-modal__submit {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: var(--gold);
    color: var(--bg-white);
    border: none;
    padding: 13px 24px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    margin-top: 4px;
}

.catalog-modal__submit:hover {
    background: var(--gold-rich);
}

.catalog-modal__privacy {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 10px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   22. Responsive — 1200px
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    :root {
        --section-px: 80px;
    }

    .about-section__inner {
        gap: 120px;
    }

    .footer__columns {
        gap: 56px;
    }

    .hero__heading,
    .hero__subheading {
        font-size: 52px;
    }

    .why-arqia__watermark {
        font-size: 200px;
    }

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

/* --------------------------------------------------------------------------
   23. Responsive — 992px
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    :root {
        --section-px: 48px;
    }

    .about-section__inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-section__left,
    .about-section__right {
        max-width: 100%;
    }

    .about-heading--desktop {
        display: none;
    }

    .about-heading--mobile {
        display: block;
    }

    .collections__row {
        flex-direction: column;
        gap: 32px;
    }

    .glass-cladding__inner {
        flex-direction: column;
        gap: 48px;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact__image {
        display: none;
    }

    .contact__panel {
        flex: 1 1 100%;
        flex-direction: column;
    }

    .contact__form-wrap {
        order: 1;
        padding: 32px 24px;
    }

    .contact__form-heading {
        font-size: 28px;
    }

    .contact__info {
        order: 2;
    }

    .other-collections {
        flex-direction: column;
    }

    .hero__heading,
    .hero__subheading {
        font-size: 44px;
    }

    .hero__content {
        max-width: 100%;
        padding-left: 48px;
        padding-right: 48px;
    }

    .why-arqia__cards {
        flex-wrap: wrap;
    }

    .why-arqia--product .why-arqia__cards {
        margin-left: 0;
    }

    .why-arqia__card {
        flex: 1 1 calc(50% - 16px);
    }

    .footer__top {
        flex-direction: column;
        gap: 40px;
    }

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

    /* New homepage — 992px */
    .sectors-bar {
        flex-wrap: wrap;
        padding: 0 48px;
    }

    .sector-detail {
        flex-direction: column;
        gap: 48px;
    }

    .sector-detail__content {
        width: 100%;
    }

    .collection-cards {
        flex-direction: column;
    }

    .collection-cards__card:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid rgba(255, 195, 127, 0.48);
    }

    /* New homepage — 992px */
    .intro-section {
        flex-direction: column;
        gap: 48px;
    }

    .intro-section__right {
        width: 100%;
    }

    .featured-products__grid {
        flex-direction: column;
    }

    .techniques-section__header {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .techniques-section__header-right {
        text-align: left;
    }

    .techniques-section__grid {
        flex-direction: column;
    }

    .technique-card__image {
        height: 240px;
        flex: none;
    }

    .featured-projects__grid {
        flex-direction: column;
    }

    .featured-project-main,
    .featured-project-row {
        width: 100%;
    }

    .featured-projects__header {
        position: relative;
        left: auto;
        top: auto;
    }

    .fp-section__top {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .fp-section__header {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .fp-section__main-card {
        width: 100%;
    }

    .fp-section__main-card .fp-card {
        margin-left: 0;
    }

    .fp-section__main-card .fp-card__image-wrap {
        height: 360px;
    }

    .fp-section__row {
        flex-direction: column;
    }

    .fp-section__row .fp-card {
        width: 100%;
        padding: 0;
    }

    .fp-section__row .fp-card:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid rgba(255, 195, 127, 0.48);
        width: 100%;
        padding: 0;
    }

    .fp-section__row .fp-card__image-wrap {
        height: 360px;
    }

    .fp-card__image-wrap {
        height: 360px;
    }

    .featured-project-card__image,
    .featured-project-card__image-wrap {
        height: 300px;
    }

    .design-engineering__grid {
        flex-direction: column;
    }

    .why-arqia--home .why-arqia__cards {
        position: relative;
        right: auto;
        top: auto;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-top: 32px;
    }

    .why-arqia--home .why-arqia__card {
        width: auto;
    }
}

/* --------------------------------------------------------------------------
   24. Responsive — 768px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-px: 24px;
        --section-py: 56px;
    }

    /* Navbar mobile — hamburger | logo | CTA */
    .navbar {
        padding: 0 16px;
        height: 72px;
        justify-content: space-between;
    }

    .navbar__menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        order: 1;
    }

    .navbar__logo {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .navbar__logo img {
        width: 120px;
    }

    .navbar__links {
        display: none !important;
    }

    /* Show compact CTA in navbar on mobile */
    .navbar__cta {
        order: 3;
        font-size: 9px;
        padding: 8px 10px;
        letter-spacing: 0.1em;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Drawer backdrop visible on mobile */
    .mobile-backdrop {
        display: block;
    }

    /* Hero */
    .hero {
        height: 500px;
    }

    .hero__bg {
        filter: blur(2px);
        transform: scale(1.04);
    }

    .hero__heading {
        font-size: 36px;
    }

    .hero__subheading {
        font-size: 44px;
    }

    .hero__cta {
        padding: 14px 32px;
        font-size: 14px;
    }

    .about-section__left {
        margin-top: 0;
    }

    .about-section .body-text {
        font-size: 13px;
    }

    .why-arqia__content {
        flex-direction: column;
        gap: 32px;
    }

    .why-arqia__left {
        max-width: 100%;
    }

    .why-arqia--home {
        min-height: auto;
        padding: 56px 24px;
    }

    .why-arqia--home .why-arqia__cards {
        position: relative;
        right: auto;
        top: auto;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 0;
        gap: 16px;
    }

    .why-arqia--home .why-arqia__card {
        width: auto;
    }

    .why-arqia__cards {
        flex-direction: column;
    }

    .why-arqia__card {
        flex: 1 1 100%;
    }

    .why-arqia__watermark {
        font-size: 120px;
    }

    .footer {
        padding: 7px 24px;
    }

    .footer__logo {
        margin-bottom: 16px;
    }

    .footer__logo img {
        height: 60px;
        margin-bottom: 2vh;
    }

    .footer__logo-mark {
        font-size: 44px;
    }

    .footer__logo-sub {
        font-size: 12px;
        letter-spacing: 0.28em;
        margin-top: 8px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer__brand {
        max-width: 100%;
    }

    /* Switch short tagline on mobile */
    .footer__tagline--long {
        display: none;
    }

    .footer__tagline--short {
        display: block;
    }

    /* Reorder columns: Contact Us full-width on top, Portfolio + Company side by side */
    .footer__columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        width: 100%;
    }

    /* Contact Us = 3rd child → move to top, full width */
    .footer__columns .footer__column:nth-child(3) {
        order: -1;
        grid-column: 1 / -1;
    }

    .footer__column-title {
        font-size: 16px;
        letter-spacing: 0;
        text-transform: none;
        margin-bottom: 16px;
    }

    .footer__column a,
    .footer__column p {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer__bottom {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }

    .footer__connect-socials {
        display: contents;
    }

    .footer__connect {
        order: 1;
        flex: 0 0 auto;
    }

    .footer__copyright {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 13px;
    }

    .footer__socials {
        order: 3;
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 4px;
    }

    .footer__social-icon {
        width: 70px;
        height: 70px;
    }

    .footer__social-icon img,
    .footer__social-icon svg {
        width: 50px;
        height: 50px;
    }

    .contact__info,
    .contact__form-wrap {
        padding: 40px 24px;
    }

    /* New homepage — 768px */
    .sectors-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 0rem;
    }

    .sectors-bar__divider {
        width: 100%;
        height: 1px;
    }

    .sectors-bar__item {
        width: 50%;
        padding: 16px 16px;
        gap: 10px;
    }

    .sectors-bar__item:nth-child(4n+1) {
        align-self: flex-start;
    }

    .sectors-bar__item:nth-child(4n+3) {
        align-self: flex-end;
    }

    .sectors-bar .sectors-bar__icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .sectors-bar .sectors-bar__icon img,
    .sectors-bar .sectors-bar__icon svg {
        width: 36px;
        height: 36px;
    }

    .sectors-bar .sectors-bar__title {
        font-size: 12px;
        white-space: nowrap;
    }

    .sectors-bar .sectors-bar__subtitle {
        font-size: 11px;
        white-space: nowrap;
    }

    .sustainability {
        height: auto;
        min-height: unset;
        padding: 56px 24px;
    }

    .sustainability__bg {
        object-fit: cover;
    }

    .sustainability__content {
        max-width: 100%;
        gap: 20px;
        padding: 0;
    }

    .sustainability .section-heading {
        font-size: 28px;
    }

    .sustainability__body {
        font-size: 13px;
        padding: 0 8px;
    }

    .sector-detail {
        padding: 56px 24px;
        gap: 32px;
    }

    .sector-detail__badge {
        font-size: 80px;
    }

    .collection-cards__card {
        padding: 32px 24px;
    }

    .sustainability__heading {
        font-size: 36px;
    }

    /* New homepage — 768px */
    .intro-section {
        padding: 56px 24px;
        gap: 32px;
    }

    .intro-section .section-tag {
        margin-bottom: 12px;
        display: block;
    }

    .intro-section .section-heading {
        margin-bottom: 20px;
    }

    .intro-section .body-text {
        margin-top: 12px;
    }

    .intro-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 48px;
        margin-top: 24px;
        padding-top: 32px;
    }

    .intro-stats__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-stats__item:last-child {
        grid-column: 1 / -1;
    }

    .intro-stats__number {
        font-size: 36px;
    }

    .intro-section__carousel-wrap {
        width: 100%;
    }

    .featured-product-card__desc {
        font-size: 12px;
    }

    .intro-section__carousel-wrap--desktop {
        display: none;
    }

    .intro-section__mobile-cards {
        display: flex;
    }

    .collection-carousel__dots {
        display: none;
    }

    .featured-products {
        padding: 56px 24px;
    }

    .my-color-lab {
        padding: 56px 24px;
    }

    .my-color-lab__content {
        flex-direction: column;
        gap: 40px;
    }

    .my-color-lab__image-wrap {
        width: 100%;
        height: 50vh;
    }

    .techniques-section {
        padding: 56px 24px;
    }

    .technique-card {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .technique-card__image {
        flex: none;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .about-section__inner {
        gap: 20px;
    }

    .technique-card__body {
        flex: 1;
        padding: 12px 18px;
        gap: 8px;
        overflow: hidden;
    }

    .technique-card__title {
        font-size: 16px;
    }

    .technique-card__desc {
        font-size: 12px;
    }

    .technique-card__link {
        font-size: 12px;
    }

    .featured-projects__header {
        padding: 32px 24px;
    }

    .featured-project-main {
        height: auto;
    }

    .design-engineering {
        padding: 56px 24px;
    }

    .design-engineering .section-heading {
        font-size: 26px;
        margin-top: -16px;
    }

    .design-engineering__card {
        padding: 20px;
        gap: 12px;
    }

    .design-engineering__card-title {
        font-size: 16px;
    }

    .design-engineering__card-desc {
        font-size: 13px;
    }

    .materials-section {
        padding: 56px 24px;
        gap: 32px;
    }

    .materials-section .section-heading {
        font-size: 28px;
    }

    .materials-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .material-card__title {
        font-size: 15px;
    }

    .material-card__desc {
        font-size: 12px;
    }

    .hero__buttons {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero__link {
        font-size: 16px;
    }

    .hero__tag {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .hero__overlay {
        background: linear-gradient(180deg,
                rgba(10, 10, 10, 0.75) 0%,
                rgba(10, 10, 10, 0.6) 100%);
    }
}

/* --------------------------------------------------------------------------
   25. Responsive — 576px
   -------------------------------------------------------------------------- */
@media (max-width: 576px) {
    .hero {
        height: 420px;
    }

    .hero__heading,
    .hero__subheading {
        font-size: clamp(22px, 10vw, 30px);
    }

    .hero__heading {
        margin-top: 2rem;
    }

    .hero__content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero__description {
        font-size: 14px;
    }

    .section-tag {
        font-size: 12px;
    }

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

    .product-card__image {
        height: 160px;
    }

    .product-card__title {
        font-size: 13px;
    }

    .product-card__description {
        font-size: 12px;
    }

    .industry-card {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        padding: 20px 0;
    }

    .industry-card__icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        padding: 8px;
    }

    .industry-card__icon img,
    .industry-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .products-cta {
        display: block;
        text-align: center;
        white-space: nowrap;
        padding: 16px 24px;
        font-size: 13px;
    }

    .other-collections {
        flex-direction: row;
        align-items: stretch;
    }

    .other-collections__card {
        padding: 24px 16px;
        flex: 1;
        justify-content: flex-start;
    }

    .other-collections__label {
        font-size: 10px;
        letter-spacing: 0.2em;
        margin-bottom: 8px;
    }

    .other-collections__title {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .other-collections__subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .other-collections__text {
        font-size: 12px;
        flex: 1;
        margin-bottom: 16px;
    }

    .other-collections__btn {
        font-size: 11px;
        padding: 10px 14px;
        align-self: flex-start;
        margin-top: auto;
    }

    .contact__form {
        gap: 28px;
    }

    .navbar__links {
        padding: 20px;
        gap: 16px;
    }

    .section-heading {
        font-size: 28px;
    }
}

/* ==========================================================================
   Contact Us Page
   ========================================================================== */

/* Hero overrides for contact page */
.cu-hero .hero__tag {
    margin-bottom: 24px;
}

.cu-hero .hero__heading:first-of-type {
    margin-bottom: 4px;
}

.cu-hero__overlay {
    background: linear-gradient(90deg,
            rgba(30, 30, 30, 0.88) 0%,
            rgba(30, 30, 30, 0.55) 50%,
            rgba(5, 5, 5, 0.2) 100%);
}

.cu-hero__subline {
    margin-top: 8px;
    margin-bottom: 36px;
    color: var(--gold-light);
}

/* ---- Contact hero — mobile overrides ---- */
@media (max-width: 576px) {
    .cu-hero {
        height: auto;
        min-height: 520px;
    }

    .cu-hero .hero__heading {
        font-size: clamp(28px, 9vw, 36px);
        line-height: 1.15;
        margin-top: 0;
    }

    .cu-hero__subline {
        font-size: clamp(28px, 7.5vw, 36px);
        line-height: 1.15;
        margin-top: 6px;
        margin-bottom: 20px;
    }

    .cu-hero .hero__description {
        font-size: 13px;
        line-height: 1.65;
        max-width: 100%;
    }
}

/* ---- Intro Section ---- */
.cu-intro {
    display: grid;
    grid-template-columns: 1fr 540px;
    grid-template-rows: auto auto;
    grid-template-areas:
        "header form"
        "cards  form";
    background: var(--bg-cream);
    padding: 80px 120px;
    column-gap: 80px;
    row-gap: 48px;
}

.cu-intro__header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cu-form-panel {
    grid-area: form;
}

.cu-contact-cards {
    grid-area: cards;
}

.cu-intro__heading {
    font-size: 48px;
    max-width: 456px;
}

/* Phrase spans — inline on desktop, block on mobile */
.cu-intro__phrase {
    display: inline;
}

.cu-intro__phrase--gold {
    color: var(--gold);
}

.cu-intro__body {
    font-size: 16px;
    font-weight: 300;
    max-width: 480px;
}

/* Contact cards (Visit Atelier / Direct Inquiry) */
.cu-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cu-contact-card {
    background: rgba(184, 150, 90, 0.1);
    border: 1px solid rgba(184, 150, 90, 0.12);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cu-contact-card__label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    color: var(--gold);
}

.cu-contact-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--text-dark);
}

.cu-contact-card__address {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark-gray);
}

.cu-contact-card__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.07em;
    color: var(--gold);
    transition: opacity 0.2s ease;
}

.cu-contact-card__link:hover {
    opacity: 0.75;
}

/* Form panel (right side) */
.cu-form-panel {
    width: 540px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
}

.cu-form-panel__accent {
    height: 4px;
    background: var(--gold-alt);
    flex-shrink: 0;
}

.cu-form-panel__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1;
}

.cu-form-panel__heading {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    color: var(--text-dark);
}

.cu-form-panel__sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-medium-gray);
    margin-top: -12px;
}

/* Form fields */
.cu-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cu-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cu-form__field label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--text-dark-gray);
}

.cu-form__field input,
.cu-form__field select {
    background: rgba(234, 230, 222, 0.4);
    border: 0.8px solid rgba(184, 150, 90, 0.2);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-dark);
    width: 100%;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.cu-form__field input::placeholder {
    color: rgba(26, 24, 20, 0.5);
}

.cu-form__field input:focus,
.cu-form__field select:focus {
    border-color: var(--gold);
    outline: none;
}

.cu-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8925A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.cu-form__submit {
    background: var(--gold-alt);
    color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: stretch;
}

.cu-form__submit:hover {
    background: var(--gold-rich);
}

.cu-form__privacy {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-medium-gray);
    text-align: center;
}

/* ---- Technical Consultation Section ---- */
.cu-tech {
    background: var(--bg-dark);
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.cu-tech__header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cu-tech__tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-alt);
}

.cu-tech__heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: var(--bg-cream);
    max-width: 480px;
}

.cu-tech__heading-em {
    font-style: italic;
    color: var(--gold-light);
}

/* Tech cards grid */
.cu-tech__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cu-tech-card {
    background: rgba(36, 32, 24, 0.4);
    border: 1px solid #322C24;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cu-tech-card__num {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    color: var(--gold-button);
}

.cu-tech-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.cu-tech-card__title {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-button);
}

.cu-tech-card__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(250, 248, 245, 0.64);
}

.cu-tech-card__cta {
    display: inline-block;
    background: var(--gold-alt);
    color: #1A1814;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.cu-tech-card__cta:hover {
    background: var(--gold-rich);
}

/* ---- Manufacturing Core Section ---- */
.cu-manufacturing {
    background: #F2EEE8;
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.cu-manufacturing__tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-alt);
}

.cu-manufacturing__heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: var(--text-black);
}

.cu-manufacturing__heading em {
    font-style: italic;
    color: var(--gold-alt);
}

.cu-manufacturing__body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark-gray);
    max-width: 547px;
}

/* ---- Mobile drawer CTA item ---- */
.mobile-drawer__item--cta {
    color: var(--gold);
    border-top: 1px solid rgba(184, 146, 90, 0.15);
    margin-top: 8px;
    font-weight: 700;
}

/* ==========================================================================
   Terms & Conditions Page
   ========================================================================== */

.tc-main {
    background: var(--bg-cream);
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* Header */
.tc-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tc-header__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -0.023em;
    color: var(--text-dark);
    max-width: 720px;
}

.tc-header__title-dark {
    color: var(--text-dark);
}

.tc-header__title-gold {
    color: var(--gold-light);
    font-style: italic;
}

.tc-header__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.013em;
    color: var(--text-black);
}

/* Section wrapper */
.tc-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tc-section__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 16px;
}

.tc-section__title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 64px;
    line-height: 1.2;
    color: var(--gold-light);
    font-style: italic;
}

.tc-section__subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark-gray);
    max-width: 560px;
}

/* Cards grid */
.tc-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.tc-card {
    background: rgba(184, 150, 90, 0.1);
    border: 1px solid rgba(184, 150, 90, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tc-card__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: var(--text-dark);
}

.tc-card__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark-gray);
}

/* Gold divider bar */
.tc-divider {
    height: 4px;
    background: var(--gold-alt);
    width: 100%;
}

/* ==========================================================================
   Contact Us — Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .cu-intro {
        display: flex;
        flex-direction: column;
        padding: 60px 48px;
        gap: 48px;
    }

    .cu-form-panel {
        width: 100%;
    }

    .cu-tech {
        padding: 60px 48px;
    }

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

    .cu-manufacturing {
        padding: 60px 48px;
        max-width: none;
    }

    .tc-main {
        padding: 60px 48px;
    }

    .tc-header__title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .cu-intro {
        padding: 40px 24px;
        gap: 40px;
    }

    .cu-intro__heading {
        font-size: 36px;
        max-width: none;
    }

    .cu-form-panel__body {
        padding: 24px 20px;
    }

    .cu-tech {
        padding: 48px 24px;
        gap: 40px;
    }

    .cu-tech__heading {
        font-size: 36px;
    }

    .cu-tech__grid {
        grid-template-columns: 1fr;
    }

    .cu-manufacturing {
        padding: 48px 24px;
        max-width: none;
    }

    .cu-manufacturing__heading {
        font-size: 36px;
    }

    .tc-main {
        padding: 40px 24px;
        gap: 40px;
    }

    .tc-header__title {
        font-size: 40px;
    }

    .tc-section__title {
        font-size: 36px;
    }

    .tc-card__title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .cu-intro {
        padding: 32px 16px;
        gap: 32px;
    }

    /* Each heading phrase on its own line on mobile */
    .cu-intro__phrase {
        display: block;
    }

    .cu-intro__heading {
        font-size: 32px;
        line-height: 1.2;
        max-width: none;
    }

    .cu-intro__body {
        font-size: 14px;
        max-width: none;
    }

    .cu-form-panel__body {
        padding: 20px 16px;
    }

    .cu-form-panel__heading {
        font-size: 26px;
    }

    .cu-tech {
        padding: 32px 16px;
        background-image: url('/static/images/arqia.svg');
        background-size: auto 55%;
        background-position: center bottom 40px;
        background-repeat: no-repeat;
    }

    .cu-tech__heading {
        font-size: 33px;
    }

    .cu-tech-card {
        padding: 24px 16px;
    }

    .cu-manufacturing {
        padding: 32px 16px;
    }

    .cu-manufacturing__heading {
        font-size: 40px;
    }

    .tc-main {
        padding: 32px 16px;
        gap: 32px;
    }

    .tc-header__title {
        font-size: 32px;
    }

    .tc-section__title {
        font-size: 28px;
    }

    .tc-card {
        padding: 16px;
    }

    .tc-card__title {
        font-size: 25px;
    }

    .tc-card__text {
        font-size: 12px;
    }
}

/* --------------------------------------------------------------------------
   Collection page: About-the-Collection zigzag layout
   -------------------------------------------------------------------------- */
.about-section--zigzag {
    background: var(--bg-warm-white);
}
.about-zigzag {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
}
.about-zigzag__intro { max-width: 540px; }
.about-zigzag__row {
    display: flex;
    gap: 196px;
    align-items: center;
}
.about-zigzag__row--reverse { flex-direction: row-reverse; }
.about-zigzag__text {
    flex: 1 1 0;
    max-width: 520px;
}
.about-zigzag__image {
    flex: 1 1 0;
    max-width: 556px;
    aspect-ratio: 556 / 320;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 64px rgba(184, 150, 90, 0.25);
    background: #1a1814;
}
.about-zigzag__image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(150deg, rgba(184,150,90,1) 0%, rgba(255,237,204,1) 48%, rgba(184,150,90,1) 97%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}
.about-zigzag__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .about-zigzag { gap: 48px; }
    .about-zigzag__row,
    .about-zigzag__row--reverse {
        flex-direction: column;
        gap: 32px;
    }
    /* In column flex, `flex: 1 1 0` collapses height to 0 — kill the flex
       sizing so the image can derive its height from its aspect-ratio. */
    .about-zigzag__text,
    .about-zigzag__image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

/* Product cards: clickable + non-clickable variants */
a.product-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}
.product-card--no-link { cursor: default; }

.product-card__image--placeholder {
    background:
        repeating-linear-gradient(
            45deg,
            rgba(184, 150, 90, 0.05) 0,
            rgba(184, 150, 90, 0.05) 8px,
            rgba(184, 150, 90, 0.10) 8px,
            rgba(184, 150, 90, 0.10) 16px
        ),
        var(--bg-warm-white);
    border: 1px dashed rgba(184, 150, 90, 0.35);
}

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */
.product-hero {
    background: #F4EFE6;
    padding: 120px var(--section-px) 100px;
}
.product-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
    max-width: 1440px;
    margin: 0 auto;
}
.product-hero__media {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.product-hero__image {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #1a1814;
    border: 4px solid #C9A972;
    box-shadow: 0 12px 72px rgba(184, 150, 90, 0.22);
}
.product-hero__image--secondary { margin-top: 28px; }
.product-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
    transform-origin: center top;
    display: block;
}
.product-hero__caption {
    align-self: flex-end;
    margin-top: 14px;
    margin-right: 8px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #6A5E54;
}
.product-hero__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}
.product-hero__tag {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.32em;
    color: var(--gold-alt);
    margin-bottom: 8px;
}
.product-hero__name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -0.005em;
    color: var(--text-dark);
    margin: 4px 0 0;
}
.product-hero__collection {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #6A5E54;
    margin: 0 0 12px;
}
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 8px 0 16px;
    border-top: 1px solid rgba(184, 150, 90, 0.28);
    padding-top: 28px;
}
.product-specs__row dt {
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #B8965A;
    margin-bottom: 4px;
}
.product-specs__row dd {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #6A5E54;
    margin: 0;
}
.product-hero__cta {
    align-self: flex-start;
    display: inline-block;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    background: var(--gold);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: 12px;
}
.product-hero__cta:hover { background: var(--gold-rich); }

.product-design {
    background: #ECE7DD;
    padding: 100px var(--section-px);
    text-align: left;
}
.product-design .section-tag {
    font-family: var(--font-label);
    letter-spacing: 0.32em;
    color: var(--gold-alt);
}
.product-design .section-heading {
    font-size: 56px;
    margin-top: 18px;
}
.product-design__copy {
    max-width: 720px;
    margin-top: 28px;
    color: var(--text-gray-body);
}

@media (max-width: 900px) {
    .product-hero { padding: 96px 24px 72px; }
    .product-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .product-hero__name { font-size: 42px; }
    .product-hero__image { aspect-ratio: 4 / 3; }
    .product-design { padding: 72px 24px; }
    .product-design .section-heading { font-size: 40px; }
}