:root {
  --bg: #08111f;
  --bg-soft: #0f1b31;
  --bg-card: rgba(15, 27, 49, 0.78);
  --surface: #ffffff;
  --surface-soft: #f4f6f8;
  --text: #112033;
  --muted: #5d6b80;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(17, 32, 51, 0.1);
  --accent: #c3924b;
  --accent-soft: #e6bb7c;
  --success: #79c77a;
  --shadow: 0 24px 60px rgba(3, 12, 24, 0.22);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.5;
}

body.js-ready .hero-copy,
body.js-ready .hero-copy--page,
body.js-ready .floating-panel,
body.js-ready .section-head,
body.js-ready .info-card,
body.js-ready .spotlight,
body.js-ready .product-card,
body.js-ready .portfolio-card,
body.js-ready .split-copy,
body.js-ready .process-top,
body.js-ready .process-panel,
body.js-ready .step,
body.js-ready .stat,
body.js-ready .testimonial,
body.js-ready .portrait,
body.js-ready .values-copy,
body.js-ready .value-item,
body.js-ready .contact-card,
body.js-ready .contact-form,
body.js-ready .all-products-cta {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

body.js-ready .hero-copy {
  transform: translateY(28px);
}

body.js-ready .hero-copy--page {
  transform: translateY(22px);
}

body.js-ready .floating-panel {
  transform: translateY(46px) scale(0.975);
}

body.js-ready .portfolio-card {
  transform: translateY(34px) scale(0.97);
}

body.js-ready .is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Product detail HTML only adds js-ready, not scroll-reveal .is-visible */
body.page-product-detail.js-ready .section-head,
body.page-product-detail.js-ready .process-top,
body.page-product-detail.js-ready .step {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.js-ready .delay-1 { transition-delay: 0.08s; }
body.js-ready .delay-2 { transition-delay: 0.16s; }
body.js-ready .delay-3 { transition-delay: 0.24s; }
body.js-ready .delay-4 { transition-delay: 0.32s; }
body.js-ready .delay-5 { transition-delay: 0.4s; }

body.js-ready .hero-glow {
  animation: heroGlow 7s ease-in-out infinite alternate;
}

body.js-ready .review-pill,
body.js-ready .brand-mark {
  animation: softFloat 5.5s ease-in-out infinite;
}

body.js-ready .brand-logo {
  animation: none;
}

.hero-nav .brand {
  opacity: 0;
  transform: translateY(-14px);
  animation: heroNavIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.hero-nav .nav-links {
  opacity: 0;
  transform: translateY(-14px);
  animation: heroNavIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

@keyframes heroGlow {
  from {
    transform: scale(0.98);
    opacity: 0.8;
  }
  to {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes heroNavIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.serif {
  font-family: inherit;
}

.accent-text {
  color: #e6bb7c;
}

.site-topbar {
  display: none;
}

.site-topbar .container,
.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-topbar .container {
  justify-content: space-between;
  min-height: 42px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topbar-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.hero {
  position: relative;
  color: #fff;
  min-height: 860px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 42%);
  pointer-events: none;
}

.hero-nav,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-nav {
  padding: 26px 0;
  z-index: 5;
  pointer-events: auto;
}

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(8, 8, 8, 0.85)),
              linear-gradient(135deg, rgba(230, 187, 124, 0.04), transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.sticky-nav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Products catalog: keep category/search toolbar sticky, not the duplicate top nav */
.page-products-catalog .sticky-nav {
  display: none;
}

.sticky-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), calc(100% - 32px));
  max-width: var(--container);
  min-height: 72px;
  padding: 0;
}

.sticky-nav .brand {
  color: #fff;
}

.sticky-nav .brand-mark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.sticky-nav .nav-links {
  color: rgba(255, 255, 255, 0.9);
}

.sticky-nav .button-primary {
  background: #fff;
  color: #08111f;
}

.hero-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container), calc(100% - 32px));
  max-width: var(--container);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  font-size: 0.96rem;
  font-weight: 700;
}

.brand-title {
  display: none;
}

.brand-subtitle {
  display: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-width: 180px;
  display: block;
}

.sticky-nav .brand-logo {
  max-width: 150px;
}

.site-footer .brand-logo {
  max-width: 260px;
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.brand-subtitle {
  margin: 4px 0 0;
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #cfdae8;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  position: relative;
  z-index: 6;
  pointer-events: auto;
}

.nav-links .button {
  margin-left: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
}

.nav-links a {
  pointer-events: auto;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  backdrop-filter: blur(10px);
  z-index: 7;
}

.mobile-menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(3, 8, 17, 0.52);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 15, 14, 0.98), rgba(17, 15, 14, 0.96));
  border-left: none;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 88px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__close {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__link.button {
  margin-top: 8px;
  justify-content: center;
}

body.mobile-menu-open {
  overflow: hidden;
}

.hero-content {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 60px 0 250px;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.review-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.9);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--success);
  font-size: 0.72rem;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}

