:root {
  --color-bg: #faf9f7;
  --color-warm: #f7f5f0;
  --color-surface: #f4f3f1;
  --color-input: #efeeec;
  --color-text: #09110c;
  --color-muted: #434844;
  --color-soft: #858d87;
  --color-accent: #354236;
  --color-accent-deep: #1e2621;
  --color-dark: #161b18;
  --color-border: #ddd8cf;
  --color-border-soft: rgba(196, 200, 195, 0.2);
  --color-border-mid: rgba(196, 200, 195, 0.3);
  --color-border-strong: rgba(196, 200, 195, 0.4);
  --color-light: #e3e2e0;
  --color-white: #ffffff;
  --font: "Manrope", system-ui, sans-serif;
  --pad: clamp(32px, 5.555vw, 80px);
  --radius: 4px;
  --radius-sm: 2px;
  --header-h: 100px;
  --utility-h: 38px;
  --chrome-h: calc(var(--utility-h) + var(--header-h));
  --transition: 0.22s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1408px;
  --nav-desktop: 787px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  /* Native wheel scroll — CSS smooth on root feels laggy/hanging while dragging */
  scroll-behavior: auto;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
/* Full-bleed top sections sit under fixed chrome; other pages need offset */
main:not(:has(.hero)):not(:has(.page-hero)):not(:has(.banner-hero)):not(:has(.split-hero)) {
  padding-top: var(--chrome-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  color: var(--color-text);
}
h2 {
  font-size: clamp(28px, 2.5vw + 0.75rem, 44px);
  font-weight: 400;
  letter-spacing: -1.1px;
  line-height: 1.18;
}
h3 { font-size: 1.1875rem; font-weight: 600; letter-spacing: -0.19px; }

.container {
  width: 100%;
  max-width: calc(var(--max) + (var(--pad) * 2));
  margin-inline: auto;
  padding-inline: var(--pad);
  box-sizing: border-box;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 14px;
}
.eyebrow--light { color: #c0c9c1; }

.section { padding: 92px 0; }
.section-heading { margin-bottom: 64px; max-width: 42rem; }
.section-heading p { color: var(--color-muted); font-size: 18px; letter-spacing: -0.09px; line-height: 28px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--light h2 { color: var(--color-white); }
.section-heading--light p { color: #e5e5e5; }
.section-heading--light .eyebrow { color: #e5e5e5; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 5px;
  transition: opacity var(--transition), letter-spacing 0.28s ease;
}
.text-link:hover {
  opacity: 0.72;
  letter-spacing: 0.8px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    opacity 0.35s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 25%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.65s var(--ease-out);
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 17, 12, 0.14);
}
.btn:hover::after { transform: translateX(130%); }
.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(9, 17, 12, 0.08);
  transition-duration: 0.15s;
}
.btn--primary { background: var(--color-accent-deep); color: var(--color-white); }
.btn--primary:hover { background: var(--color-accent); }
.btn--white { background: var(--color-white); color: var(--color-text); }
.btn--white:hover { background: #fff; }
.btn--light { background: var(--color-white); color: var(--color-text); }
.btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid #747874;
}
.btn--outline:hover { background: rgba(30, 38, 33, 0.04); border-color: var(--color-accent-deep); }
.btn--outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-accent-deep);
}
.btn--outline-dark:hover { background: rgba(30, 38, 33, 0.04); }
.btn--nav-cta {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 16px 32px;
  min-height: 46px;
  border-radius: var(--radius);
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn--nav-cta:hover {
  background: var(--color-accent-deep);
  box-shadow: 0 14px 30px rgba(53, 66, 54, 0.32);
}
.btn--nav-cta .nav-cta__short { display: none; }
.btn--block { width: 100%; }
.btn--sm { min-height: 32px; padding: 8px 16px; }

/* Fixed chrome (utility + logo + nav + CTA) — entire bar stays put */
.site-chrome {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  width: 100%;
  background: var(--color-bg);
  transition: box-shadow 0.35s var(--ease-out);
}
.site-chrome.is-solid {
  box-shadow: 0 10px 28px rgba(9, 17, 12, 0.1);
}

.utility-bar {
  height: var(--utility-h);
  background: var(--color-accent-deep);
  color: var(--color-light);
  display: flex;
  align-items: center;
}
.utility-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.utility-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-light);
}
.utility-bar__item svg { flex-shrink: 0; opacity: 0.9; }
.utility-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(227, 226, 224, 0.35);
}

