/* =========================================================
   Interior Glamorous — site stylesheet (rev 2)
   Matches supplied design boards: home-1, home-2,
   collection-1, explore_more-1.
   ========================================================= */

:root {
    --color-bg: #000000;
    --color-bg-2: #0b0b0b;
    --color-bg-3: #131313;
    --color-surface: #1b1b1b;
    --color-line: rgba(255, 255, 255, 0.12);
    --color-gold: #d5b781;
    --color-gold-2: #c9a96a;
    --color-gold-strong: #e4cb94;
    --color-text: #ffffff;
    --color-text-muted: #d7d1c2;
    --color-text-soft: #8f8775;
    --color-cream: #f4efe4;

    --font-display: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --container-max: 1280px;
    --gutter: clamp(20px, 4vw, 56px);

    --shadow-soft: 0 22px 60px -28px rgba(0, 0, 0, 0.7);

    --transition-fast: 180ms cubic-bezier(.2,.6,.2,1);
    --transition-med: 320ms cubic-bezier(.2,.6,.2,1);

    --header-height: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--color-gold); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
    margin: 0 0 0.4em;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.005em;
    color: var(--color-text);
}
p { margin: 0 0 1em; color: var(--color-text-muted); }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: clamp(60px, 9vw, 120px); }
.section--tight { padding-block: clamp(0px, 2vw, 40px) clamp(60px, 9vw, 120px); }

.visually-hidden,
.skip-link:not(:focus) {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; top: 14px; left: 14px;
    background: var(--color-gold); color: #111;
    padding: 10px 16px; border-radius: 999px; z-index: 1000;
    font-weight: 600;
}

/* ===== Buttons ============================================ */
.btn {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: .6em;
    padding: 14px 30px;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.btn--gold {
    background: var(--color-gold);
    color: #1a1308;
}
.btn--gold:hover { background: var(--color-gold-2); color: #1a1308; }

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--color-gold); color: var(--color-gold); }

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(255,255,255,0.4);
    padding: 10px 22px;
    font-size: .72rem;
    letter-spacing: 0.12em;
}
.btn--ghost:hover { border-color: var(--color-gold); color: var(--color-gold); }

.btn--small {
    padding: 9px 20px;
    font-size: .72rem;
    letter-spacing: 0.12em;
    font-weight: 500;
    text-transform: none;
}
.btn--send { padding: 12px 28px; font-size: .78rem; }

/* ===== Header ============================================ */
.ig-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: transparent;
}
.ig-header.is-stuck {
    position: fixed;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-line);
}
.ig-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-height);
    gap: 24px;
}

.ig-logo { display: inline-flex; align-items: center; gap: 12px; }
.ig-logo__mark {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-sans); font-weight: 700;
    letter-spacing: .02em;
    font-size: .95rem;
    border-radius: 2px;
}
.ig-logo__text {
    display: grid; gap: 2px;
    font-family: var(--font-sans);
    font-weight: 700; letter-spacing: .22em;
    font-size: .72rem; line-height: 1;
    color: var(--color-gold);
}
.ig-logo__text span { display: block; }

.ig-nav { display: flex; align-items: center; gap: 36px; }
.ig-nav ul {
    display: flex; gap: 32px;
    list-style: none; padding: 0; margin: 0;
}
.ig-nav .btn--gold {
    padding: 10px 22px;
    color: #ffffff;
    letter-spacing: .12em;
    font-weight: 700;
}
.ig-nav .btn--gold:hover { color: #ffffff; }
.ig-nav a {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 6px 0;
    position: relative;
    transition: color var(--transition-fast);
}
.ig-nav a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: center;
    transition: transform var(--transition-fast);
}
.ig-nav a:hover, .ig-nav a.is-active { color: #ffffff; }
.ig-nav a.is-active::after { transform: scaleX(1); }

.ig-nav-toggle {
    display: none;
    background: transparent; border: 0; padding: 8px;
}
.ig-nav-toggle span {
    display: block; width: 26px; height: 2px;
    background: var(--color-text); margin: 5px 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}
@media (max-width: 900px) {
    .ig-nav-toggle { display: inline-block; }
    .ig-nav {
        position: fixed; inset: var(--header-height) 0 0 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(0,0,0,0.95);
        padding: 32px var(--gutter);
        transform: translateY(-12px);
        opacity: 0; pointer-events: none;
        transition: transform var(--transition-med), opacity var(--transition-med);
    }
    .ig-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .ig-nav ul { flex-direction: column; gap: 20px; }
    .ig-nav .btn { margin-top: 24px; align-self: flex-start; }
}

/* ===== Hero =============================================== */
.hero {
    position: relative;
    min-height: 780px;
    display: flex; align-items: stretch;
    background: #222;
    overflow: hidden;
}
.hero__media {
    position: absolute; inset: 0;
    background: #2b2a28;
}
.hero__media img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.6) 100%);
}

