/* Kundi Kitchens — site styles
   Palette taken from the Kundi logo (charcoal #1f1f1f) and brand banner (bronze #7d674f). */

:root {
  --ink: #1f1f1f;
  --ink-2: #2b2a28;
  --bronze: #7d674f;
  --bronze-dark: #65523e;
  --paper: #ffffff;
  --stone: #f4f1ec;
  --stone-2: #e9e4dc;
  --line: #e2ddd5;
  --muted: #6b665f;
  --light-muted: rgba(255, 255, 255, .72);
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1520px;
  --header-h: 84px;
  --section: clamp(88px, 11vw, 176px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-slow: cubic-bezier(.16, 1, .3, 1);
  --font: "Jost", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
::selection { background: var(--ink); color: #fff; }

.icon { width: 1.25em; height: 1.25em; flex: none; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip:focus { left: 8px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* ---------- Type ---------- */
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}
.eyebrow--light { color: rgba(255, 255, 255, .8); }
.h1 {
  font-size: clamp(42px, 6.4vw, 96px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.h2 {
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.02em;
}
.h3 { font-size: clamp(26px, 2.4vw, 36px); font-weight: 300; line-height: 1.15; letter-spacing: -.01em; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--muted); max-width: 40em; }
.statement {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -.012em;
  max-width: 22em;
}
.statement--sm { font-size: clamp(23px, 2.3vw, 32px); margin-bottom: 28px; }

/* ---------- Buttons & links ---------- */
.btn {
  --h: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: var(--h);
  padding: 0 32px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.btn .icon { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(5px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--bronze); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--stone-2); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { --h: 44px; padding: 0 22px; font-size: 11.5px; }
.btn--lg { --h: 64px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn-row--center { justify-content: center; }
.btn-col { display: grid; gap: 12px; margin-top: 28px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  transition: gap .45s var(--ease), color .3s;
}
.link-arrow .icon { width: 18px; height: 18px; }
.link-arrow:hover { gap: 18px; color: var(--bronze); }

.round-btn {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .35s var(--ease), border-color .35s, color .35s;
}
.round-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.round-btn--light { border-color: rgba(255, 255, 255, .3); color: #fff; }
.round-btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  transition: background-color .4s var(--ease), color .4s, border-color .4s;
}
.site-header__bar { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { position: relative; display: block; width: 128px; flex: none; }
.logo img { width: 100%; height: auto; transition: opacity .4s; }
.logo--light { position: absolute; inset: 0; opacity: 0; }
.has-hero .site-header:not(.is-solid) { background: transparent; border-color: transparent; color: #fff; }
.has-hero .site-header:not(.is-solid) .logo--light { opacity: 1; }
.has-hero .site-header:not(.is-solid) .logo--dark { opacity: 0; }
.no-hero main { padding-top: var(--header-h); }

.nav__list { display: flex; gap: 38px; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  height: var(--header-h);
  font-size: 12.5px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
}
.nav__link .icon { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 26px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.nav__link:hover::after, .nav__item:focus-within > .nav__link::after { transform: scaleX(1); }

.mega {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  background: #fff; color: var(--ink);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .45s var(--ease), visibility 0s .45s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1; visibility: visible; transform: none; transition-delay: 0s;
}
.has-mega:hover .nav__link .icon { transform: rotate(180deg); }
.mega__inner { padding-top: 36px; padding-bottom: 40px; }
.mega__grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; }
.mega__card { display: block; }
.mega__img { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--stone); }
.mega__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-slow); }
.mega__card:hover img { transform: scale(1.06); }
.mega__name { display: block; margin-top: 12px; font-size: 14px; line-height: 1.35; }

.site-header__actions { display: flex; align-items: center; gap: 22px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: .04em; }
.header-phone .icon { width: 17px; height: 17px; }
.btn--header { background: var(--ink); color: #fff; }
.btn--header:hover { background: var(--bronze); }
.has-hero .site-header:not(.is-solid) .btn--header { background: #fff; color: var(--ink); }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: currentColor; transition: transform .45s var(--ease), top .45s var(--ease); }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 26px; }
.menu-open .burger span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .burger span:last-child { top: 21px; transform: rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: #fff;
  padding-top: var(--header-h);
  overflow-y: auto;
  opacity: 0; transition: opacity .45s var(--ease);
}
.menu.is-open { opacity: 1; }
.menu__inner { min-height: calc(100% - 0px); display: flex; flex-direction: column; justify-content: space-between; padding-top: 28px; padding-bottom: 40px; gap: 40px; }
.menu__list > li { border-bottom: 1px solid rgba(255, 255, 255, .12); opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .6s var(--ease); }
.menu.is-open .menu__list > li { opacity: 1; transform: none; }
.menu__list > li > a, .menu__toggle {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  padding: 16px 0; font-size: 30px; font-weight: 300; letter-spacing: -.01em; text-align: left;
}
.menu__toggle .icon { transition: transform .4s var(--ease); }
.menu__toggle[aria-expanded="true"] .icon { transform: rotate(45deg); }
.menu__sub { display: block; max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.menu__group.is-open .menu__sub { max-height: 520px; }
.menu__sub a { display: block; padding: 8px 0; font-size: 17px; color: var(--light-muted); }
.menu__sub li:last-child a { padding-bottom: 20px; }
.menu__foot { display: grid; gap: 18px; }
.menu__phone { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; }
.menu__addr { font-size: 14px; color: var(--light-muted); }
body.menu-open { overflow: hidden; }
.menu-open .site-header { background: var(--ink) !important; color: #fff !important; border-color: transparent !important; }
.menu-open .site-header .logo--light { opacity: 1 !important; }
.menu-open .site-header .logo--dark { opacity: 0 !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh; height: 100svh;
  min-height: 620px; max-height: 1100px;
  color: #fff; background: var(--ink);
  overflow: hidden;
}
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide { opacity: 0; visibility: hidden; transition: opacity 1.6s var(--ease), visibility 0s 1.6s; }
.hero { contain: layout paint; }
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity 1.6s var(--ease), visibility 0s; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 8s linear; }
.hero__slide.is-active .hero__img { transform: scale(1); }
.hero__shade { position: absolute; inset: 0; z-index: 2; background: rgba(18, 16, 14, .34); }
.hero__content { position: absolute; left: 0; right: 0; bottom: clamp(120px, 17vh, 190px); z-index: 3; }
.hero__title { font-size: clamp(44px, 7vw, 108px); font-weight: 300; line-height: 1; letter-spacing: -.03em; max-width: 12em; }
.hero__lead { margin-top: 26px; max-width: 30em; font-size: clamp(17px, 1.4vw, 20px); color: rgba(255, 255, 255, .88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__bar {
  position: absolute; left: 0; right: 0; bottom: 36px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.hero__progress { display: flex; gap: 10px; }
.hero__dot { width: 56px; height: 24px; display: flex; align-items: center; }
.hero__dot span { position: relative; display: block; width: 100%; height: 2px; background: rgba(255, 255, 255, .3); overflow: hidden; }
.hero__dot span::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero__dot.is-done span::after { transform: scaleX(1); }
.hero__dot.is-active span::after { animation: fill var(--slide-ms, 6500ms) linear forwards; }
.hero.is-paused .hero__dot.is-active span::after { animation-play-state: paused; }
@keyframes fill { to { transform: scaleX(1); } }
.hero__caption { display: inline-flex; align-items: center; gap: 16px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.hero__count { color: rgba(255, 255, 255, .6); font-variant-numeric: tabular-nums; }
.hero__caption .icon { width: 18px; height: 18px; transition: transform .45s var(--ease); }
.hero__caption:hover .icon { transform: translateX(5px); }
.hero__eyebrow, .hero__title, .hero__lead, .hero__actions { animation: rise 1.2s var(--ease-slow) both; }
.hero__title { animation-delay: .1s; }
.hero__lead { animation-delay: .25s; }
.hero__actions { animation-delay: .4s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section { padding: var(--section) 0; }
.section--flush-top { padding-top: 0; }
.section--stone { background: var(--stone); }
.section--ink { background: var(--ink); color: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head__note { font-size: 14px; }

.intro__grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: clamp(48px, 6vw, 88px); padding-top: 32px; border-top: 1px solid var(--line); }
.usp strong { display: block; font-weight: 500; font-size: 16px; margin-bottom: 8px; }
.usp span { display: block; font-size: 15px; color: var(--muted); line-height: 1.55; }

/* Service tiles (home) */
.tiles { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 28px); }
.tile { display: block; grid-column: span 4; }
.tile--0 { grid-column: 1 / span 8; grid-row: span 2; }
.tile--1, .tile--2 { grid-column: span 4; }
.tile--3, .tile--4, .tile--5, .tile--6 { grid-column: span 3; }
.tile__media { display: block; overflow: hidden; background: var(--stone); aspect-ratio: 4 / 3; }
.tile--0 .tile__media { aspect-ratio: auto; height: calc(100% - 92px); min-height: 420px; }
.tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-slow); }
.tile:hover .tile__media img { transform: scale(1.045); }
.tile__text { display: block; padding-top: 18px; }
.tile__name { display: flex; align-items: center; gap: 12px; font-size: clamp(20px, 1.7vw, 25px); font-weight: 400; letter-spacing: -.005em; }
.tile__name .icon { width: 20px; height: 20px; opacity: 0; transform: translateX(-8px); transition: opacity .4s, transform .45s var(--ease); }
.tile:hover .tile__name .icon { opacity: 1; transform: none; }
.tile__short { display: block; margin-top: 4px; font-size: 15px; color: var(--muted); }

/* Colour switcher */
.colour__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 110px); align-items: center; }
.colour__text .lead { margin: 26px 0 36px; }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.swatch { display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 20px 0 8px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-size: 14px; transition: border-color .3s, box-shadow .3s; }
.swatch__dot { width: 30px; height: 30px; border-radius: 50%; background: var(--sw); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08); }
.swatch.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.colour__stage { position: relative; aspect-ratio: 1440 / 1019; overflow: hidden; background: var(--stone-2); }
.colour__img { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); }
.colour__img.is-active { opacity: 1; }
.colour__img img { width: 100%; height: 100%; object-fit: cover; }

/* Reel */
.reel {
  display: flex; gap: clamp(14px, 1.6vw, 24px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 var(--gutter);
  scroll-padding: 0 var(--gutter);
  scrollbar-width: none; cursor: grab;
}
@media (min-width: 1520px) { .reel { padding-left: calc((100vw - var(--max)) / 2 + var(--gutter)); } }
.reel::-webkit-scrollbar { display: none; }
.reel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.reel.is-dragging a { pointer-events: none; }
.reel__item { flex: 0 0 clamp(270px, 34vw, 560px); scroll-snap-align: start; user-select: none; }
.reel__media { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--stone); }
.reel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-slow); pointer-events: none; }
.reel__item:hover img { transform: scale(1.04); }
.reel__label { display: block; margin-top: 16px; font-size: 18px; }
.reel-nav { display: flex; gap: 10px; }
.reel-foot { margin-top: 56px; }

/* Feature split */
.feature, .visit { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.feature { background: var(--ink); color: #fff; }
.feature__media, .visit__media { position: relative; overflow: hidden; }
.feature__media img, .visit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__text, .visit__text { display: flex; align-items: center; padding: clamp(56px, 7vw, 120px) var(--gutter); }
.feature__inner, .visit__inner { max-width: 520px; }
.feature p { margin: 28px 0; color: var(--light-muted); }
.ticks { display: grid; gap: 14px; margin-bottom: 40px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; }
.ticks .icon { width: 20px; height: 20px; margin-top: 3px; color: var(--bronze); }
.feature .ticks .icon { color: #c4ae92; }
.ticks--dark { margin: 8px 0 32px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 48px); counter-reset: s; }
.steps li { padding-top: 28px; border-top: 1px solid var(--ink); }
.steps__n { display: block; font-size: 13px; letter-spacing: .2em; color: var(--bronze); margin-bottom: 44px; }
.steps h3 { font-size: 26px; font-weight: 400; margin-bottom: 10px; }
.steps p { color: var(--muted); font-size: 16px; }
.steps--list { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
.steps--list li { display: grid; grid-template-columns: 80px 1fr; padding: 28px 0; border-top: 1px solid var(--line); }
.steps--list .steps__n { margin: 6px 0 0; }
.steps--list h3 { font-size: 22px; }

/* Testimonials */
.quotes__grid { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 110px); }
.quotes__track { position: relative; display: grid; }
.quote { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .8s var(--ease), transform .9s var(--ease), visibility 0s .8s; }
.quote.is-active { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.quote blockquote p { font-size: clamp(24px, 2.6vw, 38px); font-weight: 300; line-height: 1.35; letter-spacing: -.01em; }
.quote figcaption { margin-top: 36px; display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-weight: 500; }
.quote figcaption span { color: var(--light-muted); font-size: 15px; }
.quotes__nav { display: flex; align-items: center; gap: 20px; margin-top: 56px; }
.quotes__count { font-size: 13px; letter-spacing: .16em; color: var(--light-muted); font-variant-numeric: tabular-nums; }
.rating { display: inline-flex; flex-direction: column; gap: 8px; margin-top: 32px; font-size: 15px; color: var(--light-muted); }
.rating strong { color: #fff; font-weight: 500; }
.rating__stars { display: flex; gap: 2px; color: #c4ae92; }
.rating__stars .icon { width: 18px; height: 18px; }

/* Brands */
.brands { padding: 64px 0; border-bottom: 1px solid var(--line); }
.brands .wrap { display: flex; align-items: center; gap: 48px; }
.brands .eyebrow { margin: 0; flex: none; color: var(--muted); }
.brands__list { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 32px; flex: 1; }
.brands__list li { font-size: clamp(15px, 1.25vw, 19px); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #9d978f; }

/* Feed */
.feed { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.feed__item, .gallery__item, .pgallery__item { position: relative; display: block; overflow: hidden; background: var(--stone); }
.feed__item { aspect-ratio: 1; }
.feed__item img, .gallery__item img, .pgallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-slow), opacity .4s; }
.feed__item:hover img, .gallery__item:hover img, .pgallery__item:hover img { transform: scale(1.05); }
.feed__icon, .gallery__icon {
  position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px;
  display: grid; place-items: center; background: #fff; color: var(--ink); border-radius: 50%;
  opacity: 0; transform: scale(.85); transition: opacity .35s, transform .45s var(--ease);
}
.feed__icon .icon, .gallery__icon .icon { width: 18px; height: 18px; }
.feed__item:hover .feed__icon, .gallery__item:hover .gallery__icon, .pgallery__item:hover .gallery__icon { opacity: 1; transform: none; }

/* Visit block */
.visit { background: var(--stone); }
.visit p { margin: 26px 0 30px; color: var(--muted); }
.visit__facts { display: grid; gap: 16px; font-size: 16px; }
.visit__facts li { display: flex; gap: 14px; }
.visit__facts .icon { width: 20px; height: 20px; margin-top: 3px; color: var(--bronze); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 110px); }
.faq-grid .h2 { margin-bottom: 32px; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0; cursor: pointer; list-style: none;
  font-size: clamp(18px, 1.5vw, 21px); font-weight: 400;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .icon { transition: transform .45s var(--ease); flex: none; }
.faq__item[open] summary .icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; }
.faq__a p { padding: 0 48px 28px 0; color: var(--muted); max-width: 44em; }

/* CTA band */
.cta-band { background: var(--bronze); color: #fff; }
.cta-band__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-top: clamp(72px, 9vw, 130px); padding-bottom: clamp(72px, 9vw, 130px); }
.cta-band__title { font-size: clamp(34px, 4.4vw, 64px); font-weight: 300; line-height: 1.05; letter-spacing: -.02em; }
.cta-band__text { margin-top: 18px; max-width: 34em; color: rgba(255, 255, 255, .85); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; flex: none; }
.cta-band .btn--light:hover { background: var(--ink); color: #fff; }

/* Page head */
.page-head { padding-top: clamp(56px, 7vw, 110px); padding-bottom: clamp(56px, 6vw, 96px); }
.page-head .h1 { max-width: 14em; }
.page-head__lead { margin-top: 28px; }
.page-head--center { text-align: center; padding-top: clamp(96px, 12vw, 180px); }
.page-head--center .h1, .page-head--center .lead { margin-left: auto; margin-right: auto; }
.page-head--center .lead { margin-top: 24px; }
.crumbs { margin-bottom: 40px; font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a:hover { color: var(--ink); }

.page-hero { position: relative; height: 82vh; height: 82svh; min-height: 560px; max-height: 920px; color: #fff; background: var(--ink); overflow: hidden; }
.page-hero--tall { height: 92vh; height: 92svh; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; animation: settle 2.4s var(--ease-slow) both; }
@keyframes settle { from { transform: scale(1.08); } to { transform: scale(1); } }
.page-hero__shade { position: absolute; inset: 0; background: rgba(18, 16, 14, .36); }
.page-hero__content { position: absolute; left: 0; right: 0; bottom: clamp(56px, 9vh, 110px); }
.page-hero__content > * { animation: rise 1.1s var(--ease-slow) both; }
.page-hero__content .h1 { animation-delay: .1s; max-width: 13em; }
.page-hero__lead { margin-top: 20px; font-size: clamp(18px, 1.5vw, 21px); color: rgba(255, 255, 255, .88); animation-delay: .2s; }
.page-hero .crumbs { color: rgba(255, 255, 255, .7); margin-bottom: 28px; }
.page-hero .crumbs a:hover { color: #fff; }

/* Split layout */
.split { display: grid; grid-template-columns: 7fr 4fr; gap: clamp(40px, 8vw, 140px); align-items: start; }
.split__main p + p { margin-top: 20px; }
.split__side { position: sticky; top: calc(var(--header-h) + 32px); }
.split__side .eyebrow { margin-bottom: 16px; }
.side-phone { display: block; text-align: center; margin-top: 16px; font-size: 15px; color: var(--muted); }
.side-phone:hover { color: var(--ink); }

/* Service rows */
.rows { display: grid; gap: clamp(72px, 9vw, 140px); }
.row { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 6vw, 100px); align-items: center; }
.row--flip .row__media { order: 2; }
.row__media { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--stone); }
.row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-slow); }
.row:hover .row__media img { transform: scale(1.04); }
.row__n { display: block; font-size: 13px; letter-spacing: .2em; color: var(--bronze); margin-bottom: 24px; }
.row .h3 { margin-bottom: 18px; }
.row p { color: var(--muted); margin-bottom: 32px; max-width: 30em; }

/* Galleries */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery__item { aspect-ratio: 4 / 3; }
.gallery__item:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery--4 .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pgallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pgallery__item { aspect-ratio: 3 / 2; }
.pgallery__item:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
.pgallery__item:last-child:nth-child(even) { grid-column: 1 / -1; aspect-ratio: 16 / 8; }

/* Project cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 24px; }
.card { display: block; transition: opacity .4s var(--ease); }
.card__media { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--stone); margin-bottom: 18px; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-slow); }
.card:hover .card__media img { transform: scale(1.045); }
.card__meta { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.card__title { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 400; line-height: 1.3; }
.card__title .icon { width: 18px; height: 18px; opacity: 0; transform: translateX(-6px); transition: opacity .35s, transform .45s var(--ease); }
.card:hover .card__title .icon { opacity: 1; transform: none; }
.cards--projects .card:nth-child(7n + 1) { grid-column: span 2; }
.cards--projects .card:nth-child(7n + 1) .card__media { aspect-ratio: auto; height: clamp(300px, 36vw, 560px); }
.cards--projects .card:nth-child(7n + 1) .card__media ~ * { }
.card.is-hidden { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter { height: 42px; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; transition: background .3s, color .3s, border-color .3s; }
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.empty { padding: 40px 0; color: var(--muted); }

.facts { border-top: 1px solid var(--line); margin-bottom: 32px; }
.facts div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.facts dt { color: var(--muted); }

.next-project { position: relative; display: block; height: 70vh; min-height: 420px; color: #fff; overflow: hidden; background: var(--ink); }
.next-project__media, .next-project__shade { position: absolute; inset: 0; }
.next-project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease-slow); }
.next-project:hover .next-project__media img { transform: scale(1.04); }
.next-project__shade { background: rgba(18, 16, 14, .42); transition: background .5s; }
.next-project:hover .next-project__shade { background: rgba(18, 16, 14, .3); }
.next-project__text { position: absolute; left: 0; right: 0; bottom: 64px; }
.next-project .h2 { display: flex; align-items: center; gap: 20px; }
.next-project .h2 .icon { width: 36px; height: 36px; transition: transform .5s var(--ease); }
.next-project:hover .h2 .icon { transform: translateX(10px); }

.chips-links { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-link { display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 22px; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; transition: border-color .3s, background .3s, color .3s; }
.chip-link .icon { width: 16px; height: 16px; }
.chip-link:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Showroom / about */
.duo { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.duo > div { overflow: hidden; background: var(--stone); }
.duo img { width: 100%; height: 100%; object-fit: cover; }
.duo__big { aspect-ratio: 16 / 10; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours li:first-child { border-top: 1px solid var(--line); }
.split__side .hours + p { margin: 14px 0 32px; }
.addr { font-size: 17px; line-height: 1.6; }
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.areas li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.map-wrap { height: 480px; background: var(--stone); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.wide-img { aspect-ratio: 16 / 7; overflow: hidden; background: var(--stone); }
.wide-img img { width: 100%; height: 100%; object-fit: cover; }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trio__item { aspect-ratio: 4 / 5; overflow: hidden; background: var(--stone); }
.trio__item img { width: 100%; height: 100%; object-fit: cover; }
.values div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.values div:first-child { border-top: 1px solid var(--line); }
.values dt { font-weight: 500; margin-bottom: 4px; }
.values dd { color: var(--muted); font-size: 15px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 22px; font-weight: 500; margin: 40px 0 10px; }
.prose p { color: var(--muted); }
.prose a, .page-head a, .faq-grid p a { border-bottom: 1px solid currentColor; }

/* Contact & forms */
.contact { display: grid; grid-template-columns: 7fr 4fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.form__group { border: 0; padding: 0; margin: 0 0 36px; }
.form__legend { font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span { display: inline-flex; align-items: center; height: 46px; padding: 0 20px; border: 1px solid var(--line); border-radius: 999px; font-size: 15px; transition: background .3s, color .3s, border-color .3s; }
.choice input:hover + span { border-color: var(--ink); }
.choice input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.choice input:focus-visible + span { outline: 2px solid var(--bronze); outline-offset: 2px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 28px; margin-bottom: 32px; }
.field { display: block; }
.field--full { grid-column: 1 / -1; }
.field__label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.field__label em { font-style: normal; opacity: .7; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 17px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid #cfc8be; border-radius: 0;
  padding: 10px 0 12px; transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.field select { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231f1f1f' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 2px center; cursor: pointer; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--ink); }
.field.has-error input { border-color: #a4372b; }
.field__err, .consent .field__err { display: block; margin-top: 6px; font-size: 13px; color: #a4372b; }
.consent { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); margin-bottom: 32px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--ink); flex: none; }
.consent > span:first-of-type { flex: 1; }
.consent a { border-bottom: 1px solid currentColor; }
.consent .field__err { flex-basis: 100%; margin-left: 32px; }
.form__alert { padding: 16px 20px; background: #f6e9e7; color: #7c2a21; margin-bottom: 32px; font-size: 15px; }
.form__note { margin-top: 14px; text-align: center; font-size: 14px; color: var(--muted); }
.form.is-sending button[type=submit] { opacity: .6; pointer-events: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact__side { position: sticky; top: calc(var(--header-h) + 32px); }
.contact__img { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 32px; background: var(--stone); }
.contact__img img { width: 100%; height: 100%; object-fit: cover; }
.contact__list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__list li:first-child { border-top: 1px solid var(--line); }
.contact__list .icon { width: 20px; height: 20px; margin-top: 3px; color: var(--bronze); }
.contact__list div { display: flex; flex-direction: column; font-size: 16px; }
.contact__k { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact__list a:hover { color: var(--bronze); }
.contact__h { font-size: 15px; }
.contact__h b { font-weight: 400; color: var(--muted); }

/* Social */
.social { display: flex; gap: 8px; margin-top: 28px; }
.social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; transition: background .3s, color .3s, border-color .3s; }
.social a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.social .icon { width: 18px; height: 18px; }
.social--dark a { border-color: var(--line); }
.social--dark a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Footer */
.site-footer { background: var(--ink); color: #fff; padding: clamp(72px, 8vw, 120px) 0 36px; font-size: 15px; }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.site-footer__logo { width: 150px; margin-bottom: 28px; }
.site-footer__brand p { color: var(--light-muted); max-width: 22em; }
.site-footer__h { font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-bottom: 22px; }
.site-footer__col li + li { margin-top: 10px; }
.site-footer__col a { color: rgba(255, 255, 255, .85); transition: color .3s; }
.site-footer__col a:hover { color: #fff; }
.site-footer__col address, .site-footer__col p { color: rgba(255, 255, 255, .85); margin-bottom: 16px; }
.hours--compact li { padding: 4px 0; border: 0 !important; font-size: 14px; color: var(--light-muted); }
.site-footer__areas { padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: 14px; color: var(--light-muted); }
.site-footer__areas span { color: rgba(255, 255, 255, .5); letter-spacing: .18em; text-transform: uppercase; font-size: 12px; margin-right: 10px; }
.site-footer__legal { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; color: rgba(255, 255, 255, .5); }
.site-footer__legal a { margin-left: 20px; }
.site-footer__legal a:hover { color: #fff; }

/* Mobile sticky CTA */
.mobile-cta { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15, 14, 13, .97); display: grid; place-items: center; opacity: 0; transition: opacity .35s var(--ease); }
.lightbox.is-open { opacity: 1; }
.lightbox__figure { max-width: min(92vw, 1600px); max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lightbox__figure img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain; transition: opacity .3s; }
.lightbox__figure figcaption { margin-top: 16px; color: rgba(255, 255, 255, .7); font-size: 14px; letter-spacing: .08em; }
.lightbox__close, .lightbox__nav { position: absolute; width: 56px; height: 56px; display: grid; place-items: center; color: #fff; border-radius: 50%; transition: background .3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .1); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; top: 34px; left: 32px; color: rgba(255, 255, 255, .6); font-size: 13px; letter-spacing: .16em; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .mega__grid { grid-template-columns: repeat(4, 1fr); }
  .mega__img { aspect-ratio: 16 / 10; }
  .header-phone span { display: none; }
  .nav__list { gap: 28px; }
}
@media (max-width: 1080px) {
  :root { --header-h: 72px; }
  .nav, .header-phone, .btn--header { display: none; }
  .burger { display: block; }
  .logo { width: 112px; }
  .usp { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 56px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards--projects .card:nth-child(7n + 1) { grid-column: 1 / -1; }
  .feed { grid-template-columns: repeat(3, 1fr); }
  .brands .wrap { flex-direction: column; align-items: flex-start; gap: 24px; }
  .brands__list { justify-content: flex-start; }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .intro__grid, .colour__grid, .quotes__grid, .faq-grid, .split, .contact, .row { grid-template-columns: 1fr; }
  .row--flip .row__media { order: 0; }
  .split__side, .contact__side { position: static; }
  .feature, .visit { grid-template-columns: 1fr; min-height: 0; }
  .feature__media, .visit__media { aspect-ratio: 4 / 3; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .tile, .tile--0, .tile--1, .tile--2, .tile--3, .tile--4, .tile--5, .tile--6 { grid-column: span 1; grid-row: auto; }
  .tile--0 { grid-column: 1 / -1; }
  .tile--0 .tile__media { height: auto; min-height: 0; aspect-ratio: 4 / 3; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item:nth-child(6n + 1), .gallery--4 .gallery__item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4 / 3; }
  .duo { grid-template-columns: 1fr; }
  .duo__small { aspect-ratio: 16 / 10; }
  .wide-img { aspect-ratio: 4 / 3; }
  .quotes__nav { margin-top: 40px; }
  .map-wrap { height: 380px; }
  .colour__stage { order: -1; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .logo { width: 100px; }
  .hero { min-height: 580px; }
  .hero__content { bottom: 118px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__bar { bottom: 28px; }
  .hero__dot { width: 34px; }
  .hero__caption .hero__label, .hero__caption .icon { display: none; }
  .btn { padding: 0 24px; }
  .usp { grid-template-columns: 1fr; gap: 22px; }
  .steps { grid-template-columns: 1fr; row-gap: 32px; }
  .steps__n { margin-bottom: 18px; }
  .tiles { grid-template-columns: 1fr; }
  .tile, .tile--0, .tile--3, .tile--4, .tile--5, .tile--6 { grid-column: 1 / -1; }
  .tile__name .icon { opacity: 1; transform: none; }
  .cards { grid-template-columns: 1fr; gap: 40px; }
  .cards--projects .card:nth-child(7n + 1) .card__media { height: auto; aspect-ratio: 4 / 3; }
  .card__title .icon { opacity: 1; transform: none; }
  .feed { grid-template-columns: repeat(2, 1fr); }
  .form__grid { grid-template-columns: 1fr; }
  .pgallery { grid-template-columns: 1fr; }
  .pgallery__item, .pgallery__item:first-child, .pgallery__item:last-child:nth-child(even) { aspect-ratio: 4 / 3; grid-column: auto; }
  .trio { grid-template-columns: 1fr; }
  .trio__item { aspect-ratio: 4 / 3; }
  .site-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__legal a { margin: 0 20px 0 0; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1 1 100%; }
  .reel-nav { display: none; }
  .brands__list { gap: 14px 28px; }
  .page-hero { min-height: 520px; }
  .facts div { grid-template-columns: 100px 1fr; }
  .lightbox__nav { top: auto; bottom: 20px; transform: none; }
  .lightbox__prev { left: calc(50% - 68px); }
  .lightbox__next { right: calc(50% - 68px); }
  .mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    display: grid; grid-template-columns: 1fr 2fr;
    padding-bottom: env(safe-area-inset-bottom); background: var(--ink);
    transform: translateY(110%); transition: transform .5s var(--ease);
  }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; height: 58px; color: #fff; font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
  .mobile-cta .icon { width: 17px; height: 17px; }
  .mobile-cta__book { background: var(--bronze); }
  .site-footer { padding-bottom: 96px; }
}

@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; }
}
