/*
Theme Name: Colourhill Interiors
Theme URI: https://colourhill.co.uk
Author: Colourhill Interiors
Author URI: https://colourhill.co.uk
Description: Custom theme for Colourhill Interiors — bespoke kitchens and bedrooms designed, manufactured and fitted in Nottinghamshire. Converted from the static design build.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: Unlicensed — Proprietary
Text Domain: colourhill
*/

/* =========================================
   RESET & CUSTOM PROPERTIES
========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream:         #F7F3EE;
    --warm-white:    #FDFAF7;
    --charcoal:      #1C1C1C;
    --charcoal-mid:  #2A2A2A;
    --copper:        #B8734A;
    --copper-light:  #CA8E65;
    --teal:          #3A9B8E;
    --teal-dark:     #2E7D72;
    --grey:          #6B6B6B;
    --grey-light:    #9B9B9B;
    --border:        #DDD8D2;
    --border-dark:   #C8C2BB;

    --serif:  'Cormorant Garamond', Georgia, serif;
    --sans:   'Jost', system-ui, -apple-system, sans-serif;

    --max-w: 1380px;
    --pad-x: 48px;
    --sec-y: 120px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { transition: color 0.3s ease; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* =========================================
   TYPOGRAPHY HELPERS
========================================= */
.eyebrow {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    display: block;
    height: 1px;
    background: currentColor;
    width: 26px;
    flex-shrink: 0;
}

.eyebrow--left::after  { display: none; }
.eyebrow--light { color: var(--copper-light); }

.section-heading {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(34px, 3.8vw, 52px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

.section-heading em {
    font-style: italic;
    color: var(--copper);
}

.body-lead {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.85;
    color: var(--grey);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 42px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.btn-copper {
    background: var(--copper);
    border-color: var(--copper);
    color: #fff;
}
.btn-copper:hover {
    background: var(--copper-light);
    border-color: var(--copper-light);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.btn-outline-white:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: #fff;
}

.btn-outline-dark {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.btn-outline-dark:hover {
    background: var(--copper);
    border-color: var(--copper);
}

.btn-outline-charcoal {
    background: transparent;
    border-color: var(--border-dark);
    color: var(--charcoal);
}
.btn-outline-charcoal:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: #fff;
}

.text-link {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--charcoal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
}
.text-link::after { content: '→'; font-size: 15px; letter-spacing: 0; }
.text-link:hover { color: var(--copper); }
.text-link--light { color: rgba(255,255,255,0.7); }
.text-link--light:hover { color: var(--copper-light); }

/* =========================================
   REVEAL ANIMATION
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =========================================
   NAVIGATION
========================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 0 var(--pad-x);
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.nav--transparent {
    background: transparent;
}

.nav--solid {
    height: 68px;
    background: rgba(253,250,247,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav__logo img {
    height: 40px;
    width: auto;
    transition: filter 0.4s ease;
}

.nav--transparent .nav__logo img {
    filter: brightness(0) invert(1);
}

.nav__links {
    list-style: none;
    display: flex;
    gap: 44px;
    align-items: center;
}

.nav__links li { list-style: none; }

.nav__links a {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 12.5px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

.nav--solid .nav__links a {
    color: var(--charcoal);
}

.nav__links a:hover { color: var(--copper-light) !important; }
.nav__links a.active,
.nav__links .current-menu-item > a,
.nav__links .current_page_item > a { color: var(--copper-light) !important; }
.nav--solid .nav__links a.active,
.nav--solid .nav__links .current-menu-item > a,
.nav--solid .nav__links .current_page_item > a { color: var(--copper) !important; }

.nav__cta {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    transition: all 0.3s ease;
}

.nav--solid .nav__cta {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.nav__cta:hover {
    background: var(--copper) !important;
    border-color: var(--copper) !important;
    color: #fff !important;
}

/* =========================================
   HERO (homepage, full height)
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero__vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%),
        linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 40%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--pad-x);
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: 100px;
}

.hero__inner {
    max-width: 700px;
}

.hero__eyebrow {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--copper-light);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--copper-light);
}

.hero__heading {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(50px, 6.5vw, 88px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 28px;
}

.hero__heading em {
    font-style: italic;
    color: var(--copper-light);
}

.hero__sub {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.78;
    color: rgba(255,255,255,0.68);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin-bottom: 44px;
}

.hero__trust span {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero__trust span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--copper-light);
    flex-shrink: 0;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero__scroll-label {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.hero__scroll-bar {
    width: 1px;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.hero__scroll-bar::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.4);
    animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%   { top: -100%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* =========================================
   SUBHERO — inner-page header (shorter than homepage hero)
========================================= */
.subhero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 82px;
}

.subhero__bg {
    position: absolute;
    inset: 0;
    background: #111 center/cover no-repeat;
}

.subhero__vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 62%, rgba(0,0,0,0.15) 100%);
}