.hero__inner {
    position: relative; z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
    padding-block: calc(var(--header-height) + 60px) 80px;
}

.hero__copy { max-width: none; align-self: start; }

.hero__title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
    letter-spacing: -0.015em;
    line-height: 1.02;
    color: var(--color-gold);
    margin: 0;
}
.hero__title span { display: block; }

.hero__tagline {
    margin-top: 20px;
    color: var(--color-text);
    font-weight: 400;
    letter-spacing: .005em;
    font-size: 1.05rem;
}

.hero__quote {
    position: relative;
    align-self: end;
    justify-self: center;
    max-width: 460px;
    padding-left: 42px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0;
    text-align: left;
}
.hero__quote p { margin: 0; color: rgba(255, 255, 255, 0.92); }
.hero__quote-mark {
    position: absolute;
    left: 0; top: 2px;
    width: 22px; height: 22px;
    fill: var(--color-gold);
    filter: drop-shadow(0 0 10px rgba(201, 169, 106, .55));
}
.hero__quote-dots {
    display: flex; gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
    margin-left: -42px;
    padding-left: 42px;
}
.hero__quote-dots span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}
.hero__quote-dots span:first-child { background: var(--color-gold); }

@media (max-width: 900px) {
    .hero__quote { justify-self: start; }
}

/* ===== Design Gallery strip ============================== */
.design-gallery-strip {
    background: #000;
    padding: 0;
}
.design-gallery-strip__label {
    text-align: center;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: .36em;
    font-size: 1rem;
    padding: 20px 0 18px;
    text-transform: uppercase;
}
.design-gallery-strip__swatches {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    height: 90px;
}
.design-gallery-strip__swatches span {
    display: block;
    background-size: cover;
    background-position: center;
    background-color: #333;
}
@media (max-width: 760px) {
    .design-gallery-strip__swatches { grid-template-columns: repeat(5, 1fr); height: 70px; }
    .design-gallery-strip__swatches span:nth-child(n+6) { display: none; }
}

/* ===== Elements of Nature intro =========================== */
.elements__head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 50px 60px;
    align-items: start;
    padding-top: 80px;
}
.elements__title h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    line-height: 1.1;
}
.elements__sub {
    color: var(--color-text);
    font-size: .95rem;
    margin: 0;
    font-weight: 400;
}
.elements__copy {
    position: relative;
    color: var(--color-text-muted);
    padding-left: 42px;
    font-size: .95rem;
    line-height: 1.65;
    align-self: center;
}
.elements__mark {
    position: absolute;
    left: 0; top: 2px;
    width: 22px; height: 22px;
    fill: var(--color-gold);
    filter: drop-shadow(0 0 8px rgba(201, 169, 106, .45));
}
.elements__copy p { margin: 0; }
@media (max-width: 880px) {
    .elements__head { grid-template-columns: 1fr; }
}

/* ===== Category card grid ================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.cat-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 32px;
    background: #1a1a1a;
    isolation: isolate;
}
.cat-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 600ms ease;
}
.cat-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.cat-card__label {
    position: absolute; bottom: 26px; left: 32px; z-index: 2;
    color: #ffffff;
    font-weight: 400; letter-spacing: .12em; font-size: 1.35rem;
    text-transform: uppercase;
    line-height: 1.08;
    max-width: 60%;
    font-family: var(--font-sans);
}
.cat-card:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .cat-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }

/* ===== Authority (design authority vibe) — LIGHT bg ======= */
.authority {
    background: #ffffff;
    color: #1a1308;
    padding-block: clamp(70px, 9vw, 110px);
}
.authority__head {
    text-align: center;
    margin-bottom: 36px;
}
.authority__title {
    font-family: var(--font-sans);
    color: var(--color-gold-2);
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.005em;
    margin: 0 0 6px;
    line-height: 1.2;
}
.authority__sub {
    color: var(--color-gold-2);
    font-size: .95rem;
    margin: 0;
}
.authority__image {
    aspect-ratio: 21/9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.authority__image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Why IG features list ============================== */
.why {
    background: var(--color-bg);
    padding-block: clamp(80px, 10vw, 140px);
}
.why__head {
    text-align: left;
    margin: 0 0 60px;
    max-width: 680px;
}
.why__head h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 700;
    color: var(--color-gold);
    display: inline-flex; align-items: center; gap: 14px;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    line-height: 1;
}
.why__head h2 .ig-mark {
    display: inline-grid; place-items: center;
    width: 60px; height: 60px;
    background: var(--color-gold);
    color: #1a1308;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 1rem; font-weight: 700; letter-spacing: .02em;
    border-radius: 2px;
}
.why__head p { color: var(--color-text); font-size: 1rem; margin: 0; line-height: 1.55; }