.hero h1 span {
  color: #e6bb7c;
  font-style: italic;
  font-weight: 600;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.02rem;
  margin: 0 auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.floating-panel {
  position: relative;
  margin-top: -200px;
  margin-bottom: 56px;
  z-index: 2;
}

.floating-panel .container {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: visible;
}

.panel-title {
  text-align: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(17, 32, 51, 0.08);
  border-radius: 20px 20px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px;
  margin: 0;
  border: none;
}

.contact-strip--catalog {
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.63rem;
  color: var(--muted);
  font-weight: 700;
}

.field-box,
.field select,
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(230, 187, 124, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 12px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 12px;
  outline: none;
  font-size: 0.78rem;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #e6bb7c;
  background: rgba(255, 255, 255, 0.12);
}

.field select {
  color-scheme: dark;
}

.field select option {
  background: #1a1a1a;
  color: #fff;
}

.contact-strip .button {
  align-self: end;
  justify-content: center;
}

.field--home-search .home-search-wrap,
.field--home-category .home-category-wrap {
  position: relative;
  width: 100%;
}

#home-product-search {
  box-sizing: border-box;
  width: 100%;
  display: block;
  min-height: 44px;
  padding: 12px 12px;
  border: 1px solid rgba(17, 32, 51, 0.12);
  background: #f7f8fb;
  color: var(--text);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

#home-product-search:hover {
  border-color: rgba(17, 32, 51, 0.2);
}

#home-product-search:focus {
  outline: none;
  border-color: rgba(195, 146, 75, 0.45);
}

#home-product-search::placeholder {
  color: rgba(17, 32, 51, 0.5);
}

.home-category-trigger {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 12px 12px;
  border: 1px solid rgba(17, 32, 51, 0.12);
  background: #f7f8fb;
  color: var(--text);
  border-radius: 12px;
  font-size: 0.78rem;
  font-family: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.home-category-trigger:hover {
  border-color: rgba(17, 32, 51, 0.2);
}

.home-category-trigger[aria-expanded="true"] {
  border-color: rgba(195, 146, 75, 0.45);
}

.home-category-trigger__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-category-trigger__chev {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(17, 32, 51, 0.45);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.home-category-trigger[aria-expanded="true"] .home-category-trigger__chev {
  transform: rotate(180deg);
}

button.home-search-dropdown__item {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.home-search-dropdown__item[aria-selected="true"] {
  background: rgba(195, 146, 75, 0.12);
}

.home-search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  max-height: min(320px, 52vh);
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(17, 32, 51, 0.12);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(17, 32, 51, 0.12);
}

.home-search-dropdown[hidden] {
  display: none !important;
}

.home-search-dropdown__item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s ease;
}

.home-search-dropdown__item:hover,
.home-search-dropdown__item:focus-visible {
  background: rgba(195, 146, 75, 0.1);
  outline: none;
}

.home-search-dropdown__title {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-search-dropdown__cat {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.home-search-dropdown__empty {
  padding: 12px 12px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 24px;
  background: var(--surface-soft);
  border-top: 1px solid rgba(17, 32, 51, 0.08);
  border-radius: 0 0 20px 20px;
  color: #35445a;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.trust-item__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-item__label {
  line-height: 1.25;
}

.section-dark {
  position: relative;
  background: linear-gradient(135deg, #f8f7f6, #fafaf9);
  color: #1a1a1a;
  padding: 112px 0;
  margin-top: 0;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.1), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.06), transparent 50%);
  pointer-events: none;
}

.section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
}

.section-head p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
  font-weight: 300;
}

.section-light .section-head h2 {
  color: var(--text);
}

.section-dark .section-head h2 {
  color: #1a1a1a;
}

.section-dark .section-head p {
  color: rgba(26, 26, 26, 0.65);
}

.section-light .section-head p {
  color: var(--muted);
}