.site-header {
  position: relative;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-soft);
  overflow: visible;
}
.site-header:has(.mega-panel:not([hidden])) {
  border-bottom-color: transparent;
  background: var(--color-bg);
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.5vw, 28px);
  min-height: var(--header-h);
}
.site-header__logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.site-header__logo img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
}
.site-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  transition: opacity var(--transition);
}
.menu-toggle:hover { opacity: 0.7; }
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: none;
  flex: 1;
  min-width: 0;
}
@media (min-width: 787px) {
  .main-nav { display: block; }
  .menu-toggle { display: none !important; }
}
.main-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2px;
}
.main-nav__trigger,
.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.28s ease, color 0.28s ease;
}
.main-nav__trigger:hover,
.main-nav__link:hover,
.main-nav__item.is-open .main-nav__trigger {
  background: rgba(9, 17, 12, 0.05);
}
.main-nav__chevron {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: 0.7;
  transition: transform 0.28s ease;
  flex-shrink: 0;
}
.main-nav__item.is-open .main-nav__chevron {
  transform: rotate(180deg);
}

/* Compact desktop nav for tablet/laptop widths — still desktop, not mobile */
@media (min-width: 787px) and (max-width: 1199px) {
  :root {
    --pad: clamp(40px, 5.2vw, 64px);
  }
  .site-header__logo img { width: 64px; height: 64px; }
  .site-header__inner { gap: 10px; }
  .main-nav__list { gap: 0; }
  .main-nav__trigger,
  .main-nav__link {
    padding: 7px 6px;
    font-size: 12.5px;
    gap: 4px;
  }
  .btn--nav-cta {
    padding: 11px 14px;
    min-height: 40px;
    font-size: 12px;
    letter-spacing: 0.4px;
  }
  .btn--nav-cta .nav-cta__full { display: none; }
  .btn--nav-cta .nav-cta__short { display: inline; }
  .section { padding: 72px 0; }
  .banner-hero { min-height: 100svh; }
  .banner-hero__content {
    padding-top: calc(var(--chrome-h) + 32px);
    padding-bottom: 40px;
  }
  .product-split,
  .kitchen-intro {
    gap: 36px;
  }
  .duo { gap: 20px; }
}
@media (min-width: 787px) and (max-width: 1024px) {
  .main-nav__trigger,
  .main-nav__link {
    padding: 6px 5px;
    font-size: 12px;
  }
  .product-split,
  .kitchen-intro {
    grid-template-columns: 1fr;
  }
  .product-split > div:last-child img {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .main-nav__trigger,
  .main-nav__link {
    padding: 8px 10px;
    font-size: 13.5px;
  }
  .btn--nav-cta {
    padding: 14px 22px;
    font-size: 13.5px;
  }
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border-mid);
  box-shadow: 0 24px 48px rgba(9, 17, 12, 0.08);
  padding: 14px 0 28px;
  z-index: 90;
  -webkit-overflow-scrolling: touch;
}
.mega-panel[hidden] { display: none !important; }
.mega-panel__inner { padding-bottom: 12px; }
.mega-panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--color-border-mid);
  margin-bottom: 24px;
}
.mega-panel__eyebrow {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 16.5px;
}
.mega-panel__title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.19px;
  line-height: 26px;
}
.mega-panel__view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  white-space: nowrap;
}
.mega-panel__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  justify-content: start;
}
.mega-panel--single-card .mega-panel__cards,
.mega-panel__cards[data-card-count="1"] {
  grid-template-columns: minmax(0, 282px);
  justify-content: start;
}
.mega-panel--single-card .mega-card,
.mega-panel__cards[data-card-count="1"] .mega-card {
  max-width: 282px;
  width: 100%;
}
.mega-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mega-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(9, 17, 12, 0.08); }
.mega-card__media { background: var(--color-input); aspect-ratio: 287 / 175; overflow: hidden; }
.mega-card__media img { width: 100%; height: 100%; object-fit: cover; }
.mega-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}
.mega-card__label { margin: 0; font-size: 16px; font-weight: 600; }
.mega-card__text { margin: 2px 0 0; font-size: 13px; color: var(--color-muted); line-height: 20px; }
.mega-card__arrow { color: var(--color-muted); }
.mega-panel__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-mid);
}
.mega-panel__col-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.mega-panel__col a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 20px;
}
.mega-panel__col a:hover,
.mega-panel__col a.is-strong { color: var(--color-text); font-weight: 600; }
.mega-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 25px;
  border-top: 1px solid var(--color-border-mid);
  font-size: 13px;
  color: var(--color-muted);
}
.mega-panel__perks { display: flex; gap: 24px; }
.mega-panel__phone { display: flex; align-items: center; gap: 12px; }
.mega-panel__phone a { font-weight: 700; color: var(--color-text); }