.subhero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x) 70px;
}

.subhero__eyebrow {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--copper-light);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.subhero__eyebrow::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--copper-light);
}

.subhero__heading {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    max-width: 780px;
}
.subhero__heading em { font-style: italic; color: var(--copper-light); }

.subhero__sub {
    margin-top: 22px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
}

/* =========================================
   MANIFESTO / POSITIONING STRIP
========================================= */
.manifesto {
    padding: 108px 0;
    background: var(--warm-white);
}

.manifesto__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto__eyebrow {
    justify-content: center;
    margin-bottom: 40px;
}

.manifesto__text {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.5;
    letter-spacing: -0.005em;
    color: var(--charcoal);
}

.manifesto__text em {
    font-style: italic;
    color: var(--copper);
}

.manifesto__footnote {
    margin-top: 44px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--grey);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   THREE OPTIONS (trust-gap recognition block)
========================================= */
.options {
    padding: var(--sec-y) 0;
    background: var(--cream);
}

.options__header {
    max-width: 720px;
    margin-bottom: 64px;
}
.options__header .eyebrow { margin-bottom: 22px; }

.options__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.option-card {
    background: var(--warm-white);
    padding: 44px 38px;
    position: relative;
}

.option-card--win {
    background: var(--charcoal);
}

.option-card__tag {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 20px;
}
.option-card--win .option-card__tag { color: var(--copper-light); }

.option-card__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 25px;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}
.option-card--win .option-card__title { color: #fff; }

.option-card__body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--grey);
}
.option-card--win .option-card__body { color: rgba(255,255,255,0.6); }

.option-card__quote {
    margin-top: 18px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey);
    padding-left: 14px;
    border-left: 2px solid var(--border-dark);
}
.option-card--win .option-card__quote {
    color: rgba(255,255,255,0.75);
    border-left-color: var(--copper);
}

.options__resolve {
    margin-top: 48px;
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(20px, 2.4vw, 27px);
    line-height: 1.5;
    color: var(--charcoal);
    max-width: 780px;
}
.options__resolve strong { font-style: normal; color: var(--copper); font-weight: 500; }

/* =========================================
   COLLECTIONS
========================================= */
.collections {
    padding: var(--sec-y) 0;
    background: var(--cream);
}

.collections__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 24px;
}

.collections__header-left { max-width: 540px; }
.collections__header-left .eyebrow { margin-bottom: 18px; }

.collections__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 20px;
}

.kitchen-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.kitchen-card__img {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

.kitchen-card--featured .kitchen-card__img {
    aspect-ratio: 7/10;
}

.kitchen-card__scene {
    position: absolute;
    inset: 0;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #1a1a1a center/cover no-repeat;
}

.kitchen-card:hover .kitchen-card__scene {
    transform: scale(1.05);
}

.kitchen-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.05) 100%
    );
}

.kitchen-card__info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 36px 32px 32px;
    z-index: 2;
}

.kitchen-card__label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 10px;
}

.kitchen-card__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 8px;
}

.kitchen-card--featured .kitchen-card__name { font-size: 32px; }

.kitchen-card__desc {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 280px;
}

.kitchen-card__arrow {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s ease, gap 0.3s ease;
}
.kitchen-card__arrow::after {
    content: '→';
    font-size: 14px;
    letter-spacing: 0;
}
.kitchen-card:hover .kitchen-card__arrow { color: var(--copper-light); gap: 14px; }

/* =========================================
   FULCRUM — named designer ownership section
========================================= */
.fulcrum {
    background: var(--charcoal);
    padding: var(--sec-y) 0;
}

