/* ==========================================================================
   A One Curtains and Blinds — global stylesheet
   Palette: ink (logo black) + warm linen neutrals + brass accent
   ========================================================================== */

:root {
  --ink: #171614;
  --ink-2: #2a2825;
  --ink-soft: #55514b;
  --muted: #7a746b;
  --line: #e4ddd2;
  --linen: #f6f2eb;
  --tint: #faf8f4;
  --sand: #ebe3d6;
  --white: #fff;
  --accent: #b08545;
  --accent-deep: #8c6630;
  --accent-soft: #f3eadb;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -24px rgba(23, 22, 20, .28);
  --shadow-sm: 0 6px 20px -10px rgba(23, 22, 20, .2);
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font: 400 16px/1.7 var(--sans); color: var(--ink-soft); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.005em; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.2rem; }
.h-display { font-size: clamp(2rem, 3.6vw, 3rem); }
.h-sub { font-family: var(--sans); font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 500; line-height: 1.5; color: var(--accent-deep); letter-spacing: 0; }
.h-eyebrow { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; line-height: 1.4; }
.lead { font-size: 1.12rem; color: var(--ink-2); }
.link { color: var(--accent-deep); font-weight: 600; border-bottom: 1px solid currentColor; }
.link:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 6px; }
.skip-link:focus { left: 8px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tint { background: var(--tint); }
.section--linen { background: var(--linen); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, .72); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section-head { margin-bottom: clamp(32px, 4vw, 56px); max-width: 760px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head--row h2, .section-head--row .h-display { margin-bottom: 0; max-width: 720px; }
.prose p { margin-bottom: 1.2em; }
.prose h4 { margin-top: 1.6em; }
.prose--light p { color: rgba(255, 255, 255, .72); }

.icon { width: 18px; height: 18px; flex: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 26px; border-radius: 999px; font-size: .92rem; font-weight: 700; letter-spacing: .02em; line-height: 1.2; border: 1.5px solid transparent; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.btn .icon { transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--accent-deep); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent); color: #fff; }
.btn--line { border-color: var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--block { width: 100%; }
.round-btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); display: inline-grid; place-items: center; background: #fff; color: var(--ink); transition: .3s var(--ease); }
.round-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.round-btn .icon { width: 20px; height: 20px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, .78); font-size: .82rem; }
.topbar__inner { display: flex; gap: 28px; justify-content: flex-end; align-items: center; min-height: 40px; }
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: #fff; }
.topbar .icon { width: 15px; height: 15px; color: var(--accent); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .96); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(0, 0, 0, .3); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: 84px; }
.logo img { width: 128px; height: auto; transition: width .3s var(--ease); }
.is-scrolled .logo img { width: 108px; }
.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__item.has-mega { position: static; }
.nav__link { display: inline-flex; align-items: center; gap: 4px; padding: 30px 11px; font-size: .9rem; font-weight: 600; color: var(--ink); transition: color .2s; white-space: nowrap; }
.nav__link .icon--chev { width: 14px; height: 14px; transition: transform .3s; }
.nav__link:hover, .nav__link.is-active { color: var(--accent-deep); }
.nav__item:hover > .nav__link .icon--chev, .nav__item.is-open > .nav__link .icon--chev { transform: rotate(180deg); }
.header-cta { padding: 13px 22px; }