.section-light .section-head a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(195, 146, 75, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.section-light .section-head a:hover {
  border-bottom-color: var(--accent);
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.cards-column {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

.info-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(17, 32, 51, 0.1);
  border-radius: 14px;
  padding: 26px;
  box-shadow: none;
  min-height: 0;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #1a1a1a;
}

.info-card p {
  margin: 0 0 16px;
  color: rgba(26, 26, 26, 0.68);
  font-weight: 300;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.96rem;
}

.info-card li::before {
  content: "•";
  color: var(--accent-soft);
  margin-right: 10px;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(195, 146, 75, 0.42);
}

.spotlight {
  position: relative;
  height: 100%;
  min-height: 0;
}

.cards-column .spotlight {
  overflow: hidden;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.spotlight-glow {
  position: absolute;
  inset: 11% 12%;
  background: radial-gradient(circle, rgba(195, 146, 75, 0.28), transparent 60%);
  filter: blur(18px);
}

.spotlight img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.08);
}

.cards-column .spotlight img {
  display: block;
  border-radius: 0;
  border: none;
  height: 100%;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(17, 32, 51, 0.08);
  border-bottom: 1px solid rgba(17, 32, 51, 0.08);
  background: #f7f2ea;
  color: #556275;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  animation: scroll 28s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.marquee-item::after {
  content: "///";
  margin-left: 28px;
  color: #c7b7a1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-light {
  padding: 112px 0;
  background: #fff;
}

.section-light .eyebrow {
  color: #e6bb7c;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.portfolio-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background: #0a0a0a;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover img {
  transform: scale(1.07);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.85)),
              linear-gradient(135deg, rgba(230, 187, 124, 0.05), transparent 50%);
}

.portfolio-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.portfolio-copy h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
}

.portfolio-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 300;
}

.split-dark {
  background: #110f0e;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.page-about .split-dark {
  background: #110f0e;
  padding: 0;
}

.page-about .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.split-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.12), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.split-dark::after {
  display: none;
}

.split-dark__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 2;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 40px;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: 500px;
}

.split-content h2 {
  color: #ffffff !important;
  margin: 0 0 24px;
}

.split-content .eyebrow {
  color: #e6bb7c;
  display: block;
  margin-bottom: 12px;
}

.split-content,
.split-info {
  color: #ffffff;
}

.split-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: #1a1a1a;
}

.split-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: 500px;
}

.split-info p {
  color: #ffffff !important;
  margin: 0 0 20px;
}

.split-info p {
  margin: 0 0 20px;
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.6;
  font-weight: 300;
}

.split-info p:last-of-type {
  margin-bottom: 32px;
}

.split-info .button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.split-copy {
  display: flex;
  flex-direction: column;
  padding: 80px 70px;
  position: relative;
  z-index: 3;
  justify-content: center;
  align-items: flex-start;
}

.page-about .split-copy {
  background: #110f0e;
  min-height: 500px;
}

.split-copy .eyebrow {
  color: #e6bb7c;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 800;
}

.split-copy h2 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
}

.page-about .split-copy h2 {
  color: #fff;
}

.split-copy p {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
}

.page-about .split-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.split-copy p:last-of-type {
  margin-bottom: 40px;
}

.split-media {
  display: block;
  position: relative;
  background: #000;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 500px;
}

.page-about .split-media {
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  background: #fff;
  color: var(--bg);
}

.button-dark {
  background: var(--bg);
  color: #fff;
}

.button-outline {
  border-color: rgba(230, 187, 124, 0.4);
  color: #e6bb7c;
}

.split-dark .button-primary {
  background: #e6bb7c;
  color: #110f0e;
}

.split-dark .button-primary:hover {
  background: #fff;
}

.process {
  background: #fff;
  padding: 112px 0 104px;
}

.process-top {
  display: grid;
  grid-template-columns: minmax(0, 620px);
  gap: 18px;
  margin-bottom: 52px;
  align-items: start;
}

.process-top .eyebrow {
  color: #e6bb7c;
}

.process-top h2 {
  margin: 12px 0 0;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  color: #151515;
}

.process-top p {
  margin: 0;
  max-width: 560px;
  color: #767676;
  font-weight: 300;
  font-size: 1.02rem;
}

.process-timeline {
  position: relative;
  padding-top: 28px;
}

.timeline-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: #dddddd;
}

.timeline-dots {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #dddddd;
  background: #fff;
  justify-self: start;
}

.timeline-dot.is-active {
  width: 10px;
  height: 10px;
  border: 0;
  background: #131313;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  position: relative;
  padding-top: 58px;
}

.step h4 {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-size: 1.28rem;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: #6f6f6f;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.7;
}

.step-number {
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1;
  color: #dddddd;
  font-weight: 300;
}

.stats {
  padding: 96px 0;
  background: #110f0e;
  color: #fff;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.04), transparent 50%);
  pointer-events: none;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats h3 {
  margin: 0 0 52px;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 30px 20px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  font-size: 3rem;
  font-family: inherit;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #d4a574;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.testimonial {
  max-width: 860px;
  margin: 44px auto 0;
  padding: 28px;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: center;
}

.testimonial-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #eef2f7;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.dark-values {
  position: relative;
  background: linear-gradient(135deg, #f8f7f6, #fafaf9);
  color: #1a1a1a;
  padding: 112px 0;
}

.dark-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.04), transparent 50%);
  pointer-events: none;
}

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