.why__list {
    list-style: none; padding: 0; margin: 0;
    position: relative;
    max-width: 1080px;
    margin-inline: auto;
}
.why__row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding: 44px 20px;
    border-top: 1px solid rgba(236, 227, 209, 0.18);
    align-items: start;
    position: relative;
}
.why__row:last-child { border-bottom: 1px solid rgba(236, 227, 209, 0.18); }
.why__row::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 9px; height: 9px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--color-gold);
    box-shadow: 0 0 0 6px var(--color-bg);
}
.why__row:last-child::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 9px; height: 9px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--color-gold);
    box-shadow: 0 0 0 6px var(--color-bg);
}
.why__name {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.4rem;
    letter-spacing: -0.005em;
    padding-top: 0;
}
.why__copy h4 {
    color: var(--color-text);
    font-size: .98rem;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: 0;
}
.why__copy p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.55;
    font-size: .92rem;
    max-width: 62ch;
    font-weight: 400;
}
@media (max-width: 720px) {
    .why__row { grid-template-columns: 1fr; gap: 10px; padding: 28px 12px; }
    .why__name { font-size: 1.1rem; }
}

/* ===== CTA banner ======================================== */
.cta {
    text-align: center;
    padding-block: clamp(60px, 8vw, 110px);
    background: var(--color-bg);
}
.cta h2 {
    font-family: var(--font-sans);
    color: var(--color-gold);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: -0.005em;
}
.cta p {
    color: var(--color-text-muted);
    margin: 0 0 26px;
    font-size: 1rem;
}

/* ===== Process / One-Stop ================================ */
.process {
    background: var(--color-bg);
    padding-block: clamp(60px, 8vw, 110px);
}
.process__head {
    margin-bottom: 40px;
    max-width: 900px;
    text-align: left;
}
.process__head h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 400;
    color: var(--color-text);
    margin: 0 0 8px;
    letter-spacing: -0.005em;
}
.process__head p {
    color: var(--color-text-muted); max-width: 68ch; margin: 0;
    font-size: .9rem;
}
.process__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.process__card {
    background: transparent;
    border: none;
    display: flex; flex-direction: column;
    gap: 14px;
}
.process__media {
    aspect-ratio: 4/3;
    background: #151515;
    overflow: hidden;
}
.process__media img { width: 100%; height: 100%; object-fit: cover; }
.process__body { padding: 0; text-align: center; }
.process__body h3 {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--color-text);
}
.process__body p { color: var(--color-text-muted); margin: 0; font-size: .85rem; line-height: 1.55; }

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

/* ===== Values Banner (home-2) ============================ */
.values-banner {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    background: #1c1510;
    display: flex; align-items: center;
}
.values-banner__bg {
    position: absolute; inset: 0;
}
.values-banner__bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.85;
}
.values-banner__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,7,4,0.65) 0%, rgba(10,7,4,0.25) 55%, rgba(10,7,4,0.3) 100%);
}
.values-banner__inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px; align-items: center;
    padding-block: 100px;
}
.values-banner__copy { padding-right: 20px; }
.values-banner__copy h2 {
    font-family: var(--font-sans);
    color: var(--color-gold-strong);
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}
.values-banner__sub {
    color: var(--color-text);
    margin: 0;
    font-size: .95rem;
}
.values-banner__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin-inline: auto;
}
.values-banner__diamond {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 80px rgba(255, 240, 200, .6));
}
.values-banner__pillar {
    position: absolute;
    display: grid;
    gap: 2px;
    line-height: 1.15;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
}
.values-banner__pillar-title { color: var(--color-gold); font-weight: 500; }
.values-banner__pillar-sub   { color: var(--color-text); font-weight: 500; }
.values-banner__pillar--tr     { top: 15%;  right: 2%;   text-align: right; }
.values-banner__pillar--left   { top: 45%;  left: 2%;    text-align: right; }
.values-banner__pillar--right  { top: 45%;  right: 2%;   text-align: left; }
.values-banner__pillar--bottom { bottom: 14%; left: 50%; transform: translateX(-50%); text-align: center; }

@media (max-width: 900px) {
    .values-banner__inner { grid-template-columns: 1fr; gap: 30px; padding-block: 70px; }
    .values-banner__pillar { font-size: .9rem; }
}

/* ===== Contact section =================================== */
.contact-section {
    background: var(--color-bg);
    padding-block: clamp(70px, 9vw, 130px);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}