.fulcrum__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fulcrum__left .eyebrow { margin-bottom: 22px; }
.fulcrum__left .section-heading { color: #fff; }

.fulcrum__body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.9;
    color: rgba(255,255,255,0.55);
    margin-top: 26px;
    margin-bottom: 40px;
}
.fulcrum__body p + p { margin-top: 16px; }

.quote-stack {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.quote-stack__item {
    background: var(--charcoal);
    padding: 32px 34px;
    transition: background 0.3s ease;
}
.quote-stack__item:hover { background: #222; }

.quote-stack__text {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}

.quote-stack__name {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper-light);
}

/* =========================================
   DISTINCTION — DARK PILLARS SECTION
========================================= */
.distinction {
    background: var(--charcoal);
    padding: var(--sec-y) 0;
}

.distinction__inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: start;
}

.distinction__left .eyebrow { margin-bottom: 22px; }

.distinction__left .section-heading { color: #fff; }

.distinction__intro {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.85;
    color: rgba(255,255,255,0.52);
    margin-top: 26px;
    margin-bottom: 48px;
}

.distinction__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
}

.pillar {
    padding: 38px 34px;
    background: var(--charcoal);
    transition: background 0.3s ease;
}

.pillar:hover { background: #222; }

.pillar__num {
    font-family: var(--serif);
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--copper);
    margin-bottom: 18px;
}

.pillar__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 21px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
}

.pillar__body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
}

/* =========================================
   MECHANISM — own-factory affordability section
========================================= */
.mechanism {
    padding: var(--sec-y) 0;
    background: var(--warm-white);
}

.mechanism__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mechanism__content .eyebrow { margin-bottom: 22px; }
.mechanism__content .section-heading { margin-bottom: 26px; }

.mech-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.mech-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.mech-row__num {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--copper);
}

.mech-row__title {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 14.5px;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.mech-row__body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.75;
    color: var(--grey);
}

.mechanism__visual {
    position: relative;
    height: 560px;
}

.mechanism__visual-bg {
    position: absolute;
    inset: 0;
    background: #1a1a1a center/cover no-repeat;
}

.mechanism__visual-tag {
    position: absolute;
    bottom: 40px;
    left: 40px;
    padding: 18px 26px;
    background: rgba(28,28,28,0.85);
    backdrop-filter: blur(8px);
    border-left: 2px solid var(--teal);
    max-width: 300px;
}
.mechanism__visual-tag-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 4px;
}
.mechanism__visual-tag-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* =========================================
   PROCESS
========================================= */
.process {
    padding: var(--sec-y) 0;
    background: var(--warm-white);
}

.process--cream { background: var(--cream); }

.process__header {
    text-align: center;
    margin-bottom: 80px;
}

.process__header .eyebrow {
    justify-content: center;
    margin-bottom: 22px;
}

.process__steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    position: relative;
}

.process__connector {
    position: absolute;
    top: 35px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.step {
    padding: 0 44px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step__circle {
    width: 70px;
    height: 70px;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--copper);
    background: var(--warm-white);
}

.step__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.step__body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.82;
    color: var(--grey);
}

/* Expanded process detail */
.process-detail {
    padding: var(--sec-y) 0;
    background: var(--warm-white);
}
.process-detail__row {
    display: grid;
    grid-template-columns: 0.6fr 1fr 1fr;
    gap: 60px;
    padding: 64px 0;
    border-top: 1px solid var(--border);
    align-items: start;
}
.process-detail__row:last-child { border-bottom: 1px solid var(--border); }
.process-detail__num {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 74px;
    line-height: 1;
    color: var(--copper);
}
.process-detail__label {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-top: 10px;
}
.process-detail__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 32px;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 18px;
}
.process-detail__body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.85;
    color: var(--grey);
}
.process-detail__list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.process-detail__list li {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 13.5px;
    color: var(--grey);
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}
.process-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 1px;
    background: var(--copper);
}

/* =========================================
   CRAFT / STORY — SPLIT
========================================= */
.craft {
    padding: var(--sec-y) 0;
    background: var(--cream);
    overflow: hidden;
}

.craft__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
}

.craft__inner--reverse .craft__visual { order: 2; margin-left: 0; margin-right: calc(-1 * var(--pad-x)); }
.craft__inner--reverse .craft__content { padding: 80px 90px 80px 0; order: 1; }