.mobile-nav {
  position: fixed;
  inset: var(--chrome-h) 0 0;
  background: var(--color-bg);
  z-index: 350;
  overflow: auto;
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 340;
  background: rgba(9, 17, 12, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.mobile-nav__backdrop[hidden] { display: none !important; }
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100%, 560px);
  margin: 0;
}
.mobile-nav__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-soft);
}
.mobile-nav__toolbar-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-muted);
}
.mobile-nav__close {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 0;
}
.mobile-nav__contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; color: var(--color-muted); font-size: 14px; }
.mobile-nav__top-link,
.mobile-nav__toggle,
.mobile-nav__parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition), opacity var(--transition);
}
.mobile-nav__top-link:hover,
.mobile-nav__toggle:hover,
.mobile-nav__parent-link:hover { color: var(--color-accent); }
.mobile-nav__list { padding: 8px 0 16px; }
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  transition: opacity var(--transition);
}
.mobile-nav__link:hover { opacity: 0.75; }
.mobile-nav__link img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); }
.mobile-nav__chevron {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.28s ease;
}
.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__chevron {
  transform: rotate(180deg);
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.sticky-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Fixed WhatsApp launcher — all pages */
.whatsapp-float {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 950;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(9, 17, 12, 0.22);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  line-height: 0;
}
.whatsapp-float__icon {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(9, 17, 12, 0.28);
  color: #fff;
}
.whatsapp-float:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
body.nav-open .whatsapp-float,
body:has(.modal:not([hidden])) .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 786px) {
  .sticky-mobile-cta { display: block; }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    /* Sit above the sticky Register CTA when it appears */
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
  .utility-bar { display: none; }
  :root { --utility-h: 0px; --header-h: 72px; --pad: 20px; }
  .btn--nav-cta {
    display: inline-flex;
    padding: 11px 16px;
    min-height: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: none;
    border-radius: var(--radius);
  }
  .site-header__logo img { width: 58px; height: 58px; }
  .site-header__inner { min-height: 72px; }
  .menu-toggle { width: 32px; height: 32px; padding: 6px; gap: 4px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mega-panel { display: none !important; }
  body.nav-open .sticky-mobile-cta { display: none; }
}

/* Hero — whole block (image + heading + CTAs) sticks; next sections slide up over it */
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  max-height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  color: var(--color-white);
  overflow: hidden;
}
@supports not (height: 100svh) {
  .hero {
    height: 100vh;
    max-height: 100vh;
  }
}
.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__media {
  z-index: 0;
  overflow: hidden;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out);
}
.hero__media img.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(9, 17, 12, 0.92) 0%,
      rgba(9, 17, 12, 0.82) 22%,
      rgba(9, 17, 12, 0.58) 42%,
      rgba(9, 17, 12, 0.32) 62%,
      rgba(9, 17, 12, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(9, 17, 12, 0.62) 0%,
      rgba(9, 17, 12, 0.28) 18%,
      rgba(9, 17, 12, 0.2) 48%,
      rgba(9, 17, 12, 0.55) 100%
    ),
    radial-gradient(
      ellipse 70% 60% at 28% 70%,
      rgba(9, 17, 12, 0.45) 0%,
      transparent 70%
    );
}
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-top: calc(var(--chrome-h) + clamp(24px, 4vh, 56px));
  padding-bottom: clamp(28px, 5vh, 80px);
  box-sizing: border-box;
}
.hero__inner {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}
.hero__badge {
  display: inline-flex;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  background: rgba(9, 17, 12, 0.45);
  backdrop-filter: blur(8px);
  font-size: clamp(10px, 0.7vw + 0.35rem, 11px);
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: clamp(12px, 2vh, 20px);
  width: fit-content;
  animation: hero-rise 0.7s ease both;
}
.hero__title {
  color: var(--color-white);
  font-size: clamp(34px, 4.2vw + 0.6rem, 68px);
  line-height: 1.06;
  letter-spacing: clamp(-1.2px, -0.028em, -1.92px);
  margin-bottom: clamp(12px, 2vh, 20px);
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(9, 17, 12, 0.45);
  animation: hero-rise 0.75s ease 0.05s both;
}
.hero__text {
  max-width: 42rem;
  color: #f5f5f5;
  font-size: clamp(14px, 0.7vw + 0.65rem, 18px);
  font-weight: 500;
  letter-spacing: -0.09px;
  line-height: 1.55;
  margin-bottom: clamp(14px, 2.2vh, 24px);
  text-shadow: 0 1px 14px rgba(9, 17, 12, 0.4);
  animation: hero-rise 0.8s ease 0.1s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vh, 16px);
  margin-bottom: clamp(16px, 3vh, 42px);
  animation: hero-rise 0.85s ease 0.15s both;
}
.hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  padding-top: clamp(14px, 2.5vh, 33px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: clamp(10px, 0.55vw + 0.4rem, 12px);
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #f0f0f0;
  text-shadow: 0 1px 10px rgba(9, 17, 12, 0.35);
  animation: hero-rise 0.9s ease 0.2s both;
}
.hero__categories span[aria-hidden] { color: rgba(227, 226, 224, 0.55); }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Following content scrolls up over sticky hero as one opaque layer */
.page-stack {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  isolation: isolate;
}
main > *:not(.hero):not(.page-stack) {
  position: relative;
  z-index: 2;
}