.contact-grid__image {
    overflow: hidden;
    background: #1c1812;
    aspect-ratio: 3/4;
}
.contact-grid__image img { width: 100%; height: 100%; object-fit: cover; }
.contact-grid__panel {
    padding: 0 10px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.contact-form__head {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 16px;
}
.contact-form__head .ig-logo__mark {
    width: 54px; height: 54px;
    background: var(--color-gold);
    color: #1a1308;
    border: none;
    font-size: 1.1rem; font-weight: 700;
    border-radius: 4px;
}
.contact-form__head h2 {
    font-family: var(--font-sans);
    color: var(--color-gold);
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin: 0;
}
.contact-form__lead {
    color: var(--color-text);
    font-size: .95rem;
    margin: 0 0 24px;
}

.contact-form { display: grid; gap: 12px; max-width: 640px; }
.field input, .field textarea {
    width: 100%;
    background: #ffffff;
    border: none;
    border-radius: 2px;
    color: #1a1308;
    padding: 16px 20px;
    font: inherit;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    transition: box-shadow var(--transition-fast);
}
.field input::placeholder, .field textarea::placeholder { color: #bdb5a7; }
.field input:focus, .field textarea:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--color-gold);
}
.field__error {
    color: #e8a4a4;
    font-size: .8rem;
    display: block;
    margin-top: 4px;
}

.form-status {
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: .9rem;
}
.form-status--ok    { background: rgba(120,180,140,.15); color: #b9e1c4; border: 1px solid rgba(120,180,140,.3); }
.form-status--error { background: rgba(220,120,120,.15); color: #f0c0c0; border: 1px solid rgba(220,120,120,.3); }

.contact-form__foot {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    max-width: 640px;
}
.contact-form__social {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 16px;
}
.contact-form__social a {
    display: inline-grid; place-items: center;
    width: 36px; height: 36px;
    color: var(--color-gold);
    transition: opacity var(--transition-fast);
}
.contact-form__social a:hover { opacity: .75; }
.contact-form__social svg { width: 24px; height: 24px; fill: currentColor; }
.contact-form__address {
    font-style: normal;
    font-size: .82rem;
    color: var(--color-gold);
    line-height: 1.55;
}

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-grid__image { aspect-ratio: 4/3; }
    .contact-form__foot { grid-template-columns: 1fr; }
}

/* ===== Footer ============================================ */
.ig-footer {
    background: #000;
    border-top: 1px solid var(--color-line);
    padding-top: 50px;
}
.ig-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 36px;
    align-items: start;
    padding-bottom: 40px;
}
.ig-footer__brand { display: flex; align-items: center; gap: 12px; }
.ig-footer__links {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 10px;
    font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
}
.ig-footer__address {
    font-style: normal;
    font-size: .88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}
.ig-social {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 14px;
}
.ig-social a {
    width: 38px; height: 38px;
    display: inline-grid; place-items: center;
    border: 1px solid rgba(236,227,209,0.25);
    border-radius: 50%;
    color: var(--color-text);
    transition: border-color var(--transition-fast), color var(--transition-fast);
}
.ig-social a:hover { border-color: var(--color-gold); color: var(--color-gold); }
.ig-social svg { width: 16px; height: 16px; fill: currentColor; }

.ig-footer__legal {
    border-top: 1px solid var(--color-line);
    padding-block: 22px;
    color: var(--color-text-soft);
    font-size: .78rem;
    text-align: center;
}
@media (max-width: 880px) { .ig-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ig-footer__inner { grid-template-columns: 1fr; } }

/* ===== Collection page =================================== */
.col-hero {
    position: relative;
    min-height: 460px;
    background: #1c1510;
    overflow: hidden;
    padding-block: 120px 100px;
    display: flex; align-items: center;
}
.col-hero__bg { position: absolute; inset: 0; }
.col-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.col-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,7,4,0.7) 0%, rgba(10,7,4,0.3) 55%, rgba(10,7,4,0.5) 100%);
}
.col-hero__inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.col-hero h1 {
    font-family: var(--font-sans);
    color: var(--color-gold);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}
.col-hero__sub { color: var(--color-text); font-weight: 400; margin: 0; font-size: .95rem; }
.col-hero__copy p { color: var(--color-text); font-size: .92rem; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .col-hero__inner { grid-template-columns: 1fr; gap: 20px; } }

.col-section {
    padding-block: clamp(60px, 8vw, 120px);
    background: var(--color-bg);
}
.col-section__head {
    text-align: center; margin-bottom: 60px;
}
.col-section__head h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0;
    margin: 0;
}