.portrait {
  position: relative;
}

.portrait img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.values-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  font-weight: 800;
  color: #1a1a1a;
}

.values-list {
  display: grid;
  gap: 24px;
}

.value-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.value-mark {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e6bb7c, #d4a574);
  color: #fff;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 700;
}

.value-item h3 {
  margin: 0 0 6px;
  font-weight: 800;
  color: #1a1a1a;
}

.value-item p {
  margin: 0;
  color: rgba(26, 26, 26, 0.68);
  font-weight: 300;
}

/* Home values section variants (Option 1/2/3 preview) */
.dark-values--variants {
  padding-top: 92px;
}

.values-variants-head {
  margin-bottom: 42px;
}

.values-variants-head p {
  color: rgba(26, 26, 26, 0.65);
}

.values-option {
  border: 1px solid rgba(17, 32, 51, 0.1);
  border-radius: 14px;
  padding: 32px;
  background: #fff;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.values-option:hover {
  transform: translateY(-2px);
  border-color: rgba(195, 146, 75, 0.42);
}

.values-option__label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
}

.values-option h3 {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: #1a1a1a;
}

.values-option__split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.values-option__media {
  position: relative;
}

.values-option__media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(17, 32, 51, 0.08);
}

.values-option__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(26, 26, 26, 0.3);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.values-option__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.values-mini-card {
  border: 1px solid rgba(17, 32, 51, 0.1);
  border-radius: 12px;
  padding: 18px;
  background: #f9f9f8;
}

.values-mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: #1a1a1a;
  font-weight: 800;
}

.values-mini-card p {
  margin: 0;
  color: rgba(26, 26, 26, 0.65);
  font-size: 0.9rem;
}


.gallery {
  background: #ffffff;
  color: #1a1a1a;
  padding: 84px 0;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.gallery-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a1a;
}

.gallery-head .eyebrow {
  color: #8b7c6f;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-strip img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  filter: grayscale(0.28);
}

.gallery-mobile-controls {
  display: none;
}

.gallery-slider-window {
  width: 100%;
}

.contact {
  background: #110f0e;
  color: #fff;
  padding: 112px 0 80px;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.04), transparent 50%);
  pointer-events: none;
}

.contact .eyebrow {
  color: #e6bb7c;
}

.contact h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
}

.contact p.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  margin-top: 42px;
  align-items: start;
}

.contact-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
}

.contact-items {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  color: #b1bfd3;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-value {
  margin-top: 6px;
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form .field.full {
  grid-column: 1 / -1;
}

.contact-form-feedback {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}

.contact-form-feedback.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-form-feedback.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-row .captcha-input {
  flex: 1;
  max-width: 180px;
}

.captcha-input.is-wrong {
  border-color: #f87171 !important;
  outline-color: #f87171;
}

.captcha-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #f87171;
  min-height: 1em;
}

.captcha-refresh {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  flex-shrink: 0;
}

.captcha-refresh:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,0.04);
}

.captcha-question {
  font-weight: 600;
  color: var(--accent);
}

.contact-success {
  text-align: center;
  padding: 56px 24px;
  animation: fadeInUp 0.4s ease both;
}

.contact-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-success__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-success__body {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.contact-footer {
  background: #110f0e;
  padding: 80px 0 60px;
  position: relative;
}

.contact-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.04), transparent 50%);
  pointer-events: none;
}

.contact-footer .container {
  position: relative;
  z-index: 1;
}