/* More than */
.more-than { padding: 114px 0; background: var(--color-bg); }
.more-than__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: center;
}
.more-than__media { position: relative; }
.more-than__media > img {
  width: 100%;
  aspect-ratio: 738 / 456;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--color-input);
}
.spec-card {
  position: absolute;
  right: -24px;
  bottom: -24px;
  max-width: 320px;
  padding: 25px 40px 25px 25px;
  background: var(--color-input);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.spec-card__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--color-muted);
}
.spec-card__text { margin: 0; font-size: 13px; line-height: 20px; color: #1a1c1b; letter-spacing: 0.065px; }
.more-than__content { display: flex; flex-direction: column; }
.more-than__content .eyebrow { margin-bottom: 12px; }
.more-than__content h2 { margin-bottom: 23px; }
.more-than__content p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 24.38px;
  margin: 0 0 15px;
}
.more-than__content p:last-of-type { margin-bottom: 0; }
.more-than__content .text-link { margin-top: 23px; align-self: flex-start; }

/* Disciplines */
.disciplines { padding: 75px 0 144px; background: var(--color-bg); }
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.discipline-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 25px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  min-height: 100%;
  transition: border-color var(--transition), transform var(--transition);
}
.discipline-card:hover { border-color: rgba(196, 200, 195, 0.55); transform: translateY(-2px); }
.discipline-card__media {
  width: 100%;
  height: 171px;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #e9e8e6;
  margin-bottom: 16px;
}
.discipline-card__media img { width: 100%; height: 100%; object-fit: cover; }
.discipline-card h3 { margin-bottom: 8px; }
.discipline-card p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-muted);
  letter-spacing: 0.065px;
}
.discipline-card__cta {
  margin-top: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Featured transform */
.featured-transform { padding: 70px 0; background: var(--color-bg); }
.featured-transform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured-transform__content {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.featured-transform__content .eyebrow,
.featured-transform__content h2 { margin-bottom: 0; }
.featured-transform__content p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 24.38px;
  margin: 0;
}
.featured-transform__content .btn { margin-top: 17px; align-self: flex-start; }
.featured-transform__media {
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-input);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.featured-transform__media img { width: 100%; aspect-ratio: 606 / 418; object-fit: cover; }

/* Our work */
.our-work { padding: 63px 0 144px; border-top: 1px solid var(--color-border-mid); background: var(--color-bg); }
.our-work .section-heading { margin-bottom: 48px; }
.filter-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding-bottom: 33px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border-mid);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.filter-btn {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: var(--color-muted);
  background: var(--color-bg);
  white-space: nowrap;
}
.filter-btn.is-active,
.filter-btn:hover { background: var(--color-accent-deep); color: var(--color-white); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
}
.work-card__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-input);
  aspect-ratio: 407 / 467;
}
.work-card__media img { width: 100%; height: 100%; object-fit: cover; }
.work-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: rgba(9, 17, 12, 0.2);
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__overlay span {
  background: var(--color-white);
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.work-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 13px;
  border-bottom: 1px solid var(--color-border-mid);
}
.work-card__eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: var(--color-muted);
}
.work-card__meta h3 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.19px; line-height: 26px; }
.work-card__year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  color: #747874;
  padding-top: 0;
  line-height: 14px;
}

/* Dark band */
.dark-band {
  position: relative;
  padding: 144px 0;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-dark);
}
.dark-band__bg { position: absolute; inset: 0; }
.dark-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.11; }
.dark-band__content {
  position: relative;
  z-index: 1;
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.dark-band__content .eyebrow,
.dark-band__content h2 { margin-bottom: 0; }
.dark-band h2 { color: var(--color-white); }
.dark-band p {
  color: var(--color-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 29.25px;
  letter-spacing: -0.09px;
  margin: 0;
}
.dark-band .btn {
  margin-top: 25px;
  align-self: flex-start;
  padding: 16px 32px;
}

/* Why */
.why { padding: 92px 0; background: var(--color-bg); }
.why .section-heading { margin-bottom: 64px; }
.principles { border-top: 1px solid var(--color-border-strong); border-bottom: 1px solid var(--color-border-strong); }
.principle {
  display: grid;
  grid-template-columns: 2fr 4fr 6fr;
  gap: 24px;
  padding: 40px 16px;
  border-top: 1px solid var(--color-border-strong);
}
.principle:first-child { border-top: 0; }
.principle__num {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.36px;
  line-height: 32px;
  color: var(--color-muted);
}
.principle h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.475px;
  line-height: 26px;
  text-transform: uppercase;
}
.principle p { margin: 0; font-size: 15px; line-height: 24.38px; color: var(--color-muted); }

/* Craftsmanship */
.craftsmanship {
  padding: 106px 0 108px;
  background: var(--color-dark);
  border-top: 1px solid var(--color-border-mid);
}
.craftsmanship .section-heading { margin-bottom: 64px; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.detail-card { background: var(--color-bg); }
.detail-card img {
  width: 100%;
  height: 202px;
  aspect-ratio: auto;
  object-fit: cover;
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius);
  background: var(--color-input);
}
.detail-card__body { padding: 16px 16px 23px; display: flex; flex-direction: column; gap: 8px; }
.detail-card__body h3 { margin: 0; }
.detail-card__body p { margin: 0; font-size: 13px; color: var(--color-muted); line-height: 21px; letter-spacing: 0.065px; }

/* Process */
.process { padding: 84px 0 64px; background: var(--color-bg); }
.process .section-heading { margin-bottom: 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  margin-bottom: 48px;
}
.process-card {
  padding: 25px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  min-height: 100%;
}
.process-card__num {
  margin: 0 0 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.55px;
}
.process-card h3 { margin-bottom: 12px; }
.process-card p { margin: 0; font-size: 13px; color: var(--color-muted); line-height: 21px; letter-spacing: 0.065px; }
.process__cta { text-align: center; }
.process__cta .btn { padding: 14px 32px; }

/* Instagram */
.instagram { padding: 144px 0; background: var(--color-bg); }
.instagram__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}
.instagram__header .section-heading,
.instagram__header > div { margin-bottom: 0; max-width: 42rem; }
.instagram__header p:last-child { color: var(--color-muted); font-size: 18px; line-height: 28px; }
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.instagram__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-input);
}
.instagram__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.instagram__item:hover img { transform: scale(1.04); }