.col-list {
    display: grid; gap: 100px;
    max-width: 1100px;
    margin-inline: auto;
}
.col-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.col-row--reverse .col-row__media { order: 2; }
.col-row__media {
    aspect-ratio: 3 / 4;
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
}
.col-row__media img { width: 100%; height: 100%; object-fit: cover; }
.col-row__body h3 {
    font-family: var(--font-sans);
    color: var(--color-gold);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    letter-spacing: .03em;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.col-row__body p {
    color: var(--color-text);
    margin: 0 0 20px;
    font-size: .92rem;
    line-height: 1.65;
    max-width: 46ch;
}
@media (max-width: 880px) {
    .col-row, .col-row--reverse { grid-template-columns: 1fr; gap: 20px; }
    .col-row--reverse .col-row__media { order: 0; }
}

/* ===== Why IG Walls (image-bg floating pillars) ========== */
.why-walls {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background: #2a241c;
    display: flex; align-items: center;
}
.why-walls__bg { position: absolute; inset: 0; }
.why-walls__bg img { width: 100%; height: 100%; object-fit: cover; }
.why-walls__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.2));
}
.why-walls__inner {
    position: relative; z-index: 2;
    width: 100%;
    padding-block: 100px;
}
.why-walls__head { text-align: left; margin: 0 0 80px; max-width: 680px; }
.why-walls__head h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-gold);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    display: inline-flex; align-items: center; gap: 14px;
    line-height: 1;
}
.why-walls__head h2 .ig-mark {
    display: inline-grid; place-items: center;
    width: 52px; height: 52px;
    background: var(--color-gold);
    color: #1a1308;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: .95rem; font-weight: 700; letter-spacing: .02em;
    border-radius: 2px;
}
.why-walls__head p { color: var(--color-text); font-size: 1rem; margin: 0; }

.why-walls__pillars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.pillar {
    text-align: center;
    padding: 0;
    display: grid; gap: 10px;
    justify-items: center;
}
.pillar__icon {
    width: 38px; height: 38px;
    color: #ffffff;
}
.pillar__icon svg { width: 100%; height: 100%; fill: currentColor; }
.pillar h4 {
    color: #ffffff;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
    text-transform: none;
    line-height: 1.15;
}
.pillar p { display: none; }
@media (max-width: 900px) {
    .why-walls__pillars { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
}
@media (max-width: 520px) { .why-walls__pillars { grid-template-columns: repeat(2, 1fr); } }

/* ===== Explore page ====================================== */
.explore-hero {
    padding-block: calc(var(--header-height) + 40px) clamp(60px, 8vw, 110px);
    background: var(--color-bg);
}
.explore-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    max-width: 1100px;
    margin-inline: auto;
}
.explore-hero__media {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-bg-3);
}
.explore-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.explore-hero__body h1 {
    font-family: var(--font-sans);
    color: var(--color-gold);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.explore-hero__body p { color: var(--color-text); max-width: 48ch; margin: 0 0 20px; font-size: .95rem; line-height: 1.6; }
@media (max-width: 880px) { .explore-hero__inner { grid-template-columns: 1fr; } }

.swatches {
    background: var(--color-bg);
    padding-block: clamp(40px, 6vw, 80px);
}
.swatches__title {
    text-align: center;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 36px;
    font-size: 1rem;
    letter-spacing: .1em;
    font-style: italic;
    font-family: var(--font-display);
}
.swatches__grid {
    display: grid; gap: 14px;
    max-width: 1000px;
    margin-inline: auto;
}
.swatches__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    overflow: hidden;
}
.swatch {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #555, #aaa);
    background-size: cover; background-position: center;
    position: relative;
}
.swatch__label {
    position: absolute; bottom: 6px; right: 8px;
    color: rgba(255,255,255,.9);
    font-size: .62rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(0,0,0,.5);
    padding: 3px 6px;
}

.references {
    background: var(--color-bg);
    padding-block: clamp(40px, 6vw, 80px);
}
.references__title {
    text-align: center;
    color: var(--color-text);
    font-weight: 500;
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 20px;
    font-size: 1rem;
}
.references__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 1000px;
    margin-inline: auto;
}
.references__grid img {
    aspect-ratio: 4/3; width: 100%; object-fit: cover;
}