.craft__visual {
    position: relative;
    height: 660px;
    margin-left: calc(-1 * var(--pad-x));
}

.craft__visual-bg {
    position: absolute;
    inset: 0;
    background: #1a1a1a center/cover no-repeat;
}

.craft__visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 50%,
        rgba(0,0,0,0.2) 100%
    );
}

.craft__visual-tag {
    position: absolute;
    bottom: 48px;
    right: 40px;
    padding: 18px 26px;
    background: rgba(28,28,28,0.85);
    backdrop-filter: blur(8px);
    border-left: 2px solid var(--copper);
}

.craft__visual-tag-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 4px;
}

.craft__visual-tag-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
}

.craft__content {
    padding: 80px 0 80px 90px;
}

.craft__content .eyebrow { margin-bottom: 22px; }
.craft__content .section-heading { margin-bottom: 28px; }

.craft__body p {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.88;
    color: var(--grey);
}

.craft__body p + p { margin-top: 18px; }

.craft__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 52px;
    padding-top: 52px;
    border-top: 1px solid var(--border);
}

.stat__figure {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 50px;
    line-height: 1;
    color: var(--copper);
    margin-bottom: 6px;
}

.stat__label {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey-light);
}

/* =========================================
   PERMANENCE / STAT BAR
========================================= */
.permanence {
    background: var(--charcoal-mid);
    padding: 64px 0;
}
.permanence__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.permanence__item { text-align: center; }
.permanence__figure {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 46px;
    color: var(--copper-light);
    line-height: 1;
    margin-bottom: 10px;
}
.permanence__label {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

/* =========================================
   TEAM / DESIGNERS
========================================= */
.team {
    padding: var(--sec-y) 0;
    background: var(--cream);
}
.team__header {
    max-width: 680px;
    margin-bottom: 60px;
}
.team__header .eyebrow { margin-bottom: 20px; }
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--warm-white);
    padding: 40px 30px;
    text-align: center;
    border-top: 2px solid var(--copper);
}
.team-card__avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--copper-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 24px;
    margin: 0 auto 22px;
}
.team-card__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 21px;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.team-card__role {
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.team-card__body {
    font-family: var(--sans);
    font-weight: 300;
    font-style: italic;
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--grey);
}
.team-card__body::before { content: '\201C'; }
.team-card__body::after { content: '\201D'; }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials {
    padding: var(--sec-y) 0;
    background: var(--warm-white);
}

.testimonials--cream { background: var(--cream); }

.testimonials__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 24px;
}

.testimonials__header .eyebrow { margin-bottom: 18px; }

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
}

.tcard {
    padding: 44px 38px;
    background: var(--cream);
    border-top: 2px solid var(--teal);
    position: relative;
}
.testimonials--cream .tcard { background: var(--warm-white); }

.tcard__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 24px;
}

.tcard__stars span {
    color: var(--copper);
    font-size: 13px;
}

.tcard__quote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: 19px;
    line-height: 1.58;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.tcard__quote::before {
    content: '\201C';
    font-size: 48px;
    line-height: 0;
    vertical-align: -18px;
    color: var(--teal);
    font-style: normal;
    margin-right: 2px;
    opacity: 0.4;
}