/* FAQ */
.faq-section { padding: 144px 0; background: var(--color-bg); }
.faq-section__inner { max-width: 896px; }
.faq-section .section-heading { margin-bottom: 64px; }
.faq-list { border-top: 1px solid var(--color-border-strong); border-bottom: 1px solid var(--color-border-strong); padding-top: 25px; }
.faq-item { border-top: 1px solid var(--color-border-strong); }
.faq-item:first-child { border-top: 0; }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 24px;
  text-align: left;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.19px;
  line-height: 26px;
  transition: color 0.3s ease;
}
.faq-item + .faq-item .faq-item__trigger { padding-top: 25px; }
.faq-item__trigger:hover { color: var(--color-accent); }
.faq-item__trigger img {
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
  width: 11px;
  height: 7px;
}
.faq-item__trigger[aria-expanded="true"] img { transform: rotate(180deg); }
.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}
.faq-item__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item__panel-inner p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--color-muted);
  max-width: 54ch;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s var(--ease-out) 0.05s;
}
.faq-item.is-open .faq-item__panel-inner p {
  opacity: 1;
  transform: translateY(0);
}

/* Lead form */
.lead-section {
  padding: 104px 0;
  background: var(--color-accent-deep);
  color: var(--color-white);
}
.lead-section__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.lead-section h2 { color: var(--color-white); }
.lead-section__copy > p {
  color: var(--color-light);
  font-size: 18px;
  font-weight: 300;
  line-height: 29.25px;
}
.lead-section__note { color: #858d87 !important; font-size: 15px !important; font-weight: 400 !important; line-height: 24px !important; }
.lead-section__whatsapp {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(116, 120, 116, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-section__whatsapp .eyebrow {
  color: var(--color-light);
  letter-spacing: 0.6px;
  font-size: 12px;
  line-height: 16px;
}
.lead-section__whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--color-white);
}
.lead-section__card {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border-mid);
  border-radius: var(--radius);
  padding: 49px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.lead-section__card h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.36px;
}
.lead-section__footnote {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
}

.interest-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--color-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 17px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-input);
  color: var(--color-text);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field--honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-actions { margin-top: 24px; }