.where-life {
    background: var(--color-cream);
    color: #1a1308;
    padding-block: clamp(70px, 9vw, 120px);
}
.where-life h2 {
    font-family: var(--font-sans);
    color: var(--color-gold-2);
    text-align: center;
    margin-bottom: 48px;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
}
.where-life .cat-card { background: #222; }
.where-life .cat-card__label { color: #fff; }

/* ===== Gallery + Lightbox ================================ */
.gallery-grid { gap: 14px; }
.gallery-tile {
    appearance: none;
    background: #1a1a1a;
    border: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 4/5;
    position: relative;
    isolation: isolate;
    transition: transform var(--transition-fast);
}
.gallery-tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 600ms ease, filter var(--transition-fast);
    display: block;
}
.gallery-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    padding: clamp(48px, 6vw, 80px);
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox__stage {
    position: relative;
    margin: 0;
    max-width: min(1400px, 92vw);
    max-height: 88vh;
    display: flex; flex-direction: column;
    gap: 14px;
    align-items: center;
}
.lightbox__image {
    max-width: 100%;
    max-height: 80vh;
    width: auto; height: auto;
    object-fit: contain;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
    background: #111;
    transition: opacity 200ms ease;
}
.lightbox__image.is-loading { opacity: 0; }
.lightbox__caption {
    color: var(--color-text-muted);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: inline-grid; place-items: center;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    z-index: 5;
}
.lightbox__close svg,
.lightbox__nav svg {
    width: 22px; height: 22px;
    fill: currentColor;
}
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--color-gold);
    color: #1a1308;
    border-color: var(--color-gold);
    transform: scale(1.05);
}
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.lightbox__close {
    top: clamp(20px, 3vw, 32px);
    right: clamp(20px, 3vw, 32px);
}
.lightbox__nav--prev {
    top: 50%; left: clamp(16px, 3vw, 36px);
    transform: translateY(-50%);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next {
    top: 50%; right: clamp(16px, 3vw, 36px);
    transform: translateY(-50%);
}
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox__counter {
    position: absolute;
    bottom: clamp(20px, 3vw, 36px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-muted);
    font-size: .82rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .lightbox { padding: 60px 12px; }
    .lightbox__close,
    .lightbox__nav { width: 44px; height: 44px; }
    .lightbox__nav--prev { left: 6px; }
    .lightbox__nav--next { right: 6px; }
}

/* =========================================================
   Responsive overrides — consolidated tablet + mobile rules
   ========================================================= */

/* ----- Large tablet / iPad landscape (≤1200px) ----------- */
@media (max-width: 1200px) {
    :root { --container-max: 1100px; }
    .hero__inner { padding-block: calc(var(--header-height) + 40px) 70px; }
    .col-list { gap: 80px; }
}

/* ----- iPad / medium tablet (≤1024px) -------------------- */
@media (max-width: 1024px) {
    :root { --gutter: clamp(20px, 3.2vw, 40px); }

    .hero { min-height: 640px; }
    .hero__title { font-size: clamp(2rem, 4.2vw, 3.2rem); }
    .hero__inner { gap: 40px; }

    .elements__head { gap: 32px 40px; padding-top: 60px; }
    .cat-grid { gap: 18px; }
    .cat-card__label { font-size: 1.2rem; bottom: 22px; left: 24px; }

    .why__row { grid-template-columns: 200px 1fr; gap: 40px; padding: 36px 16px; }
    .why__name { font-size: 1.2rem; }

    .process__grid { gap: 18px; }

    .values-banner { min-height: 560px; }
    .values-banner__inner { gap: 40px; padding-block: 80px; }
    .values-banner__stage { max-width: 440px; }
    .values-banner__copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); }

    .col-list { gap: 60px; }
    .col-row { gap: 40px; }
    .col-row__body h3 { font-size: clamp(1.6rem, 2.4vw, 2rem); }

    .why-walls { min-height: 560px; }
    .why-walls__head { margin-bottom: 50px; }
    .why-walls__pillars { gap: 14px; max-width: 980px; }
    .pillar__icon { width: 34px; height: 34px; }
    .pillar h4 { font-size: .95rem; }

    .explore-hero__inner { gap: 36px; }

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

    .contact-grid { gap: 32px; }
}