.tcard__name {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.tcard__location {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 12.5px;
    color: var(--teal);
    margin-top: 4px;
}

/* Doubt-first featured quote */
.doubt-quote {
    padding: var(--sec-y) 0;
    background: var(--cream);
}
.doubt-quote__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.doubt-quote__eyebrow { justify-content: center; margin-bottom: 34px; }
.doubt-quote__text {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(21px, 2.6vw, 30px);
    line-height: 1.6;
    color: var(--charcoal);
}
.doubt-quote__text strong { font-style: normal; color: var(--copper); font-weight: 500; }
.doubt-quote__name {
    margin-top: 32px;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
}

/* =========================================
   SHOWROOMS
========================================= */
.showrooms {
    padding: var(--sec-y) 0;
    background: var(--cream);
}

.showrooms__header { margin-bottom: 64px; }
.showrooms__header .eyebrow { margin-bottom: 20px; }

.showrooms__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.sroom {
    padding: 48px 32px;
    background: var(--cream);
    transition: background 0.3s ease;
    position: relative;
}

.sroom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sroom:hover::before { transform: scaleX(1); }
.sroom:hover { background: var(--warm-white); }

.sroom__city {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: 14px;
}

.sroom__detail {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.72;
    color: var(--grey);
    margin-bottom: 26px;
}

.sroom__link {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
}
.sroom__link::after { content: '→'; font-size: 14px; letter-spacing: 0; }
.sroom__link:hover { color: var(--copper); gap: 13px; }

/* Detailed showroom cards */
.sroom-detail {
    padding: var(--sec-y) 0;
    background: var(--warm-white);
}
.sroom-detail__list {
    display: flex;
    flex-direction: column;
}
.sroom-detail__item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 64px 0;
    border-top: 1px solid var(--border);
    align-items: center;
}
.sroom-detail__list .sroom-detail__item:last-child { border-bottom: 1px solid var(--border); }
.sroom-detail__visual {
    height: 320px;
    background: #1a1a1a center/cover no-repeat;
    position: relative;
}
.sroom-detail__item:nth-child(even) .sroom-detail__visual { order: 2; }
.sroom-detail__eyebrow { margin-bottom: 18px; }
.sroom-detail__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 40px;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.sroom-detail__addr {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 22px;
}
.sroom-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}
.sroom-detail__meta div {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--grey);
}
.sroom-detail__meta strong {
    display: block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 6px;
}
.sroom-detail__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================
   FAQ / PRE-CTA UNKNOWN REMOVAL
========================================= */
.faq {
    padding: var(--sec-y) 0;
    background: var(--cream);
}
.faq__inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}
.faq__header .eyebrow { margin-bottom: 22px; }
.faq__header .section-heading { margin-bottom: 22px; }
.faq__list { display: flex; flex-direction: column; }
.faq-item {
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.faq-item__q {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.faq-item__a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--grey);
}

/* =========================================
   PORTFOLIO GALLERY
========================================= */
.gallery {
    padding: var(--sec-y) 0;
    background: var(--charcoal);
}

.gallery__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.gallery__header .eyebrow { margin-bottom: 18px; }
.gallery__header .section-heading { color: #fff; }

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.gitem {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.gitem--tall { grid-row: span 2; }
.gitem--wide { grid-column: span 2; }

.gitem__img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gitem--tall .gitem__img { min-height: 100%; }

.gitem:hover .gitem__img { transform: scale(1.04); }

.gitem__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}

.gitem:hover .gitem__overlay {
    background: rgba(0,0,0,0.2);
}

.gitem__caption {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.gitem:hover .gitem__caption { opacity: 0.85; transform: none; }

/* Filter bar */
.gallery__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.gfilter {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 11px 22px;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: all 0.3s ease;
}
.gfilter:hover, .gfilter.active {
    border-color: var(--copper);
    color: #fff;
    background: rgba(184,115,74,0.15);
}

/* =========================================
   CONTACT / CONSULTATION PAGE
========================================= */
.contact-section {
    padding: var(--sec-y) 0;
    background: var(--warm-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
}
.contact-form__eyebrow { margin-bottom: 22px; }
.contact-form__intro {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.85;
    color: var(--grey);
    margin: 22px 0 40px;
    max-width: 520px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.form-grid .field-full { grid-column: 1 / -1; }
.field label {
    display: block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    color: var(--charcoal);
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--copper); }
.field textarea { resize: vertical; min-height: 120px; }
.contact-form__submit { margin-top: 32px; }
.contact-form__note {
    margin-top: 20px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--grey-light);
}

.contact-aside {
    background: var(--cream);
    padding: 44px 38px;
}
.contact-aside__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 24px;
    color: var(--charcoal);
    margin-bottom: 20px;
}
.contact-aside__row {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}
.contact-aside__row:last-of-type { border-bottom: 1px solid var(--border); }
.contact-aside__row strong {
    display: block;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 6px;
}
.contact-aside__row span, .contact-aside__row a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14.5px;
    color: var(--charcoal);
    text-decoration: none;
}
.contact-aside__row a:hover { color: var(--copper); }
.contact-aside__quote {
    margin-top: 24px;
    padding-top: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--grey);
}

/* =========================================
   FOOTER CTA BAND
========================================= */
.cta-band {
    padding: 130px var(--pad-x);
    background: var(--charcoal-mid);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--copper) 0%,
        var(--teal) 50%,
        var(--copper) 100%
    );
}