.form-status { margin: 12px 0 0; font-size: 14px; min-height: 1.2em; }
.form-status.is-success { color: #2f6b3a; }
.form-status.is-error { color: #8a2f2f; }
.upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 26px;
  border: 2px dashed #c4c8c3;
  border-radius: var(--radius);
  background: var(--color-surface);
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-muted);
  transition: border-color var(--transition), background var(--transition);
}
.upload-dropzone.is-dragover {
  border-color: var(--color-accent);
  background: rgba(53, 66, 54, 0.06);
}
.upload-dropzone__hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  color: #747874;
}
.upload-preview {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}
.upload-preview[hidden] { display: none !important; }
.upload-preview__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border-mid);
  overflow: hidden;
  aspect-ratio: 1;
}
.upload-preview__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.upload-preview__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 10px 8px;
  text-align: center;
}
.upload-preview__ext {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.upload-preview__name {
  font-size: 10px;
  line-height: 1.3;
  color: var(--color-muted);
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.upload-preview__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 38, 33, 0.82);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.upload-preview__remove:hover {
  background: var(--color-accent-deep);
}

/* Service / working area */
.service-area {
  padding: 92px 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}
.service-area__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.service-area__visual {
  display: flex;
  justify-content: center;
}
.service-area__diagram {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.service-area__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(53, 66, 54, 0.22);
  background: radial-gradient(circle at center, rgba(53, 66, 54, 0.04), transparent 68%);
}
.service-area__ring--outer { inset: 0; }
.service-area__ring--mid {
  inset: 18%;
  border-color: rgba(53, 66, 54, 0.28);
  background: radial-gradient(circle at center, rgba(53, 66, 54, 0.06), transparent 70%);
}
.service-area__ring--inner {
  inset: 36%;
  border-color: rgba(53, 66, 54, 0.4);
  background: rgba(53, 66, 54, 0.06);
}
.service-area__pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.service-area__pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(53, 66, 54, 0.12);
}
.service-area__pin-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
}
.service-area__radius-tag {
  position: absolute;
  top: 8%;
  right: 2%;
  z-index: 1;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.service-area__copy { max-width: 36rem; }
.service-area__copy h2 { margin-bottom: 1rem; }
.service-area__copy > p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.09px;
  margin-bottom: 1.5rem;
}
.service-area--compact {
  padding: 64px 0;
}
.service-area--compact .service-area__copy > p {
  font-size: 16px;
  margin-bottom: 0;
}

/* Final CTA */
.final-cta { padding: 80px 0; background: var(--color-bg); }
.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.final-cta h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.64px;
}
.final-cta p { margin: 0; color: var(--color-muted); font-size: 15px; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  background: var(--color-accent-deep);
  color: var(--color-soft);
  border-top: 1px solid rgba(116, 120, 116, 0.3);
  padding: 96px 0 40px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(116, 120, 116, 0.3);
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  line-height: 32px;
}
.site-footer__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.site-footer__tagline {
  max-width: 24rem;
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.065px;
  margin-bottom: 16px;
}
.site-footer__phone,
.site-footer__phone a { color: var(--color-light); font-size: 13px; }
.site-footer__coverage {
  margin: 0.75rem 0 0;
  font-size: 13px;
}
.site-footer__coverage a {
  color: var(--color-light);
  border-bottom: 1px solid rgba(227, 226, 224, 0.35);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.site-footer__coverage a:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.site-footer__heading {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #c0c9c1;
}
.site-footer__links { display: flex; flex-direction: column; gap: 8px; }
.site-footer__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.065px;
  color: var(--color-soft);
  line-height: 20px;
}
.site-footer__links a:hover { color: var(--color-light); }
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  color: var(--color-light);
  font-size: 13px;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  font-size: 13px;
}
.site-footer__legal { display: flex; gap: 24px; }
.site-footer__legal a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.88px;
  text-transform: uppercase;
}

/* Modal — above fixed site-chrome (400) and mobile-nav (350) */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 17, 12, 0.55);
}
.modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: 90vh;
  overflow: auto;
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 40px;
  scrollbar-width: thin;
  scrollbar-color: rgba(53, 66, 54, 0.45) transparent;
}
.modal__panel::-webkit-scrollbar {
  width: 6px;
}
.modal__panel::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 0;
}
.modal__panel::-webkit-scrollbar-thumb {
  background: rgba(53, 66, 54, 0.35);
  border-radius: 999px;
}
.modal__panel::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 28px;
  line-height: 1;
  color: var(--color-muted);
}
.modal__title { margin-bottom: 8px; font-size: 28px; }
.modal__subtitle { color: var(--color-muted); margin-bottom: 24px; }