/* ----- iPad portrait / small tablet (≤820px) ------------ */
@media (max-width: 820px) {
    :root { --header-height: 72px; }

    h1, .hero__title { letter-spacing: -0.01em; }

    /* Header — mobile nav toggle already kicks in at 900px */
    .ig-logo__mark { width: 40px; height: 40px; font-size: .88rem; }
    .ig-logo__text { font-size: .68rem; letter-spacing: .18em; }

    .hero { min-height: 560px; }
    .hero__inner {
        grid-template-rows: auto auto;
        padding-block: calc(var(--header-height) + 40px) 40px;
        gap: 32px;
    }
    .hero__title { font-size: clamp(1.9rem, 5.5vw, 2.8rem); line-height: 1.05; }
    .hero__tagline { font-size: .95rem; }
    .hero__quote {
        max-width: 100%;
        padding-left: 36px;
        font-size: .92rem;
        justify-self: start;
    }
    .hero__quote-dots { margin-left: -36px; padding-left: 36px; }

    .design-gallery-strip__label { font-size: .88rem; letter-spacing: .3em; padding: 16px 0 14px; }
    .design-gallery-strip__swatches { grid-template-columns: repeat(6, 1fr); height: 72px; }
    .design-gallery-strip__swatches span:nth-child(n+7) { display: none; }

    .elements__head { grid-template-columns: 1fr; gap: 18px; padding-top: 50px; }
    .elements__title h2 { font-size: clamp(1.6rem, 4.8vw, 2rem); }
    .elements__copy { padding-left: 36px; font-size: .9rem; }

    .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .cat-card { border-radius: 24px; aspect-ratio: 4/3; }
    .cat-card__label { font-size: 1.05rem; bottom: 18px; left: 20px; letter-spacing: .08em; }

    .authority { padding-block: 60px; }
    .authority__title { font-size: clamp(1.3rem, 3vw, 1.6rem); }
    .authority__image { aspect-ratio: 16/9; }

    .why { padding-block: 70px; }
    .why__head { margin-bottom: 40px; }
    .why__head h2 { font-size: clamp(1.8rem, 4.2vw, 2.4rem); gap: 12px; }
    .why__head h2 .ig-mark { width: 48px; height: 48px; font-size: .85rem; }
    .why__head p { font-size: .9rem; }
    .why__list { max-width: 100%; }
    .why__row { grid-template-columns: 1fr; gap: 8px; padding: 28px 8px; }
    .why__row::before,
    .why__row:last-child::after { display: none; }
    .why__name { font-size: 1.1rem; }

    .cta h2 { font-size: clamp(1.7rem, 4.6vw, 2.2rem); }
    .cta p { font-size: .9rem; }

    .process { padding-block: 60px; }
    .process__head { margin-bottom: 28px; }
    .process__head h2 { font-size: clamp(1.4rem, 3.2vw, 1.8rem); }
    .process__head p { font-size: .85rem; }
    .process__grid { grid-template-columns: 1fr; gap: 24px; }
    .process__body h3 { font-size: 1.2rem; }

    .values-banner { min-height: auto; }
    .values-banner__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-block: 60px;
    }
    .values-banner__copy h2 { font-size: clamp(1.6rem, 4vw, 2.1rem); }
    .values-banner__stage {
        max-width: min(380px, 80vw);
    }
    .values-banner__pillar { font-size: .85rem; }

    .col-hero { min-height: 360px; padding-block: 90px 70px; }
    .col-hero__inner { grid-template-columns: 1fr; gap: 14px; }
    .col-hero h1 { font-size: clamp(1.9rem, 5vw, 2.6rem); }

    .col-section { padding-block: 60px; }
    .col-section__head { margin-bottom: 36px; }
    .col-list { gap: 48px; }
    .col-row, .col-row--reverse {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .col-row--reverse .col-row__media { order: 0; }
    .col-row__media { max-width: 460px; margin-inline: auto; width: 100%; }
    .col-row__body { text-align: center; }
    .col-row__body p { margin-inline: auto; }
    .col-row__body h3 { font-size: clamp(1.5rem, 4.2vw, 1.9rem); }

    .why-walls__inner { padding-block: 60px; }
    .why-walls__head { margin-bottom: 40px; text-align: center; }
    .why-walls__head h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); justify-content: center; }
    .why-walls__pillars { grid-template-columns: repeat(3, 1fr); gap: 28px 14px; }
    .pillar h4 { font-size: .9rem; }

    .explore-hero { padding-block: 100px 50px; }
    .explore-hero__inner { grid-template-columns: 1fr; gap: 24px; }
    .explore-hero__media {
        max-width: 460px;
        margin-inline: auto;
    }

    .swatches { padding-block: 40px; }
    .swatches__grid { gap: 10px; }
    .swatches__row { grid-template-columns: repeat(3, 1fr); gap: 4px; }
    .swatches__row .swatch:nth-child(n+4) { display: none; }

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

    .where-life { padding-block: 60px; }
    .where-life h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 30px; }

    .contact-section { padding-block: 60px; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-grid__image { aspect-ratio: 4/3; }
    .contact-grid__panel { padding: 0; }
    .contact-form__head h2 { font-size: clamp(1.2rem, 3.4vw, 1.6rem); }
    .contact-form__foot { grid-template-columns: 1fr; gap: 18px; }

    .ig-footer { padding-top: 40px; }
    .ig-footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 28px; }
}