.contact-footer .container:nth-of-type(2) {
  padding-top: 60px;
  margin-top: 60px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 54px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 26px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer h4 {
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b1bfd3;
  font-weight: 800;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #a8b4c7;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 36;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 14px rgba(37, 211, 102, 0.45),
    0 16px 34px rgba(2, 8, 18, 0.2);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.05);
  box-shadow:
    0 6px 18px rgba(37, 211, 102, 0.5),
    0 18px 40px rgba(2, 8, 18, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.whatsapp-float__icon {
  width: 30px;
  height: 30px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 88px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 10, 18, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(2, 8, 18, 0.24);
  font-size: 1.2rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    background 0.28s ease;
  z-index: 35;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(14, 26, 47, 0.95);
}

.nav-links a[aria-current="page"] {
  color: #fff;
  box-shadow: 0 2px 0 0 var(--accent);
}

.nav-links a.button[aria-current="page"] {
  color: #08111f;
  box-shadow: none;
}

.hero.hero--page {
  min-height: 0;
}

.hero.hero--page .hero-content {
  min-height: 0;
  padding: 36px 0 56px;
  align-items: center;
  justify-content: center;
}

.hero.hero--page .hero-copy--page {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}

.hero.hero--page h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 16px;
}

.hero.hero--page .hero-copy--page p {
  font-size: 0.98rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.shop-page--light {
  background: var(--surface);
  color: var(--text);
}

.page-products {
  background: var(--surface);
  color: var(--text);
}

.page-products .hero.hero--page {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.18), rgba(4, 11, 22, 0.84)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.page-products .hero.hero--page .hero-copy--page p {
  color: rgba(255, 255, 255, 0.82);
}

.page-about .hero.hero--page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.page-about .hero.hero--page h1 {
  color: #fff;
}

.page-contact .hero.hero--page {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.18), rgba(4, 11, 22, 0.84)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.page-contact .hero.hero--page h1 {
  color: #fff;
}

.page-contact .hero.hero--page .hero-copy--page p {
  color: rgba(255, 255, 255, 0.82);
}

.page-error .hero.hero--page {
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.18), rgba(4, 11, 22, 0.84)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.page-error .hero.hero--page h1 {
  color: #e6bb7c;
  font-size: clamp(4rem, 10vw, 8rem);
}

.page-error .hero.hero--page .hero-copy--page p {
  color: rgba(255, 255, 255, 0.82);
}

.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-about .hero.hero--page .hero-copy--page p {
  color: rgba(255, 255, 255, 0.9);
}

.shop-page--light .shop-jump-wrap {
  --shop-jump-sticky-top: 0px;
  position: sticky;
  top: var(--shop-jump-sticky-top);
  z-index: 25;
  width: 100%;
  margin: 0;
  padding: 20px 0 26px;
  box-sizing: border-box;
  background: transparent;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease;
}

.shop-page--light .shop-jump-wrap.is-stuck {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 32, 51, 0.08);
  box-shadow: 0 10px 28px rgba(17, 32, 51, 0.07);
}

.page-products .shop-jump-wrap > .container {
  max-width: var(--container);
  width: min(var(--container), calc(100% - 32px));
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 24px;
  width: 100%;
  min-width: 0;
}

.shop-search-wrap {
  flex: 1 1 240px;
  max-width: 420px;
  min-width: 0;
}

.shop-search {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}

.shop-search__input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 16px;
  font: inherit;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background-color: #fff;
}

.shop-search__input::placeholder {
  color: #8a96a8;
  font-weight: 400;
}

.shop-search__input:focus {
  outline: none;
  border-color: var(--accent);
}

.shop-toolbar__categories {
  flex: 0 1 auto;
  justify-content: flex-end;
  margin-left: auto;
}

.shop-page--light .shop-toolbar .shop-jump {
  justify-content: flex-end;
}

.shop-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  justify-content: flex-start;
}

.shop-page--light .shop-jump {
  justify-content: flex-start;
}

.shop-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.shop-jump a:hover {
  color: var(--accent-soft);
  border-color: rgba(195, 146, 75, 0.35);
  background: rgba(195, 146, 75, 0.08);
}

.shop-page--light .shop-jump a {
  color: var(--muted);
  border-color: var(--line-dark);
  background: #fff;
}

.shop-page--light .shop-jump a:hover {
  color: var(--accent);
  border-color: rgba(195, 146, 75, 0.45);
  background: rgba(195, 146, 75, 0.1);
}

.shop-category-mobile {
  display: none;
  width: 100%;
  min-width: 0;
}

.shop-category-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop-category-select {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 40px;
  padding: 0 16px;
  font: inherit;
  color: var(--text);
  background-color: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  appearance: none;
  -webkit-appearance: none;
}

button.shop-category-select {
  font-family: inherit;
}

.shop-category-select:focus {
  outline: none;
  border-color: var(--accent);
}

.shop-search-trigger {
  display: none;
  flex: 0 0 auto;
  min-width: auto;
  height: 48px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(17, 32, 51, 0.05);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.shop-search-trigger:hover {
  border-color: rgba(195, 146, 75, 0.45);
  background: rgba(195, 146, 75, 0.08);
}

.shop-search-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  box-sizing: border-box;
  pointer-events: none;
}

.shop-search-modal[hidden] {
  display: none !important;
}

.shop-search-modal:not([hidden]) {
  pointer-events: auto;
}