/* Responsive — keep desktop layouts until 786px */
@media (max-width: 1100px) and (min-width: 787px) {
  .more-than__grid,
  .featured-transform__grid,
  .lead-section__grid { gap: 40px; }
  .discipline-grid,
  .detail-grid,
  .process-grid,
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 786px) {
  :root { --pad: 20px; }
  .hero__categories { display: none; }
  .more-than__grid,
  .featured-transform__grid,
  .lead-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .more-than__media { order: -1; }
  .spec-card { position: static; margin-top: 16px; max-width: none; right: auto; bottom: auto; }
  .discipline-grid,
  .detail-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .principle { grid-template-columns: 64px 1fr; }
  .principle p { grid-column: 1 / -1; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .instagram__header,
  .final-cta__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .discipline-card__media { height: auto; aspect-ratio: 16 / 10; }
  .detail-card img { height: auto; aspect-ratio: 16 / 10; }
  .section,
  .more-than,
  .disciplines,
  .our-work,
  .dark-band,
  .craftsmanship,
  .instagram,
  .faq-section,
  .service-area,
  .lead-section { padding: 72px 0; }
  .service-area__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .service-area__copy { margin-inline: auto; }
  .service-area__copy .btn { margin-inline: auto; }
  .process { padding: 72px 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .interest-form .form-grid { grid-template-columns: 1fr; }
  .lead-section__card { padding: 28px 20px; }
  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .sticky-mobile-cta { padding-bottom: env(safe-area-inset-bottom); }
  .final-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
  :root { --pad: 16px; }
  .discipline-grid,
  .detail-grid,
  .process-grid,
  .work-grid { grid-template-columns: 1fr; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top,
  .site-footer__bottom { grid-template-columns: 1fr; display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero:hover .hero__media img { transform: none; }
  .btn:hover { transform: none; box-shadow: none; }
  .btn::after { display: none; }
}

/* ── Inner page hero (Bedrooms & category pages) ── */
.page-hero {
  position: relative;
  z-index: 1;
  /* Full first viewport — matches homepage .hero presence under fixed chrome */
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-accent-deep);
}
@supports not (min-height: 100svh) {
  .page-hero { min-height: 100vh; }
}
.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}
.page-hero__media { z-index: 0; }
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(9, 17, 12, 0.72) 0%,
      rgba(9, 17, 12, 0.48) 36%,
      rgba(9, 17, 12, 0.22) 68%,
      rgba(9, 17, 12, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(9, 17, 12, 0.38) 0%,
      rgba(9, 17, 12, 0.08) 42%,
      rgba(9, 17, 12, 0.42) 100%
    );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--chrome-h) + clamp(48px, 8vh, 96px));
  padding-bottom: clamp(40px, 7vh, 88px);
}
.page-hero__inner { max-width: 720px; }
.page-hero__inner .eyebrow { margin-bottom: 14px; }
.page-hero__inner h1 {
  color: var(--color-white);
  font-size: clamp(34px, 4vw + 0.8rem, 64px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(9, 17, 12, 0.4);
}
.page-hero__text {
  max-width: 38rem;
  margin: 0 0 28px;
  color: #f2f2f2;
  font-size: clamp(15px, 0.6vw + 0.75rem, 18px);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(9, 17, 12, 0.35);
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero background videos — poster first, video fades in when ready */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-accent-deep);
  isolation: isolate;
}
.hero-video__poster,
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-video__poster {
  z-index: 1;
  transition: opacity 0.7s var(--ease-out);
}
.hero-video__media {
  z-index: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.hero-video.is-ready .hero-video__media { opacity: 1; }
.hero-video.is-ready .hero-video__poster { opacity: 0; }

.hero__media .hero-video,
.page-hero__media .hero-video,
.banner-hero__media .hero-video,
.split-hero__media .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video__media { display: none !important; }
  .hero-video__poster { opacity: 1 !important; }
}

.discipline-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.work-card > h3 {
  margin: 16px 0 8px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.19px;
  line-height: 26px;
}
.work-card > p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .discipline-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 786px) {
  .page-hero { min-height: 100svh; }
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .page-hero__actions .btn { width: 100%; }
  .discipline-grid--4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   INNER-PAGE LAYOUT VARIANTS (design-system consistent,
   structure intentionally different from homepage rhythm)
   ═══════════════════════════════════════════════════════════ */

.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 100svh;
  background: var(--color-warm);
}
@supports not (min-height: 100svh) {
  .split-hero { min-height: 100vh; }
}
.split-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--chrome-h) + 48px) var(--pad) 64px;
  max-width: 40rem;
}
.split-hero__copy h1 {
  font-size: clamp(32px, 3.6vw + 0.6rem, 56px);
  margin-bottom: 1rem;
}
.split-hero__copy .lead {
  color: var(--color-muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.split-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.split-hero__media { position: relative; min-height: 420px; }
.split-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-hero--flip { direction: rtl; }
.split-hero--flip > * { direction: ltr; }

.banner-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--color-accent-deep);
}
@supports not (min-height: 100svh) {
  .banner-hero { min-height: 100vh; }
}
.banner-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.banner-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(9,17,12,.82) 0%, rgba(9,17,12,.35) 70%);
}
.banner-hero__content {
  position: relative;
  z-index: 2;
  /* Keep .container horizontal padding — do not use padding shorthand here */
  padding-top: calc(var(--chrome-h) + 40px);
  padding-bottom: 48px;
}
.banner-hero h1 {
  color: #fff;
  font-size: clamp(30px, 3.2vw + .6rem, 48px);
  max-width: 18ch;
}
.banner-hero p { color: #e8ebe9; max-width: 36rem; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row--flip .feature-row__media { order: 2; }
.feature-row__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__body h2 { margin-bottom: 1rem; }
.feature-row__body p { color: var(--color-muted); }

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 560px;
}
.mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  color: #fff;
  min-height: 220px;
}
.mosaic__item--tall { grid-row: 1 / -1; min-height: 100%; }
.mosaic__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.mosaic__item:hover img { transform: scale(1.04); }
.mosaic__item span {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.mosaic__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(9,17,12,.7));
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.lookbook__item {
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: block;
  color: inherit;
}
.lookbook__item--wide { grid-column: span 6; aspect-ratio: 16 / 11; }
.lookbook__item--tall { grid-column: span 3; aspect-ratio: 3 / 4; }
.lookbook__item img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.lookbook__item figcaption { display: none; }
.lookbook figure.lookbook__item { margin: 0; }
.lookbook--rooms .lookbook__item { aspect-ratio: 4 / 3; grid-column: span 4; }
.lookbook--rooms .lookbook__item--wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.lookbook--rooms .lookbook__item--tall { grid-column: span 4; aspect-ratio: 4 / 5; }
.lookbook--rooms .lookbook__item img { object-position: center 45%; }