.cta-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(184,115,74,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.cta-band__eyebrow {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 28px;
}

.cta-band__heading {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 24px;
}

.cta-band__heading em {
    font-style: italic;
    color: var(--copper-light);
}

.cta-band__sub {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.48);
    max-width: 520px;
    margin: 0 auto 52px;
}

.cta-band__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-band__note {
    margin-top: 52px;
    font-family: var(--sans);
    font-weight: 300;
    font-size: 13.5px;
    color: rgba(255,255,255,0.3);
}

.cta-band__note a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}

.cta-band__note a:hover { color: var(--copper-light); }

/* =========================================
   FOOTER
========================================= */
.footer {
    background: var(--charcoal);
    padding: 88px 0 44px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 36px;
}

.footer__logo img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.65;
    margin-bottom: 22px;
}

.footer__strapline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.32);
}

.footer__col-title {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 24px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer__links a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover { color: rgba(255,255,255,0.75); }

/* Footer widget areas render standard WP widget markup — keep it visually identical to .footer__links */
.footer__widget-area ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer__widget-area a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 14px;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer__widget-area a:hover { color: rgba(255,255,255,0.75); }
.footer__widget-area .widget-title { display: none; } /* col-title already printed above the widget area */

.footer__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__copy {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
}

.footer__legal {
    display: flex;
    gap: 28px;
}

.footer__legal a {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* =========================================
   RESPONSIVE — TABLET & MOBILE
========================================= */
@media (max-width: 1100px) {
    :root { --pad-x: 32px; }

    .collections__grid { grid-template-columns: 1fr 1fr; }
    .kitchen-card--featured { grid-row: span 1; }

    .distinction__inner { grid-template-columns: 1fr; gap: 60px; }
    .fulcrum__inner { grid-template-columns: 1fr; gap: 50px; }
    .mechanism__inner { grid-template-columns: 1fr; gap: 50px; }
    .mechanism__visual { height: 380px; }

    .craft__inner, .craft__inner--reverse { grid-template-columns: 1fr; }
    .craft__inner--reverse .craft__visual { order: 1; margin-right: 0; margin-left: 0; }
    .craft__inner--reverse .craft__content { order: 2; padding: 60px 0; }
    .craft__visual { height: 440px; margin-left: 0; margin-right: 0; }
    .craft__content { padding: 60px 0; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
    .showrooms__grid { grid-template-columns: 1fr 1fr; }
    .options__grid { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: 1fr 1fr; }
    .permanence__grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .gitem--tall { grid-row: span 1; }
    .gitem--wide { grid-column: span 1; }

    .process-detail__row { grid-template-columns: 1fr; gap: 24px; }
    .process-detail__num { font-size: 50px; }

    .sroom-detail__item, .sroom-detail__item:nth-child(even) { grid-template-columns: 1fr; }
    .sroom-detail__visual, .sroom-detail__item:nth-child(even) .sroom-detail__visual { order: -1; height: 260px; }

    .faq__inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    :root {
        --pad-x: 24px;
        --sec-y: 80px;
    }

    .nav__links { display: none; }
    .nav__cta   { display: none; }

    .hero__heading { font-size: 44px; }
    .hero__sub { font-size: 15px; }
    .subhero__heading { font-size: 36px; }
    .subhero { min-height: 48vh; }

    .collections__grid { grid-template-columns: 1fr; }
    .kitchen-card--featured .kitchen-card__img { aspect-ratio: 3/4; }

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

    .process__steps { grid-template-columns: 1fr; gap: 52px; }
    .process__connector { display: none; }
    .step { padding: 0; }

    .testimonials__grid { grid-template-columns: 1fr; }
    .showrooms__grid    { grid-template-columns: 1fr; }
    .team__grid { grid-template-columns: 1fr; }
    .permanence__grid { grid-template-columns: 1fr 1fr; gap: 28px; }

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

    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__base { flex-direction: column; align-items: flex-start; }

    .collections__header { flex-direction: column; align-items: flex-start; }
    .testimonials__header { flex-direction: column; align-items: flex-start; }
    .gallery__header { flex-direction: column; align-items: flex-start; }

    .form-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 90px 24px; }
}