.shop-search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 31, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.shop-search-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(3, 12, 24, 0.28);
  animation: shopModalIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes shopModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.shop-search-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.shop-search-modal__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.shop-search-modal__close {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.shop-search-modal__close:hover {
  background: rgba(195, 146, 75, 0.15);
}

.shop-search-modal__input {
  width: 100%;
  border-radius: 12px !important;
}

body.shop-search-modal-open,
body.shop-category-modal-open {
  overflow: hidden;
}

.shop-category-modal__panel {
  max-height: min(72vh, 520px);
  display: flex;
  flex-direction: column;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.shop-category-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.shop-category-modal__list li {
  margin: 0;
  border-top: 1px solid rgba(17, 32, 51, 0.08);
}

.shop-category-modal__list li:first-child {
  border-top: none;
}

.shop-category-modal__item {
  display: block;
  width: 100%;
  padding: 16px 4px;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.shop-category-modal__item:hover,
.shop-category-modal__item:focus-visible {
  background: rgba(195, 146, 75, 0.1);
  outline: none;
}

@media (max-width: 820px) {
  .shop-toolbar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .shop-search-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .shop-toolbar__mobile-cats {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .shop-category-select {
    min-height: 48px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0 16px;
    border-radius: 999px;
  }

  .shop-search__input {
    min-height: 48px;
    font-size: 0.88rem;
    font-weight: 600;
  }

  .shop-toolbar__categories {
    margin-left: 0;
  }

  .shop-jump-desktop {
    display: none !important;
  }

  .shop-category-mobile {
    display: block;
  }

  .shop-page--light .shop-jump-wrap {
    padding: 16px 0 20px;
  }

  .page-products .shop-section {
    scroll-margin-top: 120px;
  }

  /* Align with home: section titles centered in the container */
  .page-products .shop-section .section-head {
    text-align: center;
    max-width: min(760px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .page-products .shop-section .section-head p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-about .split-grid {
    grid-template-columns: 1fr;
  }

  .split-copy {
    padding: 40px 24px;
  }

  .page-about .split-copy {
    min-height: auto;
    padding: 40px 24px;
  }

  .split-media img {
    min-height: 320px;
  }
}

@media (max-width: 820px) and (min-width: 481px) {
  .shop-search--inline {
    display: block;
    width: 100%;
  }

  .shop-search-trigger {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .shop-search-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .shop-search--inline {
    display: none !important;
  }

  .shop-search-trigger {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    height: 48px;
    padding: 0 16px;
    flex-shrink: 0;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 10px rgba(17, 32, 51, 0.05);
  }

  .shop-toolbar__mobile-cats {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .shop-category-select {
    height: 48px;
    min-height: 48px;
    line-height: 1.2;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    text-align-last: center;
    padding: 0 16px;
  }
}

.shop-section {
  position: relative;
  z-index: 1;
  padding: 72px 0 88px;
  scroll-margin-top: 96px;
}

.shop-page--light .shop-section {
  background: var(--surface);
}

.shop-section + .shop-section {
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-page--light .shop-section + .shop-section {
  border-top-color: var(--line-dark);
}

.page-products .product-card.is-search-hidden {
  display: none !important;
}

.page-products .shop-section--filtered-out {
  display: none;
}

.shop-section .section-head {
  max-width: none;
  width: 100%;
  margin: 0 0 36px;
  text-align: left;
}

.shop-section .section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin: 10px 0 12px;
}

.shop-page--light .shop-section .section-head h2 {
  color: var(--text);
}

.shop-section .section-head p {
  margin: 0;
  max-width: 640px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.shop-page--light .shop-section .section-head p {
  color: var(--muted);
}

.shop-page--light .shop-section .section-head .eyebrow {
  display: inline-block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  box-shadow: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.shop-page--light .product-card {
  background: #fff;
  border: 1px solid rgba(17, 32, 51, 0.1);
  box-shadow: none;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(195, 146, 75, 0.45);
}

.shop-page--light .product-card:hover {
  border-color: rgba(195, 146, 75, 0.42);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.shop-page--light .product-card__media {
  background: #e8ecf2;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 17, 31, 0.35));
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.shop-page--light .product-card__media::after {
  background: linear-gradient(180deg, transparent 55%, rgba(17, 32, 51, 0.06));
  opacity: 0.65;
}

.product-card:hover .product-card__media::after {
  opacity: 0.45;
}

.shop-page--light .product-card:hover .product-card__media::after {
  opacity: 0.5;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__media img {
  transform: scale(1.03);
}

.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.product-card__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 14px;
}

.product-card__body {
  padding: 20px 22px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.product-card__actions {
  padding: 0 22px 22px;
  margin-top: auto;
}

.product-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.shop-page--light .product-card__title {
  color: var(--text);
}

.product-card__desc {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.5;
  flex: 1;
}

.shop-page--light .product-card__desc {
  color: var(--muted);
}

.button-product-order {
  margin-top: 6px;
  align-self: flex-start;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.shop-page--light .button-product-order {
  border: 1px solid rgba(17, 32, 51, 0.12);
  background: #fff;
  color: var(--text);
}

.shop-page--light .button-product-order:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button-product-order:disabled {
  opacity: 1;
  cursor: not-allowed;
}

.button-product-order:not(:disabled):hover {
  background: var(--accent);
  color: #1a1208;
  border-color: transparent;
}

/* Shop cards: must follow rule above — same specificity + source order wins */
.shop-page--light .button-product-order:hover,
.shop-page--light .button-product-order:not(:disabled):hover {
  background: #0b1121;
  color: #fff;
  border-color: #0b1121;
}

.shop-cta {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-page--light .shop-cta {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
  border-top-color: var(--line-dark);
}

.page-products .shop-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-products .shop-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(195, 146, 75, 0.06), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.page-products .shop-cta .container {
  position: relative;
  z-index: 1;
}

.shop-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.shop-cta-inner h2 {
  margin: 12px 0 14px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
}

.shop-page--light .shop-cta-inner h2 {
  color: var(--text);
}

.shop-cta-inner p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

.shop-page--light .shop-cta-inner p {
  color: var(--muted);
}

.page-products .shop-page--light .shop-cta-inner h2 {
  color: #fff;
}

.page-products .shop-page--light .shop-cta-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.page-products .shop-page--light .shop-cta-inner .eyebrow {
  color: var(--accent);
}

.cta-dark {
  background: #110f0e;
  padding: 120px 0;
  position: relative;
}

.cta-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(230, 187, 124, 0.08), transparent 40%),
    radial-gradient(circle at top right, rgba(230, 187, 124, 0.04), transparent 50%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
}

.cta-lead {
  margin: 0 0 40px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-info {
  padding: 40px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(230, 187, 124, 0.15);
}

.cta-info p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
}

.cta-info p:last-of-type {
  margin-bottom: 0;
}

.cta-socials {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 187, 124, 0.2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-dark {
    padding: 80px 0;
  }
}

.shop-page-footer {
  padding: 72px 0 56px;
  background: var(--surface);
  border-top: 1px solid var(--line-dark);
}

.page-products .shop-page-footer {
  padding: 72px 0 56px;
  background: #08111f;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-products .shop-page-footer .site-footer {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.page-products .shop-page-footer .brand,
.page-products .shop-page-footer .brand-title {
  color: #fff;
}

.page-products .shop-page-footer .brand-subtitle {
  color: #cfdae8;
}

.page-products .shop-page-footer .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.page-products .shop-page-footer .site-footer > div:first-child p {
  color: rgba(255, 255, 255, 0.74);
}

.page-products .shop-page-footer .site-footer h4 {
  color: #b1bfd3;
}

.page-products .shop-page-footer .site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.page-products .shop-page-footer .site-footer a:hover {
  color: var(--accent-soft);
}

.page-products .shop-page-footer .site-footer ul li {
  color: rgba(255, 255, 255, 0.78);
}

.page-products .shop-page-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #a8b4c7;
}

/* Product detail pages (generated under product/) */
.page-product-detail .product-detail-page-hero {
  min-height: auto;
}

.page-product-detail .product-detail-page-title {
  margin: 0 0 12px;
}

.page-product-detail .product-detail-lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
}

.page-product-detail .product-detail-article {
  padding: 48px 0 56px;
}

.page-product-detail .product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
}

.page-product-detail .product-detail-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #e8ecf2;
  box-shadow: 0 14px 40px rgba(17, 32, 51, 0.08);
}

.page-product-detail .product-detail-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-product-detail .product-detail-long p {
  margin: 0 0 1.1em;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

.page-product-detail .product-detail-long p:last-child {
  margin-bottom: 0;
}

.page-product-detail .product-detail-actions {
  margin-top: 28px;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.page-product-detail .product-detail-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 40px;
  padding: 10px 22px;
  border: 1px solid rgba(17, 32, 51, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  background: #fff;
  box-shadow: none;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.2s ease;
}

.page-product-detail .product-detail-order-btn:hover {
  transform: translateY(-2px);
  background: #0b1121;
  color: #fff;
  border-color: #0b1121;
}

.page-product-detail .product-detail-order-btn:active {
  transform: translateY(0);
}

.page-product-detail .product-detail-order-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-product-detail .product-detail-band {
  padding: 96px 0 100px;
}

.page-product-detail .product-detail-band .section-head {
  margin-bottom: 0;
  text-align: center;
}

.page-product-detail .product-detail-process {
  padding: 88px 0 96px;
}

.page-product-detail .product-detail-process .process-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px 56px;
  align-items: center;
  margin-bottom: 56px;
  max-width: none;
  text-align: left;
}

.page-product-detail .product-detail-process .process-top > div:first-child {
  text-align: left;
}

.page-product-detail .product-detail-process .process-top .eyebrow {
  display: block;
}

.page-product-detail .product-detail-process .process-top p {
  margin: 0;
  max-width: 480px;
}

.page-product-detail .product-detail-steps {
  margin-top: 0;
}

.page-product-detail .product-detail-process .step {
  padding-top: 8px;
  padding-left: 4px;
  min-height: 0;
}

.page-product-detail .product-detail-process .step-number {
  position: absolute;
  top: -0.12em;
  left: -0.04em;
  margin: 0;
  font-size: clamp(3.75rem, 7.5vw, 5.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(21, 27, 38, 0.07);
  pointer-events: none;
  z-index: 0;
}

.page-product-detail .product-detail-process .step h4,
.page-product-detail .product-detail-process .step p {
  position: relative;
  z-index: 1;
}

.page-product-detail .product-detail-process .step h4 {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .page-product-detail .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-product-detail .product-detail-process .process-top {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
}

@media (max-width: 1080px) {
  .services-layout,
  .values-grid,
  .contact-layout,
  .process-top,
  .split-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-option__split-grid,
  .values-option__cards {
    grid-template-columns: 1fr;
  }

  .timeline-dots {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-copy {
    padding: 64px 24px;
  }

  .split-media {
    min-height: 360px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .sticky-nav {
    top: 0;
  }

  .sticky-nav .container {
    min-height: 62px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .contact-strip--catalog {
    grid-template-columns: 1fr;
  }

  /* Prevent mobile browser auto-zoom on form focus */
  .contact-strip--catalog input,
  .contact-strip--catalog select,
  .home-category-trigger {
    font-size: 16px;
  }

  /* Home only: faster blur/reveal on mobile */
  body:not(.page-products).js-ready .hero-copy,
  body:not(.page-products).js-ready .floating-panel,
  body:not(.page-products).js-ready .section-head,
  body:not(.page-products).js-ready .info-card,
  body:not(.page-products).js-ready .spotlight,
  body:not(.page-products).js-ready .split-copy,
  body:not(.page-products).js-ready .process-top,
  body:not(.page-products).js-ready .step,
  body:not(.page-products).js-ready .stat,
  body:not(.page-products).js-ready .testimonial,
  body:not(.page-products).js-ready .portrait,
  body:not(.page-products).js-ready .values-copy,
  body:not(.page-products).js-ready .value-item,
  body:not(.page-products).js-ready .contact-card,
  body:not(.page-products).js-ready .contact-form,
  body:not(.page-products).js-ready .all-products-cta {
    transition:
      opacity 0.46s ease,
      transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.46s ease;
    filter: blur(3px);
  }

  body:not(.page-products).js-ready .is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .contact-strip,
  .contact-form-grid,
  .stats-grid,
  .portfolio-grid,
  .gallery-strip,
  .steps-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero.hero--page .hero-content {
    padding: 28px 0 44px;
  }

  .gallery-mobile-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    inset: 0;
    pointer-events: none;
    padding: 0 10px;
    z-index: 2;
  }

  .gallery-mobile-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    pointer-events: auto;
  }

  .gallery-mobile-btn:active {
    transform: translateY(1px);
  }

  .gallery-slider-window {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
  }

  .gallery-slider-window .gallery-strip {
    display: flex;
    gap: 0;
    transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .gallery-slider-window .gallery-strip img {
    min-width: 100%;
    height: 230px;
    border-radius: 0;
    filter: grayscale(0.18);
  }

  .process-timeline {
    padding-top: 0;
  }

  .timeline-line,
  .timeline-dots {
    display: none;
  }

  .step {
    padding-top: 0;
    padding-left: 18px;
    border-left: 1px solid #dddddd;
  }

  .trust-row,
  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    min-height: auto;
    padding: 52px 0 160px;
  }

  .floating-panel-wrap {
    margin-top: -90px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body.js-ready .hero-copy,
  body.js-ready .hero-copy--page,
  body.js-ready .hero-nav .brand,
  body.js-ready .hero-nav .nav-links,
  body.js-ready .floating-panel,
  body.js-ready .section-head,
  body.js-ready .info-card,
  body.js-ready .spotlight,
  body.js-ready .product-card,
  body.js-ready .portfolio-card,
  body.js-ready .split-copy,
  body.js-ready .process-top,
  body.js-ready .process-panel,
  body.js-ready .step,
  body.js-ready .stat,
  body.js-ready .testimonial,
  body.js-ready .portrait,
  body.js-ready .values-copy,
  body.js-ready .value-item,
  body.js-ready .contact-card,
  body.js-ready .contact-form,
  body.js-ready .all-products-cta {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