.benefit-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.benefit-board__item {
  background: var(--color-bg);
  padding: 36px 32px;
}
.benefit-board__item h3 { margin-bottom: .5rem; }
.benefit-board__item p { margin: 0; color: var(--color-muted); font-size: .95rem; }
.benefit-board__num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.story-pull {
  padding: 88px 0;
  background: var(--color-accent-deep);
  color: #fff;
  text-align: center;
}
.story-pull blockquote {
  margin: 0 auto;
  max-width: 44rem;
  font-size: clamp(22px, 2vw + .6rem, 34px);
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.02em;
}
.story-pull cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c0c9c1;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.duo figure { margin: 0; }
.duo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.duo figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-muted);
}

.timeline {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding-left: 28px;
  border-left: 1px solid var(--color-border);
}
.timeline__step { position: relative; padding: 0 0 40px 28px; }
.timeline__step:last-child { padding-bottom: 0; }
.timeline__step::before {
  content: "";
  position: absolute;
  left: -34px; top: 6px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-bg);
}
.timeline__step h3 { margin-bottom: .4rem; }
.timeline__step p { margin: 0; color: var(--color-muted); }

.tip-list { margin: 0; padding: 0; list-style: none; }
.tip-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border-soft);
  color: var(--color-muted);
}
.tip-list li strong { color: var(--color-text); }
.tip-list__mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-accent);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

.related-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.related-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.related-pills a:hover {
  border-color: var(--color-accent-deep);
  background: rgba(30,38,33,.04);
}

.compact-cta {
  padding: 72px 0;
  background: var(--color-warm);
  text-align: center;
}
.compact-cta h2 { margin-bottom: .75rem; }
.compact-cta p {
  color: var(--color-muted);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}
.compact-cta__actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}

.thanks {
  min-height: min(70svh, 640px);
  display: flex;
  align-items: center;
  padding: calc(var(--chrome-h) + 64px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(53, 66, 54, 0.08), transparent 55%),
    var(--color-bg);
}
.thanks__inner {
  max-width: 40rem;
  text-align: center;
  margin-inline: auto;
}
.thanks__inner h1 {
  font-size: clamp(32px, 3.2vw + 0.7rem, 48px);
  margin-bottom: 1rem;
}
.thanks__text {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.75rem;
}
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1.75rem;
}
.thanks__contact {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}
.thanks__contact a {
  color: var(--color-accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-forward {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.form-forward__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
}
.form-forward__aside h2 { margin-bottom: 1rem; }
.form-forward__aside p { color: var(--color-muted); }

.section--tight { padding: 64px 0; }
.section--flush-top { padding-top: 48px; }
.rail-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.rail-heading p { margin: 0; color: var(--color-muted); max-width: 28rem; }

.overlay-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.overlay-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  font: inherit;
}
.overlay-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.overlay-card:hover img { transform: scale(1.04); }
.overlay-card__body {
  position: relative; z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(transparent 30%, rgba(9,17,12,.78));
}
.overlay-card h3 { color: #fff; margin-bottom: .35rem; }
.overlay-card p { margin: 0; color: #e5e5e5; font-size: 14px; }

.legal-prose {
  max-width: 46rem;
}
.legal-prose h2 { margin-top: 2rem; }
.legal-prose h3 { margin-top: 1.5rem; font-size: 1.05rem; }

.product-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.kitchen-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 900px) {
  .product-split,
  .kitchen-intro { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .split-hero,
  .split-hero--flip,
  .feature-row,
  .feature-row--flip,
  .form-forward,
  .duo,
  .mosaic,
  .overlay-card-grid,
  .benefit-board { grid-template-columns: 1fr; }
  .split-hero--flip > *,
  .feature-row--flip .feature-row__media { order: 0; }
  .mosaic { grid-template-rows: auto; }
  .mosaic__item--tall { grid-row: auto; min-height: 320px; }
  .lookbook__item,
  .lookbook__item--wide,
  .lookbook__item--tall { grid-column: span 6; }
  .rail-heading { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .lookbook__item,
  .lookbook__item--wide,
  .lookbook__item--tall { grid-column: span 12; }
  .benefit-board__item { padding: 28px 20px; }
}