/* ----- Phone (≤560px) ----------------------------------- */
@media (max-width: 560px) {
    :root { --gutter: 18px; --header-height: 64px; }

    .btn { padding: 12px 22px; font-size: .78rem; letter-spacing: .14em; }
    .btn--gold { padding: 12px 22px; }

    .ig-header__inner { min-height: var(--header-height); }
    .ig-nav .btn { margin-top: 20px; }

    .hero { min-height: 520px; }
    .hero__inner {
        grid-template-columns: 1fr;
        padding-block: calc(var(--header-height) + 30px) 30px;
        gap: 28px;
    }
    .hero__title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
    .hero__tagline { font-size: .88rem; }
    .hero__actions { gap: 10px; margin-top: 20px; }
    .hero__quote { font-size: .85rem; padding-left: 32px; }
    .hero__quote-mark { width: 18px; height: 18px; }
    .hero__quote-dots { margin-left: -32px; padding-left: 32px; margin-top: 14px; }

    .design-gallery-strip__swatches { grid-template-columns: repeat(4, 1fr); height: 56px; }
    .design-gallery-strip__swatches span:nth-child(n+5) { display: none; }
    .design-gallery-strip__label { font-size: .78rem; padding: 12px 0 10px; letter-spacing: .24em; }

    .section { padding-block: 50px; }
    .section--tight { padding-block: 0 50px; }

    .elements__head { padding-top: 30px; }
    .elements__title h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .elements__copy { padding-left: 30px; font-size: .85rem; }

    .cat-grid { grid-template-columns: 1fr; gap: 14px; }
    .cat-card { aspect-ratio: 16/10; border-radius: 20px; }
    .cat-card__label { font-size: 1rem; bottom: 16px; left: 18px; }

    .authority { padding-block: 44px; }

    .why { padding-block: 50px; }
    .why__row { padding: 24px 4px; }
    .why__name { font-size: 1rem; }
    .why__copy h4 { font-size: .9rem; }
    .why__copy p { font-size: .86rem; line-height: 1.55; }

    .cta { padding-block: 44px; }
    .cta h2 { font-size: 1.5rem; }

    .process { padding-block: 44px; }
    .process__card { gap: 10px; }

    .values-banner__inner { padding-block: 50px; }
    .values-banner__copy h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .values-banner__stage { max-width: 300px; }
    .values-banner__pillar { font-size: .75rem; letter-spacing: .14em; }

    .col-hero { min-height: 300px; padding-block: 80px 50px; }
    .col-hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.1rem); }

    .col-section { padding-block: 44px; }
    .col-list { gap: 36px; }
    .col-row__body h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .col-row__body p { font-size: .88rem; }

    .why-walls__inner { padding-block: 44px; }
    .why-walls__head h2 .ig-mark { width: 42px; height: 42px; font-size: .8rem; }
    .why-walls__pillars { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
    .pillar__icon { width: 30px; height: 30px; }

    .explore-hero { padding-block: 90px 40px; }
    .explore-hero__body h1 { font-size: 1.6rem; letter-spacing: .02em; }
    .explore-hero__body p { font-size: .88rem; }

    .swatches__row { grid-template-columns: repeat(2, 1fr); }
    .swatches__row .swatch:nth-child(n+3) { display: none; }
    .swatch__label { font-size: .58rem; padding: 2px 5px; }

    .references__grid { grid-template-columns: 1fr 1fr; }

    .where-life { padding-block: 44px; }

    .contact-section { padding-block: 44px; }
    .contact-form__head { flex-direction: column; gap: 10px; align-items: flex-start; }
    .contact-form__head .ig-logo__mark { width: 44px; height: 44px; font-size: .95rem; }
    .contact-form__head h2 { font-size: 1.25rem; }
    .contact-form__lead { font-size: .85rem; margin-bottom: 16px; }
    .field input, .field textarea { padding: 12px 14px; font-size: .9rem; }

    .ig-footer__inner { grid-template-columns: 1fr; gap: 22px; }

    /* Lightbox mobile tweaks */
    .lightbox { padding: 56px 8px; }
    .lightbox__close { top: 14px; right: 14px; }
    .lightbox__counter { bottom: 14px; font-size: .7rem; }
    .lightbox__caption { font-size: .72rem; }
}

/* ----- Very small phone (≤380px) ------------------------ */
@media (max-width: 380px) {
    :root { --gutter: 14px; }
    .hero__title { font-size: 1.6rem; }
    .values-banner__stage { max-width: 260px; }
    .cat-card__label { font-size: .9rem; }
    .why-walls__pillars { grid-template-columns: 1fr; }
}

/* ----- Touch target guarantees -------------------------- */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 44px; }
    .ig-social a, .contact-form__social a { min-width: 44px; min-height: 44px; }
    .gallery-tile { cursor: pointer; }
    .lightbox__close,
    .lightbox__nav { min-width: 44px; min-height: 44px; }
}

/* ===== Utility =========================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