.dropdown, .mega { position: absolute; top: 100%; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
.nav__item:hover > .dropdown, .nav__item:focus-within > .dropdown, .nav__item.is-open > .dropdown,
.nav__item:hover > .mega, .nav__item:focus-within > .mega, .nav__item.is-open > .mega { opacity: 1; visibility: visible; transform: none; }
.dropdown { left: -12px; min-width: 250px; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 12px; border: 1px solid var(--line); }
.dropdown a, .dropdown span { display: block; padding: 10px 14px; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--ink-2); }
.dropdown a:hover { background: var(--linen); color: var(--accent-deep); }
.dropdown span { color: var(--muted); }
.mega { left: 0; right: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 30px 50px -30px rgba(0, 0, 0, .3); }
.mega__inner { display: grid; grid-template-columns: repeat(4, 1fr) 220px; gap: 32px; padding-block: 32px 40px; }
.mega__img { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 16px; }
.mega__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mega__img:hover img { transform: scale(1.05); }
.mega__title { display: block; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.mega__title:hover { color: var(--accent-deep); }
.mega ul a { display: block; padding: 5px 0; font-size: .9rem; color: var(--ink-soft); }
.mega ul a:hover { color: var(--accent-deep); padding-left: 4px; }
.mega ul a { transition: color .2s, padding .2s; }
.mega__cta { background: var(--linen); border-radius: var(--radius-sm); padding: 24px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.mega__cta .eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 4px; }
.mega__cta .btn { padding: 12px 16px; font-size: .85rem; }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); margin-left: auto; position: relative; }
.burger span { position: absolute; left: 13px; right: 13px; height: 1.8px; background: var(--ink); transition: .3s var(--ease); }
.burger span:nth-child(1) { top: 16px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.drawer { position: fixed; inset: 0; top: var(--drawer-top, 84px); z-index: 45; background: #fff; overflow-y: auto; padding: 16px var(--gutter) 40px; display: flex; flex-direction: column; gap: 24px; }
.drawer[hidden] { display: none; }
.drawer__link, .drawer__group summary { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; }
.drawer__group summary::-webkit-details-marker { display: none; }
.drawer__group[open] summary .icon--chev { transform: rotate(180deg); }
.drawer__group > :not(summary) { display: block; }
.drawer__all, .drawer__sub-title { padding: 12px 0 4px; font-weight: 700; color: var(--accent-deep); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.drawer__sub { padding: 8px 0 8px 12px; color: var(--ink-soft); }
.drawer__group[open] { padding-bottom: 12px; }
.drawer__foot { display: grid; gap: 12px; margin-top: auto; }
.drawer__contact { display: flex; gap: 10px; align-items: center; color: var(--ink-2); }
body.drawer-open { overflow: hidden; }

/* ---------- Hero slider ---------- */
.hero { position: relative; min-height: clamp(560px, 86vh, 820px); background: var(--ink); overflow: hidden; color: #fff; isolation: isolate; }
.hero__slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease), visibility 1.1s; }
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s linear; }
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 14, 12, .82) 0%, rgba(15, 14, 12, .55) 45%, rgba(15, 14, 12, .1) 100%); }
.hero__content { position: relative; z-index: 2; padding-bottom: 110px; }
.hero__content > * { max-width: 580px; opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.is-active .hero__content > * { opacity: 1; transform: none; }
.is-active .hero__content > :nth-child(2) { transition-delay: .15s; }
.is-active .hero__content > :nth-child(3) { transition-delay: .3s; }
.is-active .hero__content > :nth-child(4) { transition-delay: .45s; }
.hero__count { font-size: .82rem; letter-spacing: .2em; color: rgba(255, 255, 255, .7); margin-bottom: 18px; }
.hero__count span { color: var(--accent); font-weight: 700; }
.hero__title { font-family: var(--serif); font-size: clamp(3.4rem, 9vw, 7.2rem); font-weight: 500; line-height: .95; letter-spacing: -.02em; margin-bottom: 24px; color: #fff; }
.hero__text { font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255, 255, 255, .85); margin-bottom: 36px; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 180px; z-index: 2; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(15, 14, 12, .6)); }
.hero__tabs { position: absolute; left: 0; right: 0; bottom: 32px; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hero__tab { text-align: left; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .55); padding-top: 14px; transition: color .3s; }
.hero__tab.is-active, .hero__tab:hover { color: #fff; }
.hero__bar { display: block; height: 2px; background: rgba(255, 255, 255, .22); margin-bottom: 12px; overflow: hidden; }
.hero__bar i { display: block; height: 100%; width: 0; background: var(--accent); }
.hero__tab.is-active .hero__bar i { animation: bar var(--slide-ms, 6500ms) linear forwards; }
.hero.is-paused .hero__tab.is-active .hero__bar i { animation-play-state: paused; }
@keyframes bar { to { width: 100%; } }

/* ---------- Intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.intro__head h1 { margin-bottom: 24px; }
.intro__body { font-size: 1.02rem; }
.split-cards { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; margin-top: clamp(48px, 7vw, 88px); }
.card { border-radius: var(--radius); padding: clamp(28px, 4vw, 52px); }
.card--dark { background: var(--ink); color: rgba(255, 255, 255, .72); position: relative; overflow: hidden; }
.card--dark::before { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(176, 133, 69, .35); box-shadow: 0 0 0 40px rgba(176, 133, 69, .05), 0 0 0 80px rgba(176, 133, 69, .03); }
.card--dark h2 { color: #fff; font-size: clamp(1.8rem, 2.8vw, 2.5rem); max-width: 560px; position: relative; }
.card--dark .h-eyebrow { color: var(--accent); }
.card--linen { background: var(--linen); display: flex; flex-direction: column; }
.card--linen h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.card--linen .btn { align-self: flex-start; margin-top: 24px; }
.badges { display: flex; gap: 18px; align-items: center; margin: 12px 0 24px; }
.badges img { width: 84px; height: 84px; object-fit: contain; padding: 6px; background: #fff; border-radius: 50%; }
.checklist { display: grid; gap: 12px; margin: 22px 0 30px; }
.checklist--2 { grid-template-columns: 1fr 1fr; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--accent); color: #fff; margin-top: 2px; }
.card--dark .checklist li { color: #fff; font-weight: 500; }
.checklist strong { color: var(--ink); }

/* ---------- Collection ---------- */
.collection__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4.2; color: #fff; display: block; isolation: isolate; }
.cat-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); z-index: -1; }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(15, 14, 12, .88) 100%); }
.cat-card:hover .cat-card__img { transform: scale(1.07); }
.cat-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.cat-card h3 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.cat-card p { font-size: .9rem; color: rgba(255, 255, 255, .8); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s var(--ease), opacity .5s var(--ease), margin .5s; margin: 0; }
.cat-card:hover p, .cat-card:focus-visible p { max-height: 140px; opacity: 1; margin-bottom: 16px; }
.cat-card__go { width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; transition: background .3s, color .3s, transform .3s; }
.cat-card:hover .cat-card__go { background: var(--accent); color: #fff; transform: rotate(-45deg); }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: .75fr 1.5fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.services__intro { position: sticky; top: 120px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); }
a.service:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.service__icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 20px; }
.service h3 { font-size: 1.45rem; margin-bottom: 8px; }
.service p { font-size: .9rem; margin: 0; }
.service__go { position: absolute; top: 24px; right: 24px; color: var(--muted); transition: color .3s, transform .3s; }
a.service:hover .service__go { color: var(--accent); transform: rotate(-45deg); }

/* ---------- Commercial ---------- */
.commercial { position: relative; overflow: hidden; }
.commercial::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 90px); pointer-events: none; }
.commercial__grid { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.commercial h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-bottom: 32px; }
.commercial h4, .commercial h2.h4 { color: var(--accent); font-size: 1.6rem; }
.commercial h2.h4 { margin: 1.6em 0 .5em; }

/* ---------- Experiences ---------- */
.experiences__grid { display: grid; grid-template-columns: 1fr .8fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: center; }
.exp-card { border-radius: var(--radius); overflow: hidden; background: var(--linen); }
.exp-card--offset { margin-top: 80px; }
.exp-card__media { aspect-ratio: 4/4.4; overflow: hidden; }
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.exp-card:hover .exp-card__media img { transform: scale(1.05); }
.exp-card__body { padding: 28px; }
.exp-card__body p { font-size: .95rem; }
.exp-cta { text-align: center; padding: 20px; }
.exp-cta h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 28px; }

/* ---------- Gallery (bento grid, full image opens in lightbox) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 16vw, 230px); grid-auto-flow: dense; gap: 14px; }
.gallery > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery > :nth-child(3) { grid-row: span 2; }
.gallery > :nth-child(7), .gallery > :nth-child(8), .gallery > :nth-child(9) { grid-column: span 2; }
.gallery__item { display: block; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: zoom-in; background: var(--sand); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: rgba(23, 22, 20, 0); transition: background .4s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { background: rgba(23, 22, 20, .12); }
.projects__sub { margin: clamp(40px, 5vw, 64px) 0 24px; }

/* ---------- Rails (featured + reviews) ---------- */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(250px, 26vw, 330px); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: max(var(--gutter), (100vw - var(--container)) / 2 + var(--gutter)); padding: 4px max(var(--gutter), (100vw - var(--container)) / 2 + var(--gutter)) 24px; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail-nav { display: flex; gap: 10px; align-items: center; }
.product-card { display: block; position: relative; }
.product-card__media { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--linen); margin-bottom: 16px; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card :is(h3, h4, h5) { font-size: 1.55rem; margin: 0; padding-right: 50px; }
.product-card__go { position: absolute; right: 0; bottom: 2px; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: .3s var(--ease); }
.product-card:hover .product-card__go { background: var(--accent); border-color: var(--accent); color: #fff; transform: rotate(-45deg); }

/* ---------- Guarantee ---------- */
.guarantee__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.guarantee__media { border-radius: 200px 200px var(--radius) var(--radius); overflow: hidden; background: var(--sand); }
.guarantee__media img { width: 100%; }
.promise-list { display: grid; gap: 14px; margin-top: 32px; }
.promise { display: flex; gap: 20px; padding: 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.promise__icon { width: 46px; height: 46px; flex: none; color: var(--accent); }
.promise h4 { font-size: 1.4rem; margin-bottom: 4px; }
.promise p { font-size: .92rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; position: relative; }
.steps::before { content: ""; position: absolute; top: 60px; left: 16%; right: 16%; border-top: 1.5px dashed var(--line); }
.step { position: relative; text-align: center; padding: 0 12px; }
.step__num { position: absolute; top: 0; left: 50%; transform: translateX(22px); font-size: .75rem; font-weight: 800; letter-spacing: .1em; background: var(--accent); color: #fff; border-radius: 999px; padding: 4px 10px; z-index: 1; }
.step__icon { width: 120px; height: 120px; margin: 0 auto 24px; padding: 26px; background: var(--linen); border-radius: 50%; position: relative; }
.step h5 { font-size: 1.55rem; }
.step p { font-size: .93rem; }

/* ---------- Why choose ---------- */
.why__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.feature-list { display: grid; gap: 0; margin-top: 28px; counter-reset: f; }
.feature-list li { counter-increment: f; position: relative; padding: 20px 0 20px 64px; border-top: 1px solid var(--line); }
.feature-list li::before { content: counter(f, decimal-leading-zero); position: absolute; left: 0; top: 18px; font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--accent); line-height: 1; }
.feature-list strong { color: var(--ink); }
.why__col--card { background: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm); }

/* ---------- Suppliers marquee ---------- */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee + .marquee { margin-top: 16px; }
.marquee__track { display: flex; gap: 16px; width: max-content; animation: marquee 45s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__logo { width: 190px; height: 112px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 18px; }
.marquee__logo img { max-height: 90px; width: auto; filter: grayscale(1); opacity: .8; transition: filter .3s, opacity .3s; }
.marquee__logo:hover img { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(calc(-50% - 8px)); } }

/* ---------- Reviews ---------- */
.rating { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-weight: 600; color: var(--ink-2); font-size: .95rem; }
.rating__g { width: 26px; height: 26px; }
.stars { display: inline-flex; gap: 2px; color: #f4b400; }
.stars .icon { width: 17px; height: 17px; }
.rail--reviews { grid-auto-columns: clamp(280px, 30vw, 390px); }
.review { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.review blockquote { margin: 0; color: var(--ink-2); font-size: .95rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }
.review figcaption { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.review figcaption strong { display: block; color: var(--ink); font-size: .95rem; }
.review time { font-size: .8rem; color: var(--muted); }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-weight: 700; font-size: .85rem; flex: none; }
.review__g { width: 20px; height: 20px; margin-left: auto; }

/* ---------- FAQ + callback ---------- */
.faq-contact__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.accordion { border-top: 1px solid var(--line); margin-top: 24px; }
.acc { border-bottom: 1px solid var(--line); }
.acc summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.45rem); font-weight: 600; color: var(--ink); }
.acc summary::-webkit-details-marker { display: none; }
.acc__q { font: inherit; color: inherit; margin: 0; letter-spacing: inherit; }
.acc__icon { width: 36px; height: 36px; padding: 8px; border-radius: 50%; border: 1.5px solid var(--line); flex: none; transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s; }
.acc[open] .acc__icon { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.acc__body { padding: 0 48px 24px 0; font-size: .95rem; }
.callback { position: sticky; top: 110px; background: var(--linen); border-radius: var(--radius); overflow: hidden; }
.callback__media { height: 170px; overflow: hidden; }
.callback__media img { width: 100%; height: 100%; object-fit: cover; }
.callback__body { padding: clamp(24px, 3vw, 40px); }
.callback h4 { font-size: 2rem; margin-bottom: 8px; }

/* ---------- Forms ---------- */
.lead-form { margin-top: 24px; display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: .95rem; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(176, 133, 69, .15); }
.field.is-invalid input, .field.is-invalid select { border-color: #c0392b; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .92rem; font-weight: 600; margin: 0; }
.form-status.is-ok { color: #1e7b4a; }
.form-status.is-err { color: #c0392b; }
.form-status:empty { display: none; }
.form-legal { font-size: .72rem; color: var(--muted); margin: 0; }
.form-legal a { text-decoration: underline; }
.lead-form.is-sending button { opacity: .6; pointer-events: none; }
.grecaptcha-badge { visibility: hidden !important; }

/* ==========================================================================
   Inner pages (products, services…)
   ========================================================================== */

/* ---------- Page hero ---------- */
.page-hero { position: relative; background: var(--linen); padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px); overflow: hidden; isolation: isolate; }
.page-hero--img { background: var(--ink); color: #fff; min-height: clamp(420px, 58vh, 600px); display: flex; align-items: flex-end; }
.page-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero--img::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15, 14, 12, .85) 0%, rgba(15, 14, 12, .55) 55%, rgba(15, 14, 12, .2) 100%); }
.page-hero__inner { position: relative; }
.page-hero__title { font-size: clamp(2.4rem, 5.4vw, 4.6rem); font-weight: 500; line-height: 1.02; max-width: 900px; margin-bottom: 28px; }
.page-hero--img .page-hero__title { color: #fff; }
.page-hero__eyebrow { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; line-height: 1.4; }
.page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .8rem; margin-bottom: 28px; color: var(--muted); }
.page-hero--img .crumbs ol { color: rgba(255, 255, 255, .65); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }
.page-hero--img .crumbs [aria-current] { color: #fff; }
.btn--glass { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn--glass:hover { background: #fff; color: var(--ink); }

/* ---------- Generic content ---------- */
.sec-title { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
.sub-title { font-size: clamp(1.3rem, 1.8vw, 1.6rem); margin-top: 1.4em; }
.split__body > .sub-title:first-child, .center-block > .sub-title:first-child { margin-top: 0; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.prose ul, .prose ol { margin: 0 0 1.2em; display: grid; gap: 8px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.prose ol { counter-reset: o; }
.prose ol li { counter-increment: o; position: relative; padding-left: 30px; }
.prose ol li::before { content: counter(o) "."; position: absolute; left: 0; font-weight: 700; color: var(--accent-deep); }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose h2, .prose h3, .prose h4, .prose h5 { margin-top: 1.4em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: .92rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose th { background: var(--linen); color: var(--ink); }
.section--dark .prose strong { color: #fff; }
.center-block { max-width: 860px; text-align: center; margin-inline: auto; }
.browse-grid ~ .center-block { margin-top: 36px; }
.prose h2 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); }
.prose h3 { font-size: clamp(1.35rem, 1.9vw, 1.6rem); }
.prose h4, .prose h5 { font-size: 1.25rem; }
.prose li:has(> ul:first-child)::before, .prose li:has(> ol:first-child)::before { display: none; }
.prose li:has(> ul:first-child), .prose li:has(> ol:first-child) { padding-left: 0; }
.prose li > ul, .prose li > ol { margin: 8px 0 0; }
.center-block .btn-row, .center-block .stats { justify-content: center; }
.center-block .checklist { text-align: left; max-width: 640px; margin-inline: auto; }
.prose-block { max-width: 860px; }
.prose-block .prose { font-size: 1.02rem; }

/* split: copy + media */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.split--flip .split__body { order: 2; }
.split__body .checklist { margin-bottom: 0; }
.media-stack { display: grid; gap: 14px; }
.media-stack figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--sand); }
.media-stack img, .media-stack video { width: 100%; height: 100%; object-fit: cover; }
.media-stack--1 figure { aspect-ratio: 4/4.4; }
.media-stack--2 { grid-template-columns: 1fr 1fr; align-items: start; }
.media-stack--2 figure { aspect-ratio: 3/4; }
.media-stack--2 figure:last-child { margin-top: 56px; }
.media-stack--many { grid-template-columns: 1fr 1fr; }
.media-stack--many figure { aspect-ratio: 1; }
.media-stack--many figure:first-child { grid-column: span 2; aspect-ratio: 16/10; }
.media-video { width: 100%; border-radius: var(--radius); background: var(--ink); aspect-ratio: 16/10; object-fit: cover; display: block; }

.stats { display: flex; gap: 12px; flex-wrap: wrap; margin: 4px 0 24px; }
.stat { margin: 0; font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); background: var(--accent-soft); border-radius: 999px; padding: 9px 16px; line-height: 1.3; }
.mini-feature { padding: 18px 0; border-top: 1px solid var(--line); }
.mini-feature h2, .mini-feature h3, .mini-feature h4, .mini-feature h5 { font-size: 1.3rem; margin-bottom: 6px; }
.mini-feature p { font-size: .93rem; }
.center-block .mini-feature { text-align: left; max-width: 720px; margin-inline: auto; }

/* CTA band */
.cta-band__inner { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: end; }
.cta-band .sec-title { font-size: clamp(2rem, 3.6vw, 3rem); }
.cta-band .prose p { color: rgba(255, 255, 255, .75); }
.cta-band .btn-row { margin-top: 0; }
.checklist--light li { color: rgba(255, 255, 255, .85); }

/* feature trio (dark) */
.trio .section-head--row { align-items: center; }
.trio .btn-row { margin-top: 0; }
.trio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trio__item { border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 32px; background: rgba(255, 255, 255, .03); transition: background .3s, border-color .3s; }
.trio__item:hover { background: rgba(255, 255, 255, .06); border-color: rgba(176, 133, 69, .5); }
.trio__badge { width: 76px; height: 76px; object-fit: contain; background: #fff; border-radius: 50%; padding: 6px; margin-bottom: 22px; }
.trio__item h2, .trio__item h3, .trio__item h4 { color: #fff; font-size: 1.55rem; }
.trio__item p { font-size: .93rem; color: rgba(255, 255, 255, .7); }

/* numbered feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: box-shadow .3s, transform .3s var(--ease); }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card__num { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--accent); line-height: 1; margin-bottom: 18px; }
.feature-card h3, .feature-card h4, .feature-card h5 { font-size: 1.4rem; }
.feature-card p { font-size: .93rem; }

/* browse grid */
.browse-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.browse-grid--4 { grid-template-columns: repeat(4, 1fr); }
.browse-grid--2 { grid-template-columns: repeat(2, 1fr); }
.section--dark .h-eyebrow { color: var(--accent); }
.browse-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, transform .3s var(--ease); }
a.browse-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.browse-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--sand); }
.browse-card__media img, .browse-card__media video { width: 100%; height: 100%; object-fit: cover; border-radius: 0; aspect-ratio: auto; transition: transform .8s var(--ease); }
a.browse-card:hover .browse-card__media img { transform: scale(1.05); }
.browse-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.browse-card__body h2, .browse-card__body h3, .browse-card__body h4 { font-size: 1.55rem; margin-bottom: 8px; }
.browse-card__body .prose { font-size: .93rem; flex: 1; }
.browse-card__more { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; font-size: .85rem; font-weight: 700; color: var(--accent-deep); }
.browse-card__more .icon { transition: transform .3s var(--ease); }
a.browse-card:hover .browse-card__more .icon { transform: translateX(4px); }

/* videos */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.video-grid + .center-block { margin: 32px auto 0; }

/* larger galleries: uniform grid */
.gallery--grid { grid-auto-rows: clamp(150px, 15vw, 210px); }
.gallery--grid > :nth-child(n) { grid-column: auto; grid-row: auto; }
.gallery--grid > :nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery--c3, .gallery--c4 { grid-auto-rows: clamp(150px, 17vw, 240px); }
.gallery--c3 { grid-template-columns: repeat(3, 1fr); }
.gallery--c4 { grid-template-columns: repeat(4, 1fr); }
.gallery--c3 > :nth-child(n), .gallery--c4 > :nth-child(n) { grid-column: auto; grid-row: auto; }
.gallery--lead > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery--wide > :nth-child(1) { grid-column: span 2; }
.exp-card__body > :first-child { font-size: clamp(1.5rem, 2vw, 1.8rem); }

/* FAQ block */
.faq-block__grid { display: grid; grid-template-columns: .8fr 1.6fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-block__head { position: sticky; top: 120px; }
.faq-block__head .btn { margin-top: 12px; }
.faq-block .accordion { margin-top: 0; }

/* Callback band */
.callback-band__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.callback-band__media { border-radius: var(--radius); overflow: hidden; margin: 28px 0; aspect-ratio: 16/9; }
.callback-band__media img { width: 100%; height: 100%; object-fit: cover; }
.contact-list { display: grid; gap: 10px; }
.contact-list a { display: inline-flex; gap: 10px; align-items: center; font-weight: 600; color: var(--ink); }
.contact-list .icon { color: var(--accent); }
.callback-band__form { background: #fff; border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow-sm); }
.callback-band__form .lead-form { margin-top: 0; }

/* Category hub (/products/) */
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hub-card { display: grid; grid-template-columns: 1fr 1.1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hub-card__media { position: relative; min-height: 320px; overflow: hidden; }
.hub-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hub-card:hover .hub-card__media img { transform: scale(1.05); }
.hub-card__body { padding: 30px; display: flex; flex-direction: column; }
.hub-card__body h2 { font-size: 2rem; margin-bottom: 8px; }
.hub-card__body > p { font-size: .93rem; }
.hub-card__links { margin: 10px 0 22px; display: grid; gap: 2px; }
.hub-card__links a { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink-2); }
.hub-card__links a:hover { color: var(--accent-deep); }
.hub-card__links .icon { width: 15px; height: 15px; color: var(--accent); }
.hub-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 1080px) {
  .split, .cta-band__inner, .faq-block__grid, .callback-band__grid { grid-template-columns: 1fr; }
  .split--flip .split__body { order: 0; }
  .faq-block__head { position: static; }
  .browse-grid, .browse-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trio__grid, .hub-grid { grid-template-columns: 1fr; }
  .project-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .video-grid--project { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .browse-grid, .browse-grid--4, .browse-grid--2, .hub-card { grid-template-columns: 1fr; }
  .project-grid, .project-grid--5 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .video-grid--project { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hub-card__media { min-height: 220px; }
  .media-stack--2 figure:last-child { margin-top: 28px; }
  .gallery--grid > :nth-child(1), .gallery--lead > :nth-child(1) { grid-row: span 1; }
  .gallery--c3, .gallery--c4 { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .page-hero--img { min-height: 380px; }
}

/* ---------- Projects ---------- */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.project-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; background: var(--sand); box-shadow: var(--shadow-sm); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.project-card:hover img { transform: scale(1.05); }
.project-card__go { position: absolute; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; transition: background .3s, color .3s, transform .3s var(--ease); }
.project-card:hover .project-card__go { background: var(--accent); color: #fff; transform: rotate(-45deg); }
.project-grid--5 .project-card__go { width: 34px; height: 34px; top: 10px; right: 10px; }
.more-projects .h-display { margin: 0; font-family: var(--serif); font-weight: 600; color: var(--ink); }
.more-projects .h-display a:hover { color: var(--accent-deep); }
.project-videos .h-display { color: #fff; }
.video-grid--project { grid-template-columns: repeat(3, 1fr); }
.video-grid--project .media-video { aspect-ratio: 9/14; background: #000; }

/* ---------- Blog ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: .85rem; font-weight: 600; color: var(--ink-2); text-transform: capitalize; transition: .25s; }
.chip span { font-size: .72rem; color: var(--muted); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.is-active span { color: rgba(255, 255, 255, .6); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
.post-card { display: flex; flex-direction: column; }
.post-card__media { display: block; aspect-ratio: 3/2; border-radius: var(--radius); overflow: hidden; background: var(--sand); margin-bottom: 18px; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin: 0 0 10px; }
.post-meta__cat { color: var(--accent-deep); text-transform: uppercase; letter-spacing: .12em; }
.post-meta__cat:hover { color: var(--ink); }
.post-card__title { font-size: clamp(1.3rem, 1.7vw, 1.55rem); line-height: 1.2; margin-bottom: 10px; }
.post-card__title a:hover { color: var(--accent-deep); }
.post-card__excerpt { font-size: .92rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card__more { margin-top: auto; padding-top: 12px; font-size: .85rem; font-weight: 700; color: var(--accent-deep); }
.post-card__more:hover { color: var(--ink); }
.post-card--featured { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding-bottom: clamp(40px, 5vw, 64px); margin-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.post-card--featured .post-card__media { margin: 0; aspect-ratio: 16/10; }
.post-card--featured .post-card__title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.post-card--featured .post-card__excerpt { font-size: 1rem; -webkit-line-clamp: 4; }
.page-hero .chips { margin-top: 8px; }

/* single post */
.post-hero { background: var(--linen); padding-top: clamp(48px, 7vw, 88px); }
.post-hero__title { max-width: 980px; }
.post-hero__title { font-size: clamp(2.2rem, 4.6vw, 3.8rem); font-weight: 500; line-height: 1.05; margin-bottom: 18px; }
.post-meta--lg { font-size: .85rem; margin-bottom: clamp(32px, 4vw, 48px); }
.post-hero__media { position: relative; margin-bottom: calc(-1 * clamp(60px, 8vw, 120px)); }
.post-hero__media img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(32px, 5vw, 72px); padding-top: calc(clamp(60px, 8vw, 120px) + clamp(40px, 5vw, 64px)); padding-bottom: var(--section); align-items: start; }
.post-body { font-size: 1.05rem; line-height: 1.8; color: var(--ink-2); max-width: 760px; }
.post-body h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin: 1.6em 0 .5em; }
.post-body h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); margin: 1.4em 0 .4em; }
.post-body h2 strong, .post-body h3 strong { font-weight: inherit; }
.post-body > :first-child { margin-top: 0; }
.post-body figure { margin: 2em 0; }
.post-body figure img { border-radius: var(--radius-sm); margin-inline: auto; }
.post-body figcaption { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 8px; }
.post-body blockquote { margin: 1.8em 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.post-body #rank-math-toc { background: var(--linen); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 2em; }
.post-body #rank-math-toc > :first-child { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 10px; }
.post-body #rank-math-toc ul { margin: 0; gap: 4px; }
.post-body #rank-math-toc ul ul:empty { display: none; }
.post-body #rank-math-toc li::before { display: none; }
.post-body #rank-math-toc li { padding-left: 0; }
.post-body #rank-math-toc a { text-decoration: none; color: var(--ink-2); font-size: .95rem; }
.post-body #rank-math-toc a:hover { color: var(--accent-deep); }
.post-body [id] { scroll-margin-top: 110px; }
.post-aside { position: sticky; top: 110px; display: grid; gap: 18px; }
.aside-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fff; }
.aside-card--dark { background: var(--ink); border-color: var(--ink); color: rgba(255, 255, 255, .75); }
.aside-card__title { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: #fff; margin: 0 0 18px; line-height: 1.1; }
.aside-card__phone { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-weight: 600; color: #fff; }
.aside-card__phone .icon { color: var(--accent); }
.aside-card__label { font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 8px; }
.aside-links a { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink-2); text-transform: capitalize; }
.aside-links li:last-child a { border-bottom: 0; }
.aside-links a span { color: var(--muted); font-weight: 500; }
.aside-links a:hover { color: var(--accent-deep); }

@media (max-width: 1080px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-aside { position: static; grid-template-columns: 1fr 1fr; }
  .post-card--featured { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .post-grid, .post-aside { grid-template-columns: 1fr; }
  .post-body { font-size: 1rem; }
}

/* ---------- Icon tiles & specifications ---------- */
.icon-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.icon-grid > .icon-tile { flex: 0 1 calc((100% - 5 * 14px) / 6); min-width: 150px; }
.icon-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 26px 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .3s, transform .3s var(--ease); }
.icon-tile:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.icon-tile__img { width: 72px; height: 72px; object-fit: contain; }
.icon-tile :is(h2, h3, h4, h5) { font-size: 1.15rem; margin: 0; line-height: 1.25; }
.section--dark .icon-tile { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .12); }
.specs { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; border-top: 1px solid var(--line); }
.spec { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec__label { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0; }
.spec__value { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }
.post-layout--flat { padding-top: 0; padding-bottom: 0; }
.aside-links a .icon { width: 15px; height: 15px; color: var(--accent); }
.aside-contact { display: grid; gap: 12px; margin-bottom: 20px; }
.aside-contact a, .aside-contact span { display: flex; gap: 10px; align-items: flex-start; color: #fff; font-size: .92rem; font-weight: 600; word-break: break-word; }
.aside-contact .icon { color: var(--accent); margin-top: 2px; }
@media (max-width: 1080px) { .specs { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .spec-list { grid-template-columns: 1fr; } .icon-grid > .icon-tile { flex-basis: calc(50% - 7px); min-width: 0; } }

/* ---------- Contact / booking / locations ---------- */
.contact-grid, .booking { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-form, .booking__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.contact-form .lead-form, .booking__form .lead-form { margin-top: 0; }
.contact-form .h-display { margin-bottom: 24px; }
.contact-info__media, .booking__aside > img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 20px; }
.contact-info__media img, .booking__aside > img { width: 100%; height: 100%; object-fit: cover; }
.booking__aside > img { display: block; }
.contact-cards { display: grid; gap: 12px; }
.contact-cards a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--tint); font-weight: 600; color: var(--ink); word-break: break-word; transition: border-color .25s, background .25s; }
.contact-cards a:hover { border-color: var(--accent); background: #fff; }
.contact-cards__hours { padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--tint); color: var(--ink); line-height: 1.6; }
.footer-hours { margin: 6px 0 0; font-size: .9rem; opacity: .85; }
.contact-cards__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--accent); display: grid; place-items: center; flex: none; }
.map-embed { line-height: 0; background: var(--sand); }
.map-embed iframe { width: 100%; height: clamp(320px, 45vw, 480px); border: 0; filter: grayscale(.35); }
.suburb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.suburb-grid a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 600; color: var(--ink); transition: .25s var(--ease); }
.suburb-grid a img { width: 22px; height: auto; flex: none; }
.suburb-grid a .icon { margin-left: auto; color: var(--muted); transition: transform .25s var(--ease), color .25s; }
.suburb-grid a:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.suburb-grid a:hover .icon { color: var(--accent); transform: translateX(3px); }
@media (max-width: 1080px) { .contact-grid, .booking { grid-template-columns: 1fr; } .suburb-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .suburb-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .65); font-size: .92rem; padding-top: clamp(56px, 7vw, 88px); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 40px; padding-bottom: 56px; }
.logo--light img { width: 150px; filter: invert(1); margin-bottom: 24px; }
.site-footer__h { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.site-footer__brand > a:not(.logo), .site-footer__brand > span { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.site-footer__brand .icon { color: var(--accent); }
.site-footer__col li { margin-bottom: 9px; }
.site-footer a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); display: grid; place-items: center; transition: .3s; }
.social a:hover { background: var(--accent); border-color: var(--accent); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 24px; font-size: .82rem; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: #fff; }

.float-call { position: fixed; right: 18px; bottom: 18px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: none; place-items: center; box-shadow: var(--shadow); }
.float-call .icon { width: 24px; height: 24px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(12, 11, 10, .94); display: grid; place-items: center; padding: 60px 80px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 86vh; width: auto; border-radius: 8px; }
.lightbox .round-btn { position: absolute; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .2); color: #fff; }
.lightbox .round-btn:hover { background: #fff; color: var(--ink); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav__link { padding-inline: 8px; font-size: .86rem; }
  .header-cta { display: none; }
}
@media (max-width: 1080px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .site-header__inner { min-height: 72px; }
  .logo img { width: 110px; }
  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid, .commercial__grid, .intro__grid, .why__grid, .faq-contact__grid, .guarantee__grid { grid-template-columns: 1fr; }
  .services__intro, .callback { position: static; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences__grid { grid-template-columns: 1fr 1fr; }
  .exp-cta { grid-column: 1 / -1; grid-row: 1; }
  .exp-card--offset { margin-top: 0; }
  .guarantee__media { max-width: 460px; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__brand { grid-column: 1 / -1; }
  .split-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .topbar__inner { justify-content: center; gap: 16px; }
  .topbar a:first-child, .topbar__loc { display: none; }
  .hero__content { padding-bottom: 90px; }
  .hero__tabs { grid-template-columns: repeat(4, 1fr); gap: 8px; bottom: 20px; }
  .hero__tab { font-size: .62rem; letter-spacing: .06em; }
  .hero__slide::after { background: linear-gradient(180deg, rgba(15, 14, 12, .45), rgba(15, 14, 12, .85)); }
  .checklist--2, .field-row, .steps, .experiences__grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .gallery > :nth-child(3) { grid-row: auto; }
  .gallery > :nth-child(7), .gallery > :nth-child(8), .gallery > :nth-child(9) { grid-column: auto; }
  .gallery > :nth-child(1) { grid-row: span 1; }
  .service-grid { grid-template-columns: 1fr; }
  .collection__grid { grid-template-columns: 1fr; }
  .cat-card { aspect-ratio: 4/3.6; }
  .cat-card p { max-height: none; opacity: 1; margin-bottom: 16px; }
  .rail-nav .round-btn { display: none; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .float-call { display: grid; }
  .lightbox { padding: 60px 12px; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 16px; transform: none; }
  .acc__body { padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
