:root {
  --ink: #171717;
  --ink-2: #242424;
  --gold: #d6ad16;
  --gold-dark: #9f7d00;
  --paper: #ffffff;
  --cream: #f3f1ea;
  --soft: #f7f6f2;
  --muted: #6e6d67;
  --line: #deddd6;
  --line-dark: #393936;
  --success: #176737;
  --danger: #8d2424;
  --max: 1300px;
  --shadow: 0 24px 70px rgba(17, 17, 17, .10);  
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: -.04em;
}

em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}

.page-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Header */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
}

.topbar-inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-note {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-weight: 700;
}

.topbar-note i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(214, 173, 22, .16);
}

.topbar-links {
  display: flex;
  gap: 24px;
}

.topbar-links a {
  opacity: .78;
  transition: .25s;
}

.topbar-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 23, 23, .08);
  transition: box-shadow .25s, background .25s;
}

.site-header.scrolled {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .07);
  background: rgba(255, 255, 255, .98);
}

.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 38px;
}

.brand {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.brand img {
  width: 170px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.site-header nav a {
  position: relative;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .02em;
  padding: 34px 0;
}

.site-header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 24px;
  height: 2px;
  background: var(--gold);
  transition: right .3s ease;
}

.site-header nav a:hover:after,
.site-header nav a.active:after {
  right: 0;
}

.site-header nav a.active {
  color: var(--gold-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--ink);
  color: #fff;
  padding: 13px 16px 13px 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: .3s;
}

.nav-cta b {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: transform .3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-cta:hover b {
  background: #fff;
  transform: rotate(45deg);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .3s;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Shared */
.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-dark);
}

.kicker:before,
.eyebrow:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.kicker.light {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  background: var(--gold);
  color: var(--ink);
  padding: 0 14px 0 22px;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  transition: .3s;
}

.btn b {
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  transition: .3s;
}

.btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.btn:hover b {
  background: var(--gold);
  color: var(--ink);
  transform: translateX(2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
}

.btn-outline b {
  background: var(--gold);
  color: var(--ink);
}

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

.btn-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-small {
  min-height: 44px;
  padding-left: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.text-link span {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

.text-link i {
  font-style: normal;
  transition: .3s;
}

.text-link:hover i {
  transform: translate(4px, -4px);
  color: var(--gold-dark);
}

.light-link {
  color: #fff;
}

.light-link span {
  border-color: #fff;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: 50px;
  line-height: 1.04;
  margin: 16px 0 0;
  max-width: 780px;
}

.section-heading>p {
  max-width: 450px;
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 8px;
}

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

.section-heading.inverted .kicker {
  color: var(--gold);
}

.content,
.lead {
  color: #55544f;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #7a7973;
  font-size: 13px;
  margin-bottom: 28px;
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.empty {
  padding: 70px;
  text-align: center;
  border: 1px dashed #aaa;
  background: var(--soft);
  color: var(--muted);
}

.notice {
  padding: 14px 16px;
  margin: 18px 0;
  border-left: 3px solid;
}

.notice.success {
  background: #e9f8ef;
  color: var(--success);
  border-color: var(--success);
}

.notice.error {
  background: #fdecec;
  color: var(--danger);
  border-color: var(--danger);
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100vh - 130px);
  background: var(--cream);
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .7;
}

.hero-lines:before,
.hero-lines:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(23, 23, 23, .055);
}

.hero-lines:before {
  left: 33.333%;
}

.hero-lines:after {
  right: 33.333%;
}

.home-hero:after {
  content: "";
  position: absolute;
  right: -130px;
  top: 8%;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 50%;
  z-index: -1;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 50px;
  padding: 72px 0 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #64635f;
}

.hero-index span {
  font-weight: 900;
  color: var(--gold-dark);
}

.hero-index i {
  width: 42px;
  height: 1px;
  background: #99988f;
}

.hero-index small {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 750;
}

.hero-copy h1 {
  font-size: clamp(58px, 7.6vw, 110px);
  line-height: .84;
  margin: 0;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero-copy h1 em {
  font-size: .72em;
  text-transform: none;
  color: var(--gold-dark);
  letter-spacing: -.04em;
}

.hero-copy>p {
  font-size: 17px;
  color: #5e5d57;
  max-width: 590px;
  margin: 30px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero-mini-stats {
  display: flex;
  gap: 38px;
  margin-top: 55px;
  padding-top: 25px;
  border-top: 1px solid rgba(23, 23, 23, .15);
  max-width: 610px;
}

.hero-mini-stats>div {
  min-width: 120px;
}

.hero-mini-stats strong {
  font-size: 30px;
  line-height: 1;
  display: block;
  letter-spacing: -.04em;
}

.hero-mini-stats span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #77766f;
  margin-top: 8px;
}

.hero-product {
  position: relative;
  will-change: transform;
}

.product-frame {
  position: relative;
  height: min(660px, 68vh);
  min-height: 500px;
  background: #fff;
  border: 1px solid rgba(23, 23, 23, .15);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-frame:before,
.product-frame:after {
  content: "";
  position: absolute;
  background: var(--ink);
  z-index: 2;
}

.product-frame:before {
  width: 66px;
  height: 4px;
  left: -1px;
  top: -1px;
}

.product-frame:after {
  height: 66px;
  width: 4px;
  right: -1px;
  bottom: -1px;
}

.product-frame img {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 32px 28px rgba(0, 0, 0, .18));
  animation: productFloat 5s ease-in-out infinite;
}

.frame-label,
.frame-code {
  position: absolute;
  z-index: 3;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 850;
}

.frame-label {
  left: 22px;
  bottom: 20px;
}

.frame-code {
  right: 22px;
  top: 20px;
  color: var(--gold-dark);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 50%;
  animation: orbitSpin 16s linear infinite;
}

.orbit-one {
  width: 430px;
  height: 430px;
}

.orbit-two {
  width: 300px;
  height: 300px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 22s;
}

.hero-spec {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #686762;
}

.scroll-cue {
  position: absolute;
  left: 22px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(-90deg);
  transform-origin: left center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.scroll-cue i:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: scrollLine 2s infinite;
}

@keyframes productFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-13px) rotate(0);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollLine {

  50%,
  100% {
    transform: translateX(100%);
  }
}

/* Moving strip */
.motion-strip {
  overflow: hidden;
  background: var(--gold);
  border-block: 1px solid var(--ink);
  padding: 15px 0;
}

.motion-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: marquee 26s linear infinite;
}

.motion-track span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  white-space: nowrap;
}

.motion-track b {
  font-size: 10px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Categories */
.product-range {
  background: #fff;
}

.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-panel {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-width: 0;
  background: #fff;
  transition: .35s;
}

.category-panel>a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
}

.category-panel:hover {
  background: var(--cream);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  z-index: 2;
}

.category-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.category-top i {
  font-style: normal;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  transition: .3s;
}

.category-panel:hover .category-top i {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.category-image {
  height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 10px 0;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .55s cubic-bezier(.2, .7, .2, 1);
}

.category-panel:hover .category-image img {
  transform: scale(1.06) rotate(-1deg);
}

.category-info {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.category-info h3 {
  font-size: 27px;
  margin: 0 0 8px;
}

.category-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.client-stories {
  position: relative;
  margin-top: clamp(56px, 7vw, 92px);
  padding: clamp(28px, 4.5vw, 60px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 173, 22, .20), transparent 24%),
    linear-gradient(135deg, #111 0%, #1e1e1c 100%);
  border: 1px solid #2f2f2c;
  overflow: hidden;
  isolation: isolate;
}

.client-stories:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to right, transparent 20%, #000 100%);
  mask-image: linear-gradient(to right, transparent 20%, #000 100%);
}

.client-stories-intro {
  display: grid;
  grid-template-columns: minmax(190px, .65fr) 1fr minmax(260px, .8fr);
  align-items: end;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.client-stories-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.client-stories-kicker:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.client-stories-intro h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.client-stories-intro h3 em {
  color: var(--gold);
}

.client-stories-intro>p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.7;
}

.client-stories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .025);
}

.featured-testimonial {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.featured-testimonial:after {
  content: "\201C";
  position: absolute;
  top: 22px;
  right: clamp(22px, 3vw, 42px);
  color: rgba(214, 173, 22, .18);
  font-family: Georgia, serif;
  font-size: clamp(76px, 9vw, 132px);
  line-height: 1;
}

.testimonial-rating {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-rating span {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: .24em;
  white-space: nowrap;
}

.testimonial-rating small {
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.featured-testimonial blockquote {
  position: relative;
  z-index: 1;
  margin: clamp(26px, 4vw, 46px) 0 0;
  max-width: 850px;
}

.featured-testimonial blockquote p {
  margin: 0;
  color: #f4f1e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.48;
  letter-spacing: -.025em;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: clamp(30px, 4vw, 48px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.testimonial-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #171717;
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}

.testimonial-author-copy strong,
.testimonial-author-copy span {
  display: block;
}

.testimonial-author-copy strong {
  font-size: 17px;
  letter-spacing: -.01em;
}

.testimonial-author-copy span {
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  letter-spacing: .03em;
}

.verified-client {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  padding: 8px 11px;
  color: #d7d4ca;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.verified-client svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.client-community {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255, 255, 255, .035);
}

.client-community-heading span,
.client-community-heading strong {
  display: block;
}

.client-community-heading span {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.client-community-heading strong {
  max-width: 230px;
  font-size: 18px;
  line-height: 1.35;
}

.client-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.client-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.client-mini-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #171717;
  background: #e8e4d8;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.client-list li:nth-child(2) .client-mini-avatar {
  background: var(--gold);
}

.client-list strong,
.client-list small {
  display: block;
}

.client-list strong {
  font-size: 13px;
}

.client-list small {
  color: rgba(255, 255, 255, .47);
  font-size: 10px;
}

.client-community-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.community-stack {
  display: flex;
  flex: 0 0 auto;
  padding-left: 8px;
}

.community-stack span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  color: #1a1a18;
  background: #eeeae0;
  border: 2px solid #20201e;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 900;
}

.community-stack span:last-child {
  color: #171717;
  background: var(--gold);
}

.client-community-foot p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .client-stories-intro {
    grid-template-columns: 1fr 1.4fr;
  }

  .client-stories-intro>p {
    grid-column: 1 / -1;
    max-width: 620px;
  }

  .client-stories-grid {
    grid-template-columns: 1fr;
  }

  .featured-testimonial {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .client-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-list li {
    padding-right: 12px;
  }
}

@media (max-width: 620px) {
  .client-stories {
    margin-inline: -8px;
    padding: 24px 18px;
  }

  .client-stories-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-stories-intro>p {
    grid-column: auto;
  }

  .featured-testimonial {
    padding: 26px 20px;
  }

  .testimonial-rating {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .testimonial-author {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .verified-client {
    margin-left: 69px;
    margin-top: -10px;
  }

  .client-list {
    grid-template-columns: 1fr;
  }
}

/* Why section */
.engineering-section {
  background: var(--cream);
}

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

.engineering-visual {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.engineering-visual:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 50%;
}

.engineering-visual img {
  position: relative;
  z-index: 2;
  width: 92%;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, .16));
  transition: .6s;
}

.engineering-visual:hover img {
  transform: scale(1.04);
}

.visual-number {
  position: absolute;
  top: 24px;
  left: 26px;
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: rgba(23, 23, 23, .08);
}

.visual-caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.engineering-copy h2 {
  font-size: 50px;
  line-height: 1.02;
  margin: 16px 0 24px;
}

.engineering-copy>p {
  color: var(--muted);
  font-size: 17px;
  max-width: 600px;
}

.feature-rows {
  margin-top: 38px;
  border-top: 1px solid #c8c6bd;
}

.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr 34px;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #c8c6bd;
  transition: .3s;
}

.feature-row>b {
  font-size: 12px;
  color: var(--gold-dark);
}

.feature-row h3 {
  margin: 0 0 4px;
  font-size: 19px;
  letter-spacing: -.02em;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-row>span {
  width: 32px;
  height: 32px;
  border: 1px solid #b6b4ab;
  display: grid;
  place-items: center;
  transition: .3s;
}

.feature-row:hover {
  padding-left: 10px;
}

.feature-row:hover>span {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

/* Products */
.featured-section {
  background: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  min-width: 0;
  transition: .35s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .28);
}

.product-card-media {
  position: relative;
  height: 310px;
  background: #f4f3ef;
  overflow: hidden;
  padding: 20px;
  display: grid;
  place-items: center;
}

.product-card-media>span {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  z-index: 2;
}

.product-card-media>i {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: 0;
  transform: translateY(10px);
  transition: .3s;
  z-index: 3;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: .55s;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .15));
}

.product-card:hover .product-card-media img {
  transform: scale(1.07) rotate(-1deg);
}

.product-card:hover .product-card-media>i {
  opacity: 1;
  transform: none;
}

.product-card-copy {
  padding: 24px;
  flex: 1;
}

.product-card-copy small {
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .12em;
  font-weight: 800;
  font-size: 10px;
}

.product-card-copy h3 {
  font-size: 24px;
  margin: 7px 0 8px;
  color: #fff;
}

.product-card-copy p {
  margin: 0;
  color: #a9a8a3;
  font-size: 14px;
}

.light-grid .product-card,
.light-card {
  background: #fff;
  border-color: var(--line);
}

.light-grid .product-card-copy h3,
.light-card .product-card-copy h3 {
  color: var(--ink);
}

.light-grid .product-card-copy p,
.light-card .product-card-copy p {
  color: var(--muted);
}

.light-grid .product-card:hover,
.light-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr);
  gap: 12px;
  padding: 0 24px 24px;
  margin-top: auto;
}

.product-card-action {
  min-height: 54px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  transition: .28s;
}

.product-card-action b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: 0 0 30px;
  transition: .28s;
}

.product-card-whatsapp {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.product-card-whatsapp b {
  background: var(--ink);
  color: #fff;
}

.product-card-whatsapp:hover {
  background: #cda500;
  border-color: #cda500;
  transform: translateY(-2px);
}

.product-card-whatsapp:hover b {
  transform: rotate(45deg);
}

.product-card-call {
  background: #fff;
  color: var(--ink);
  border: 1px solid #252525;
}

.product-card-call b {
  background: var(--gold);
  color: var(--ink);
}

.product-card-call:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.product-card-call:hover b {
  transform: translateX(3px);
}

.product-card-media,
.product-card-copy {
  cursor: default;
}

.catalogue-section {
  background: #fff;
}

.filters {
  position: relative;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 42px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.filter {
  padding: 10px 17px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: .25s;
}

.filter:hover,
.filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Reach */
.reach-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.reach-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: end;
}

.reach-grid h2 {
  font-size: 50px;
  line-height: 1.02;
  margin: 16px 0 0;
}

.region-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}

.region-list span {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  position: relative;
}

.region-list span:after {
  content: "↗";
  position: absolute;
  right: 4px;
  color: var(--gold-dark);
}

/* Inner page hero */
.modern-page-hero {
  background: var(--cream);
  padding: 100px 0 88px;
  position: relative;
  isolation: isolate;
}

.modern-page-hero:before {
  content: "DORECO";
  position: absolute;
  right: -25px;
  bottom: -54px;
  font-size: clamp(110px, 16vw, 240px);
  font-weight: 950;
  letter-spacing: -.08em;
  color: rgba(23, 23, 23, .035);
  z-index: -1;
  line-height: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
}

.modern-page-hero h1 {
  font-size: 60px;
  line-height: .94;
  margin: 18px 0 0;
  max-width: 900px;
}

.page-hero-note {
  border-left: 1px solid #bdbbb2;
  padding-left: 28px;
  margin-bottom: 10px;
}

.page-hero-note>span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  color: var(--gold-dark);
}

.page-hero-note p {
  font-size: 17px;
  color: #5d5c56;
  margin: 15px 0 0;
  max-width: 430px;
}

/* About */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 560px;
  background: var(--soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.story-visual:after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, .12);
}

.story-visual>span {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 850;
  z-index: 3;
}

.story-visual img {
  position: relative;
  z-index: 2;
  width: 90%;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, .17));
}

.story-copy h2 {
  font-size: 50px;
  line-height: 1.05;
  margin: 16px 0 22px;
}

.story-copy .content {
  font-size: 16px;
  margin-bottom: 28px;
}

.values-section {
  background: var(--ink);
  color: #fff;
}

.values-section .section-heading .kicker {
  color: var(--gold);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.value-grid article {
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: .3s;
}

.value-grid article:hover {
  background: var(--ink-2);
  transform: translateY(-4px);
}

.value-grid b {
  color: var(--gold);
  font-size: 12px;
}

.value-grid h3 {
  font-size: 27px;
  margin: 36px 0 12px;
}

.value-grid p {
  color: #aaa9a4;
  margin: 0;
}

/* Product detail */
.product-page {
  background: #fff;
}

.product-detail-new {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 78px;
  align-items: start;
}

.product-visual-wrap {
  position: sticky;
  top: 125px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.product-visual-head,
.product-visual-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 850;
}

.product-visual-head {
  border-bottom: 1px solid var(--line);
}

.product-visual-foot {
  border-top: 1px solid var(--line);
}

.product-visual {
  height: 550px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-visual:before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(23, 23, 23, .13);
  border-radius: 50%;
}

.product-visual img {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, .18));
  animation: productFloat 5s ease-in-out infinite;
}

.product-watermark {
  position: absolute;
  bottom: -28px;
  left: 0;
  font-size: 94px;
  font-weight: 950;
  color: rgba(23, 23, 23, .045);
  letter-spacing: -.06em;
}

.product-info-new {
  padding-top: 16px;
}

.product-info-new h1 {
  font-size: 60px;
  line-height: .98;
  margin: 16px 0 24px;
}

.product-info-new .lead {
  font-size: 17px;
  max-width: 600px;
}

.product-meta-new {
  margin: 34px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-meta-new>div {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-meta-new small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.product-meta-new strong {
  font-size: 14px;
}

.product-assurance {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #66655f;
  font-size: 13px;
}

/* Contact */
.contact-section {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  box-shadow: var(--shadow);
}

.contact-panel {
  background: var(--ink);
  color: #fff;
  padding: 54px;
}

.contact-panel h2 {
  font-size: 40px;
  line-height: 1.05;
  margin: 18px 0 45px;
}

.contact-method {
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.contact-method small {
  display: block;
  color: #aaa9a5;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  margin-bottom: 6px;
}

.contact-method a {
  font-size: 17px;
  font-weight: 700;
}

.contact-method p {
  margin: 0;
  color: #d3d2ce;
}

.form-panel {
  padding: 54px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.form-panel h2 {
  font-size: 40px;
  margin: 12px 0 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #c7c5bc;
  background: transparent;
  border-radius: 0;
  outline: none;
  transition: .25s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--gold-dark)
}

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

/* Footer */
.footer-cta {
  background: var(--gold);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.footer-cta-inner {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-cta h2 {
  font-size: 50px;
  line-height: 1;
  margin: 12px 0 0;
}

.footer-cta .kicker.light {
  color: var(--ink);
}

.site-footer {
  background: #121212;
  color: #d1d0cb;
  padding: 80px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .65fr .8fr 1.1fr;
  gap: 55px;
}

.footer-logo {
  width: 160px;
  background: #fff;
  padding: 8px;
  margin-bottom: 20px;
}


.footer-about p {
  max-width: 360px;
  color: #a6a59f;
}

.footer-badge {
  display: inline-block;
  border: 1px solid var(--line-dark);
  padding: 8px 11px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
}

.footer-grid h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 8px 0 22px;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: #aaa9a5;
  transition: .25s;
}

.footer-grid a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-contact p {
  color: #aaa9a5;
  margin-top: 0;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7f7e79;
}

.footer-bottom span {
  font-weight: 900;
}

.footer-bottom a {
  font-weight: 900;
}

.scroll-top {
  position: fixed;
  right: 27px;
  bottom: 94px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 119;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.92);
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease, background .25s ease, color .25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-4px) scale(1.03);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(224, 180, 0, .35);
  outline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: transparent;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 120;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
  transition: .3s;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.03);
}

@keyframes pulseRing {
  0% {
    transform: scale(.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Legacy shared compatibility */
.page-hero:not(.modern-page-hero) {
  background: var(--cream);
  padding: 90px 0;
}

.page-hero:not(.modern-page-hero) h1 {
  font-size: clamp(48px, 6vw, 82px);
  margin: 12px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-media {
  height: 300px;
  background: var(--soft);
  padding: 20px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-body {
  padding: 24px;
}

.card h3 {
  font-size: 24px;
  margin: 0 0 8px;
}

.card p {
  color: var(--muted);
}

.link {
  font-weight: 850;
  color: var(--gold-dark);
}

/* Admin */
.admin-body {
  background: #f1f1ee;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: #20201f;
  color: white;
  padding: 25px 18px;
}

.admin-sidebar img {
  background: white;
  border-radius: 0;
  padding: 7px;
  width: 170px;
  margin: 0 auto 30px;
}

.admin-sidebar a {
  display: block;
  padding: 11px 13px;
  margin: 5px 0;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
  background: #363633;
  color: #f2c500;
}

.admin-main {
  padding: 34px;
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

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

.admin-card {
  background: white;
  padding: 22px;
  border: 1px solid #e3e3dd;
}

.admin-card strong {
  font-size: 32px;
  display: block;
}

.table-wrap {
  background: white;
  border: 1px solid #e3e3dd;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 15px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.thumb {
  width: 70px;
  height: 54px;
  object-fit: contain;
  background: #f4f4f1;
}

.actions {
  display: flex;
  gap: 8px;
}

.tag {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  background: #eee;
}

.tag.on {
  background: #e4f7ea;
  color: #176737;
}

.admin-form {
  background: white;
  padding: 25px;
  border: 1px solid #e3e3dd;
  max-width: 850px;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--cream);
}

.login-box {
  width: min(430px, calc(100% - 30px));
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
}

.login-box img {
  width: 190px;
  margin: 0 auto 25px;
}

.login-box .field {
  margin-bottom: 15px;
}

/* Responsive */
@media(max-width:1050px) {
  .nav-wrap {
    gap: 24px;
  }

  .site-header nav {
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

  .home-hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 8.6vw, 90px);
  }

  .category-image {
    height: 250px;
  }

  .engineering-grid,
  .story-grid {
    gap: 50px;
  }

  .product-detail-new {
    gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr .7fr .8fr;
  }

  .footer-contact {
    grid-column: 1/-1;
  }
}

@media(max-width:900px) {
  .container {
    width: min(var(--max), calc(100% - 34px));
  }

  .topbar-links a:first-child {
    display: none;
  }

  .nav-wrap {
    height: 78px;
  }

  .brand img {
    width: 150px;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .site-header nav {
    position: fixed;
    inset: 116px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 28px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .38s cubic-bezier(.2, .7, .2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .09);
  }

  .site-header nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-header nav a:after {
    display: none;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    padding: 70px 0;
  }

  .hero-product {
    max-width: 680px;
    width: 100%;
    margin: auto;
  }

  .product-frame {
    height: 570px;
    min-height: 0;
  }

  .scroll-cue {
    display: none;
  }

  .category-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .engineering-grid,
  .story-grid,
  .page-hero-grid,
  .reach-grid,
  .product-detail-new,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .engineering-visual {
    min-height: 520px;
  }

  .page-hero-note {
    max-width: 600px;
  }

  .product-visual-wrap {
    position: relative;
    top: auto;
  }

  .product-visual {
    height: 500px;
  }

  .product-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading>p {
    max-width: 650px;
  }

  .reach-grid {
    gap: 45px;
  }

  .footer-cta-inner {
    padding: 55px 0;
    min-height: 0;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: auto;
  }

  .admin-sidebar img {
    width: 120px;
    margin: 0 15px 0 0;
  }

  .admin-sidebar a {
    white-space: nowrap;
  }

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

@media(max-width:620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .topbar-note {
    font-size: 9px;
  }

  .topbar-links {
    gap: 10px;
  }

  .topbar-inner {
    height: 34px;
  }

  .site-header nav {
    inset: 112px 0 auto;
  }

  .section {
    padding: 78px 0;
  }

  .home-hero-grid {
    padding: 54px 0 64px;
  }

  .home-hero:after {
    display: none;
  }

  .hero-lines:before {
    left: 50%;
  }

  .hero-lines:after {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(49px, 15vw, 72px);
    line-height: .88;
  }

  .hero-copy>p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-mini-stats {
    gap: 0;
    justify-content: space-between;
  }

  .hero-mini-stats>div {
    min-width: 0;
  }

  .hero-mini-stats strong {
    font-size: 24px;
  }

  .hero-mini-stats span {
    font-size: 8px;
  }

  .product-frame {
    height: 390px;
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 210px;
    height: 210px;
  }

  .hero-spec {
    flex-wrap: wrap;
  }

  .motion-strip {
    padding: 12px 0;
  }

  .section-heading h2,
  .reach-grid h2,
  .engineering-copy h2,
  .story-copy h2 {
    font-size: 30px;
  }

  .category-showcase,
  .product-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .category-image {
    height: 270px;
  }

  .engineering-grid {
    gap: 45px;
  }

  .engineering-visual,
  .story-visual {
    min-height: 410px;
  }

  .engineering-visual:before,
  .story-visual:after {
    width: 300px;
    height: 300px;
  }

  .feature-row {
    grid-template-columns: 34px 1fr 32px;
  }

  .modern-page-hero {
    padding: 72px 0 62px;
  }

  .modern-page-hero h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .modern-page-hero:before {
    bottom: -25px;
  }

  .page-hero-grid {
    gap: 42px;
  }

  .region-list {
    grid-template-columns: 1fr;
  }

  .product-card-media {
    height: 280px;
  }

  .product-visual {
    height: 370px;
  }

  .product-meta-new {
    grid-template-columns: 1fr;
  }

  .product-info-new h1 {
    font-size: 48px;
  }

  .contact-panel,
  .form-panel {
    padding: 34px 24px;
  }

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

  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer {
    padding-top: 60px;
  }

  .admin-main {
    padding: 18px;
  }

  .admin-sidebar {
    padding: 10px;
  }

  .admin-sidebar img {
    display: none;
  }

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

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    ;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   DORECO DESIGN REFRESH — image heroes, continuous marquee,
   category browser and redesigned visual sections
   ========================================================= */

/* Larger brand presence */
.nav-wrap {
  height: 104px;
}


.site-header nav a:after {
  bottom: 29px;
}

/* Home hero with background product image */
.home-hero-v2 {
  min-height: 760px;
  background: linear-gradient(90deg, #f3f1ea 0%, #f3f1ea 48%, rgba(243, 241, 234, .82) 66%, rgba(243, 241, 234, .38) 100%);
  overflow: hidden;
}

.home-hero-v2:after {
  content: "";
  position: absolute;
  inset: 0 0 0 39%;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: var(--hero-image) right 7% center/contain no-repeat;
  mix-blend-mode: multiply;
  opacity: .92;
  z-index: -1;
  filter: saturate(.8) contrast(1.04);
}

/* .home-hero-v2:before {
  content: "";
  position: absolute;
  right: 5%;
  top: 12%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 50%;
  z-index: -1;
} */

.home-hero-grid-v2 {
  grid-template-columns: 2.08fr .92fr;
  min-height: 760px;
  padding: 96px 0;
}

.home-hero-v2 .hero-copy {
  max-width: 760px;
}

.home-hero-v2 .hero-copy h1 {
  font-size: 60px;
  line-height: .91;
  letter-spacing: -1.1px;
  margin-top: 20px;
}

.home-hero-v2 .hero-copy h1 em {
  font-size: 55px;
}

.home-hero-v2 .hero-copy>p {
  max-width: 575px;
}

.hero-side-card {
  align-self: end;
  justify-self: end;
  width: min(390px, 100%);
  padding: 30px;
  background: rgba(23, 23, 23, .9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.hero-side-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 4px;
  background: var(--gold);
}

.hero-side-card>span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 850;
  font-size: 9px;
}

.hero-side-card h2 {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 18px 0 28px;
}

.hero-side-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-side-points small {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #cac9c4;
  font-size: 9px;
}

/* Truly continuous marquee */
.motion-track {
  gap: 0;
  animation: marqueeContinuous 34s linear infinite;
  will-change: transform;
}

.motion-group {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 0 0 auto;
  padding-right: 26px;
}

.motion-strip:hover .motion-track {
  animation-play-state: running;
}

@keyframes marqueeContinuous {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

/* Remove old section/product sequence numbers */
.hero-index,
.visual-number,
.product-card-media>span,
.value-grid article>b {
  display: none !important;
}

.category-top>span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
}

/* Redesigned Why Doreco visual */
.why-showcase {
  position: relative;
  min-height: 620px;
  background: linear-gradient(145deg, #171717, #2a2926);
  border: 1px solid #373632;
  color: #fff;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 30px 65px rgba(0, 0, 0, .14);
}

.why-showcase:before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(214, 173, 22, .28);
  border-radius: 50%;
  right: -120px;
  top: 55px;
}

.why-showcase:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 50%;
  left: -90px;
  bottom: -90px;
}

.why-showcase-head,
.why-showcase-foot {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.why-showcase-head span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 900;
}

.why-showcase-head strong {
  font-size: 11px;
  color: #b8b7b2;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.why-product-stage {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.why-product-main {
  width: 104%;
  max-width: none;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, .45));
  animation: productFloat 5.4s ease-in-out infinite;
}

.why-product-small {
  position: absolute;
  width: 48%;
  right: -3%;
  bottom: 2%;
  background: #f2f1ec;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .32);
  transform: rotate(-4deg);
}

.why-showcase-foot {
  border-top: 1px solid rgba(255, 255, 255, .17);
  padding-top: 18px;
}

.why-showcase-foot span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c6c5bf;
}

.feature-row {
  grid-template-columns: 42px 1fr 34px;
}

.feature-symbol {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--ink);
}

.feature-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #b6b4ab;
  display: grid;
  place-items: center;
  transition: .3s;
}

.feature-row:hover .feature-arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

/* Image based page heroes */
.image-page-hero {
  min-height: 555px;
  padding: 112px 0 96px;
  background: linear-gradient(90deg, #f0eee7 0%, #f0eee7 49%, rgba(240, 238, 231, .86) 67%, rgba(240, 238, 231, .34) 100%);
  overflow: hidden;
  isolation: isolate;
}

.image-page-hero:before {
  content: "";
  position: absolute;
  right: 5%;
  top: 12%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(23, 23, 23, .12);
  border-radius: 50%;
  z-index: -1;
}

.image-page-hero:after {
  content: "";
  position: absolute;
  inset: 0 0 0 39%;
  background: var(--hero-image) right 8% center/contain no-repeat;
  mix-blend-mode: multiply;
  opacity: .9;
  z-index: -2;
  filter: saturate(.75) contrast(1.05);
}

.image-page-hero .page-hero-grid {
  min-height: 345px;
}

.image-page-hero h1 {
  font-size: 60px;
  max-width: 780px;
}

.image-page-hero .page-hero-note {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(9px);
  border: 1px solid rgba(23, 23, 23, .12);
  border-left: 4px solid var(--gold);
  padding: 24px;
  margin: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
}

.image-page-hero .page-hero-note>span {
  color: var(--gold-dark);
}

.image-page-hero .breadcrumbs {
  color: #66645f;
}

/* About — redesigned Gajanan Enterprise visual */
.story-showcase {
  position: relative;
  min-height: 590px;
  background: #ebe9e2;
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-showcase:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 35px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(23, 23, 23, .13);
}

.story-showcase-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.story-showcase-copy span {
  display: inline-flex;
  width: max-content;
  background: var(--gold);
  padding: 7px 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
  font-weight: 900;
}

.story-showcase-copy strong {
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.03em;
}

.story-showcase-images {
  position: relative;
  min-height: 365px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.story-main-image {
  width: 102%;
  max-width: none;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .18));
}

.story-small-image {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 42%;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .14);
  transform: rotate(3deg);
}

.story-showcase-meta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #c9c7bf;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 9px;
  font-weight: 850;
  color: #6c6a64;
}

.value-grid-v2 article {
  position: relative;
  overflow: hidden;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
}

.value-grid-v2 article:hover .value-icon {
  background: var(--gold);
  color: var(--ink);
}

.value-grid-v2 h3 {
  margin-top: 46px;
}

/* Product category browser */
.category-browser-section {
  background: #eef0f2;
  padding: 82px 0;
}

.category-browser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.category-browser-head h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1;
  margin: 13px 0 0;
}

.category-browser-nav {
  display: flex;
  gap: 10px;
}

.category-browser-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid #c7c9cb;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  transition: .25s;
}

.category-browser-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.category-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-slide {
  flex: 0 0 calc((100% - 48px)/4);
  min-width: 245px;
  scroll-snap-align: start;
  transition: .3s;
}

.category-slide-media {
  height: 285px;
  background: #fff;
  border: 1px solid #e2e3e4;
  border-radius: 18px 18px 0 0;
  padding: 25px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: .3s;
}

.category-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .12));
  transition: .45s;
}

.category-slide-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid #e2e3e4;
  border-top: 0;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 800;
  transition: .3s;
}

.category-slide-label b {
  font-size: 18px;
  color: var(--gold-dark);
  transition: .3s;
}

.category-slide:hover {
  transform: translateY(-6px);
}

.category-slide:hover .category-slide-media,
.category-slide:hover .category-slide-label,
.category-slide.active .category-slide-media,
.category-slide.active .category-slide-label {
  border-color: var(--gold);
}

.category-slide:hover img {
  transform: scale(1.07);
}

.category-slide:hover .category-slide-label b {
  transform: translateX(4px);
}

.category-slide.active .category-slide-label {
  background: var(--gold);
  color: var(--ink);
}

.products-list-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.products-list-heading h2 {
  font-size: 50px;
  line-height: 1;
  margin: 13px 0 0;
}

.products-list-heading p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.catalogue-section {
  scroll-margin-top: 125px;
}

/* Product detail refresh */
.product-single-hero h1 {
  max-width: 820px;
}

.product-info-new h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.04;
  margin: 16px 0 24px;
}

/* Contact map */
.contact-address-link {
  display: block;
  color: #d3d2ce !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.65;
}

.contact-address-link:hover {
  color: var(--gold) !important;
}

.map-card {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-card-copy {
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-card-copy h2 {
  font-size: 40px;
  line-height: 1.05;
  margin: 15px 0;
}

.map-card-copy p {
  color: var(--muted);
  margin: 0 0 28px;
}

.map-card-copy .btn {
  width: max-content;
}

.map-frame {
  min-height: 430px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: grayscale(.2) contrast(1.02);
}

.footer-address {
  line-height: 1.65;
}

/* Responsive refresh */
@media(max-width:1050px) {
  .brand img {
    width: 195px;
  }

  .home-hero-grid-v2 {
    grid-template-columns: 1fr .72fr;
  }

  .home-hero-v2:after {
    inset: 0 0 0 45%;
    opacity: .78;
  }

  .category-slide {
    flex-basis: calc((100% - 32px)/3);
  }
}

@media(max-width:900px) {
  .nav-wrap {
    height: 84px;
  }

  .brand img {
    width: 180px;
  }

  .site-header nav a {
    padding: 20px 0;
  }

  .site-header nav {
    inset: 76px 0 auto;
    border-top: 1px solid var(--line);
  }

  .home-hero-v2 {
    min-height: auto;
    background: linear-gradient(180deg, #f3f1ea 0%, #f3f1ea 72%, rgba(243, 241, 234, .6) 100%);
  }

  .home-hero-v2:after {
    inset: 34% -10% 0 18%;
    background-position: right bottom;
    opacity: .35;
  }

  .home-hero-grid-v2 {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 82px 0 70px;
  }

  .hero-side-card {
    justify-self: start;
    margin-top: 35px;
  }

  .image-page-hero:after {
    inset: 20% -10% 0 35%;
    opacity: .36;
  }

  .image-page-hero .page-hero-note {
    max-width: 560px;
  }

  .category-slide {
    flex-basis: calc((100% - 16px)/2);
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .map-card-copy {
    padding: 38px;
  }

  .map-frame {
    min-height: 360px;
  }

  .map-frame iframe {
    min-height: 360px;
  }

  .home-hero-v2 .hero-copy h1,
  .image-page-hero h1 {
    font-size: 50px;
    line-height: 52px;
  }

  .home-hero-v2 .hero-copy h1 em {
    font-size: 45px;
  }

  .section-heading h2,
  .engineering-copy h2,
  .reach-grid h2,
  .footer-cta h2,.story-copy h2,.products-list-heading h2 {
    font-size: 40px;
  }
  .btn-light
  {
    font-size: 10px;
    padding: 12px;
    gap: 15px;
  }
}

@media(max-width:620px) {
  .nav-wrap {
    height: 78px;
  }

  .brand img {
    width: 160px;
  }

  .site-header nav {
    inset: 76px 0 auto;
    border-top: 1px solid var(--line);
  }

  .home-hero-v2 .hero-copy h1 {
    font-size: 40px;
    line-height: 52px;
  }

  .image-page-hero h1 {
    font-size: 40px;
  }

  .home-hero-v2 .hero-copy h1 em {
    font-size: 45px;
  }

  .home-hero-v2:after {
    inset: 45% -20% 0 5%;
    opacity: .28;
  }

  /* .home-hero-v2:before {
    width: 300px;
    height: 300px;
    right: -80px;
    top: 42%;
  } */

  .hero-side-card {
    width: 100%;
    padding: 24px;
  }

  .hero-side-card h2 {
    font-size: 23px;
  }

  .hero-mini-stats {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-mini-stats>div {
    min-width: 92px;
  }

  .motion-group {
    gap: 18px;
    padding-right: 18px;
  }

  .motion-track span {
    font-size: 11px;
  }

  .why-showcase {
    min-height: 480px;
    padding: 22px;
  }

  .why-product-stage {
    min-height: 300px;
  }

  .why-product-small {
    width: 52%;
  }

  .why-showcase-foot {
    flex-wrap: wrap;
  }

  .image-page-hero {
    min-height: 470px;
    padding: 78px 0 68px;
  }

  .image-page-hero:after {
    inset: 28% -28% 0 12%;
    opacity: .28;
  }

  .image-page-hero:before {
    width: 280px;
    height: 280px;
    right: -70px;
    top: 35%;
  }

  .image-page-hero h1 {
    font-size: 40px;
  }

  .story-showcase {
    min-height: 480px;
    padding: 22px;
  }

  .story-showcase-images {
    min-height: 290px;
  }

  .story-showcase-copy strong {
    font-size: 19px;
  }

  .category-browser-section {
    padding: 64px 0;
  }

  .category-browser-head {
    align-items: flex-start;
  }

  .category-browser-nav {
    flex-shrink: 0;
  }

  .category-slide {
    flex-basis: 84%;
    min-width: 260px;
  }

  .category-slide-media {
    height: 255px;
  }

  .products-list-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-list-heading p {
    font-size: 13px;
  }

  .map-card-copy {
    padding: 30px 24px;
  }

  .map-card-copy .btn {
    width: 100%;
  }

  .footer-cta h2,
  .products-list-heading h2,
  .contact-panel h2,
  .form-panel h2,
  .map-card-copy h2 {
    font-size: 30px;
  }
}

@media(max-width:760px) {
  .product-card-actions {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .product-card-action {
    min-height: 52px;
  }
}

@media(min-width:761px) and (max-width:1100px) {
  .product-card-actions {
    grid-template-columns: 1fr;
  }
}

@media(max-width:620px) {
  .scroll-top {
    right: 21px;
    bottom: 86px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}

/* =========================================================
   DORECO TECH HERO — logo-led cinematic slider
   Inspired by premium technology motion, rebuilt for Doreco.
   ========================================================= */
.doreco-tech-hero {
  --tech-gold: #e0b400;
  --tech-gold-soft: rgba(224, 180, 0, .26);
  --tech-ink: #090b0d;
  --tech-panel: #101419;
  position: relative;
  min-height: clamp(690px, calc(100vh - 142px), 860px);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 45%, rgba(224, 180, 0, .13), transparent 24%),
    linear-gradient(115deg, #07090b 0%, #10151a 45%, #151a1f 100%);
}

.tech-hero-bg,
.tech-grid,
.tech-vignette,
.tech-logo-halo,
.tech-logo-mask,
.tech-logo-ghost,
.tech-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-grid {
  opacity: .3;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.25) 82%, transparent);
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.25) 82%, transparent);
  animation: techGridMove 18s linear infinite;
}

.tech-vignette {
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(5,7,9,.98) 0%, rgba(5,7,9,.84) 35%, rgba(5,7,9,.2) 72%, rgba(5,7,9,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25), transparent 24%, transparent 76%, rgba(0,0,0,.58));
}

.tech-logo-halo {
  inset: 6% 0 0 42%;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(224,180,0,.24) 0%, rgba(224,180,0,.07) 28%, transparent 66%);
  filter: blur(8px);
  animation: techHaloPulse 6s ease-in-out infinite;
}

.tech-logo-mask,
.tech-logo-ghost {
  z-index: 2;
  inset: 14% 3% 15% 46%;
  -webkit-mask: var(--hero-logo) center / contain no-repeat;
  mask: var(--hero-logo) center / contain no-repeat;
}

.tech-logo-mask {
  background:
    linear-gradient(105deg,
      rgba(255,255,255,.04) 0%,
      rgba(255,255,255,.22) 28%,
      rgba(224,180,0,.78) 48%,
      rgba(255,255,255,.16) 64%,
      rgba(255,255,255,.025) 100%);
  opacity: .42;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,.65));
  animation: techLogoFloat 7s ease-in-out infinite;
}

.tech-logo-mask:after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(100deg, transparent 36%, rgba(255,255,255,.9) 49%, transparent 62%);
  transform: translateX(-90%) skewX(-16deg);
  animation: techLogoSweep 6.5s ease-in-out infinite;
}

.tech-logo-ghost {
  inset: 8% -8% 5% 58%;
  background: #fff;
  opacity: .035;
  transform: scale(1.35);
  filter: blur(.2px);
  animation: techGhostDrift 13s ease-in-out infinite;
}

.tech-orbits {
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tech-orbits .orbit {
  fill: none;
  stroke: rgba(224,180,0,.35);
  stroke-width: 1.6;
  stroke-dasharray: 10 18 190 34;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  animation: techOrbitFlow 10s linear infinite;
}

.tech-orbits .orbit-b {
  stroke: rgba(255,255,255,.13);
  stroke-width: 1;
  animation-duration: 14s;
  animation-direction: reverse;
}

.tech-orbits .orbit-c {
  stroke: rgba(224,180,0,.2);
  animation-duration: 16s;
}

.tech-orbits .orbit-d {
  stroke: rgba(255,255,255,.09);
  animation-duration: 12s;
  animation-direction: reverse;
}

.tech-orbits .orbit-node {
  fill: #fff;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.95)) drop-shadow(0 0 16px rgba(224,180,0,.8));
  animation: techNodePulse 2.6s ease-in-out infinite;
}

.tech-orbits .node-b { animation-delay: .6s; }
.tech-orbits .node-c { animation-delay: 1.2s; }
.tech-orbits .node-d { animation-delay: 1.8s; }

.tech-label,
.tech-code {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.18);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: techLabelBlink 5s ease-in-out infinite;
}

.tech-label:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  margin-right: 9px;
  vertical-align: middle;
  background: currentColor;
}

.label-one { top: 20%; left: 11%; }
.label-two { top: 67%; left: 7%; animation-delay: 1s; }
.label-three { top: 28%; right: 8%; animation-delay: 2s; }
.label-four { bottom: 16%; right: 18%; animation-delay: 3s; }
.code-one { top: 9%; left: 9%; }
.code-two { top: 54%; right: 5%; animation-delay: 1.4s; }
.code-three { bottom: 8%; left: 46%; animation-delay: 2.6s; }

.tech-hero-shell {
  position: relative;
  z-index: 6;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  padding-top: 90px;
  padding-bottom: 126px;
}

.tech-slider-copy {
  position: relative;
  width: min(790px, 100%);
  min-height: 430px;
  display: grid;
  align-items: center;
}

.tech-slide {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(36px);
  pointer-events: none;
  transition: opacity .7s ease, transform .85s cubic-bezier(.2,.8,.2,1), visibility .7s;
}

.tech-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tech-slide.is-leaving {
  visibility: visible;
  opacity: 0;
  transform: translateY(-28px);
}

.tech-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--tech-gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.tech-kicker:before {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--tech-gold);
  box-shadow: 0 0 14px rgba(224,180,0,.7);
}

.tech-slide h1 {
  margin: 25px 0 22px;
  max-width: 850px;
  font-size: clamp(52px, 5.15vw, 88px);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: none;
}

.tech-slide h1 em {
  display: inline-block;
  color: var(--tech-gold);
  font-style: normal;
  font-weight: inherit;
  text-shadow: 0 0 42px rgba(224,180,0,.14);
}

.tech-slide p {
  max-width: 670px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.72;
}

.tech-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.tech-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 9px 0 24px;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.tech-btn b {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  font-size: 15px;
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease;
}

.tech-btn-primary {
  color: #121212;
  border-color: var(--tech-gold);
  background: var(--tech-gold);
}

.tech-btn-primary b {
  color: #fff;
  background: #151515;
}

.tech-btn:hover {
  transform: translateY(-3px);
  border-color: var(--tech-gold);
}

.tech-btn:hover b {
  transform: rotate(45deg);
  background: var(--tech-gold);
  color: #111;
}

.tech-btn-primary:hover b {
  color: #fff;
  background: #111;
}

.tech-brand-panel {
  position: relative;
  justify-self: end;
  width: min(34vw, 510px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: .88;
}

.tech-brand-ring {
  position: absolute;
  border-radius: 50%;
}

.tech-brand-ring.ring-outer {
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-left-color: var(--tech-gold);
  border-right-color: rgba(224,180,0,.5);
  animation: techSpin 25s linear infinite;
}

.tech-brand-ring.ring-outer:before,
.tech-brand-ring.ring-outer:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tech-gold);
  box-shadow: 0 0 18px rgba(224,180,0,.9);
}

.tech-brand-ring.ring-outer:before { left: 16%; top: 11%; }
.tech-brand-ring.ring-outer:after { right: 9%; bottom: 22%; }

.tech-brand-ring.ring-inner {
  inset: 12%;
  border: 1px dashed rgba(224,180,0,.34);
  animation: techSpinReverse 18s linear infinite;
}

.tech-brand-core {
  width: 62%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(circle, rgba(224,180,0,.12), rgba(255,255,255,.015) 62%);
  box-shadow: inset 0 0 60px rgba(224,180,0,.06), 0 0 70px rgba(0,0,0,.35);
  animation: techCoreFloat 6s ease-in-out infinite;
}

.tech-brand-core span,
.tech-brand-core small {
  color: rgba(255,255,255,.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
}

.tech-brand-core strong {
  color: #fff;
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: .08em;
  text-shadow: 0 0 26px rgba(224,180,0,.25);
}

.tech-hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: grid;
  grid-template-columns: auto minmax(160px, 330px) 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.tech-slide-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
}

.tech-current { color: var(--tech-gold); }
.tech-total { color: rgba(255,255,255,.38); }
.tech-separator { width: 28px; height: 1px; background: rgba(255,255,255,.28); }

.tech-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.tech-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: var(--tech-gold);
  box-shadow: 0 0 12px rgba(224,180,0,.8);
  animation: techSlideProgress 6.5s linear forwards;
}

.tech-progress span.is-reset {
  animation: none;
  transform: scaleX(0);
}

.tech-benefits {
  justify-self: end;
  display: flex;
  gap: clamp(18px, 2.6vw, 42px);
}

.tech-benefits span {
  color: rgba(255,255,255,.5);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tech-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(9,11,13,.52);
  backdrop-filter: blur(8px);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.tech-prev { left: 18px; }
.tech-next { right: 18px; }

.tech-arrow:hover {
  color: #111;
  border-color: var(--tech-gold);
  background: var(--tech-gold);
  transform: translateY(-50%) scale(1.07);
}

@keyframes techGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

@keyframes techHaloPulse {
  0%,100% { opacity: .55; transform: scale(.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes techLogoFloat {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(0,-15px,0) scale(1.015); }
}

@keyframes techLogoSweep {
  0%,20% { transform: translateX(-90%) skewX(-16deg); opacity: 0; }
  42% { opacity: .9; }
  64%,100% { transform: translateX(90%) skewX(-16deg); opacity: 0; }
}

@keyframes techGhostDrift {
  0%,100% { transform: scale(1.35) translate3d(0,0,0); }
  50% { transform: scale(1.38) translate3d(-24px,12px,0); }
}

@keyframes techOrbitFlow {
  to { stroke-dashoffset: -252; }
}

@keyframes techNodePulse {
  0%,100% { opacity: .35; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.45); }
}

@keyframes techLabelBlink {
  0%,100% { opacity: .3; }
  50% { opacity: .85; }
}

@keyframes techSpin { to { transform: rotate(360deg); } }
@keyframes techSpinReverse { to { transform: rotate(-360deg); } }

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

@keyframes techSlideProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1180px) {
  .tech-hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, .65fr);
    padding-left: 50px;
    padding-right: 50px;
  }

  .tech-brand-panel { width: min(33vw, 420px); }
  .tech-benefits span:last-child { display: none; }
}

@media (max-width: 900px) {
  .doreco-tech-hero {
    min-height: 790px;
  }

  .tech-vignette {
    background:
      linear-gradient(180deg, rgba(5,7,9,.96) 0%, rgba(5,7,9,.75) 56%, rgba(5,7,9,.9) 100%);
  }

  .tech-logo-mask,
  .tech-logo-ghost {
    inset: 42% 5% 12% 24%;
  }

  .tech-logo-mask { opacity: .3; }
  .tech-logo-ghost { inset: 47% -18% 0 40%; }
  .tech-logo-halo { inset: 35% 0 0 10%; }

  .tech-hero-shell {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 76px 28px 125px;
  }

  .tech-slider-copy {
    min-height: 445px;
  }

  .tech-brand-panel {
    position: absolute;
    right: 28px;
    bottom: 110px;
    width: 230px;
    opacity: .5;
  }

  .tech-slide h1 {
    font-size: clamp(45px, 8vw, 68px);
  }

  .tech-slide p { max-width: 590px; }

  .tech-hero-footer {
    left: 28px;
    right: 28px;
    grid-template-columns: auto minmax(120px, 1fr);
  }

  .tech-benefits { display: none; }
  .tech-arrow { top: auto; bottom: 28px; }
  .tech-prev { left: auto; right: 84px; }
  .tech-next { right: 28px; }
}

@media (max-width: 620px) {
  .doreco-tech-hero {
    min-height: 760px;
  }

  .tech-hero-shell {
    padding: 62px 20px 116px;
  }

  .tech-slider-copy { min-height: 470px; }
  .tech-kicker { font-size: 8px; letter-spacing: .17em; }
  .tech-kicker:before { width: 28px; }

  .tech-slide h1 {
    margin-top: 20px;
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.02;
  }

  .tech-slide p {
    font-size: 14px;
    line-height: 1.65;
  }

  .tech-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 330px);
  }

  .tech-btn { width: 100%; }
  .tech-brand-panel { width: 170px; right: -22px; bottom: 114px; opacity: .35; }
  .tech-brand-core span,
  .tech-brand-core small { display: none; }
  .tech-hero-footer { left: 20px; right: 130px; bottom: 38px; gap: 14px; }
  .tech-arrow { width: 42px; height: 42px; bottom: 22px; }
  .tech-prev { right: 68px; }
  .tech-next { right: 18px; }
  .tech-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tech-grid,
  .tech-logo-halo,
  .tech-logo-mask,
  .tech-logo-mask:after,
  .tech-logo-ghost,
  .tech-orbits .orbit,
  .tech-orbits .orbit-node,
  .tech-label,
  .tech-code,
  .tech-brand-ring,
  .tech-brand-core,
  .tech-progress span {
    animation: none !important;
  }
}
.tech-orbits .orbit-node { transform-box: fill-box; transform-origin: center; }

/* =========================================================
   DORECO FULL-SCREEN LOGO HERO — static, no slider
   Inspired by a cinematic technology hero, adapted to Doreco.
   ========================================================= */
.doreco-full-logo-hero {
  position: relative;
  min-height: max(680px, calc(100svh - 142px));
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 76% 48%, rgba(225,184,0,.16), transparent 28%),
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.04), transparent 26%),
    linear-gradient(115deg, #090b0d 0%, #101419 46%, #17140b 100%);
  color: #fff;
}

.full-logo-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.full-logo-backdrop:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,11,.95) 0%, rgba(7,9,11,.76) 34%, rgba(7,9,11,.30) 70%, rgba(7,9,11,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.42));
  z-index: 4;
}

.full-logo-grid {
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(900px) rotateX(58deg) translateY(-6%);
  transform-origin: 50% 100%;
  opacity: .55;
  animation: dorecoGridMove 18s linear infinite;
}

.full-screen-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 1600px);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%) scale(.96);
  opacity: .22;
  filter: drop-shadow(0 26px 90px rgba(0,0,0,.42));
  animation: dorecoLogoBreath 8s ease-in-out infinite;
  z-index: 1;
}

.full-logo-shimmer {
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -24%;
  width: 18%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), rgba(225,184,0,.18), transparent);
  filter: blur(8px);
  z-index: 2;
  animation: dorecoLogoShine 8.5s ease-in-out infinite;
}

.full-logo-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .7;
}

.full-logo-glow.glow-left {
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(225,184,0,.16), transparent 70%);
  animation: dorecoGlowDrift 11s ease-in-out infinite;
}

.full-logo-glow.glow-right {
  width: 560px;
  height: 560px;
  right: -160px;
  top: -170px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 68%);
  animation: dorecoGlowDrift 14s ease-in-out infinite reverse;
}

.full-logo-orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.full-orbit {
  fill: none;
  stroke: url(#dorecoOrbitGold);
  stroke-width: 1.35;
  stroke-dasharray: 10 20;
  opacity: .52;
  animation: dorecoOrbitDash 19s linear infinite;
}

.full-orbit.orbit-two {
  opacity: .35;
  animation-duration: 25s;
  animation-direction: reverse;
}

.full-orbit.orbit-three {
  opacity: .25;
  animation-duration: 31s;
}

.full-orbit-dot {
  fill: #e1b800;
}

.full-orbit-dot.dot-two { fill: #fff; }
.full-orbit-dot.dot-three { fill: #d8b84b; }

.full-tech-label {
  position: absolute;
  z-index: 3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .24em;
  color: rgba(255,255,255,.28);
  animation: dorecoLabelPulse 5s ease-in-out infinite;
}

.full-tech-label.label-a { left: 4%; top: 17%; }
.full-tech-label.label-b { right: 5%; top: 24%; animation-delay: -1s; }
.full-tech-label.label-c { left: 8%; bottom: 13%; animation-delay: -2s; }
.full-tech-label.label-d { right: 8%; bottom: 16%; color: rgba(225,184,0,.42); animation-delay: -3s; }

.full-logo-hero-content {
  position: relative;
  z-index: 5;
  padding-top: clamp(86px, 11vh, 140px);
  padding-bottom: clamp(120px, 15vh, 180px);
}

.full-logo-copy {
  margin: 0 auto;
}

.full-logo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #e1b800;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .18em;
  font-size: 11px;
}

.full-logo-kicker:before {
  content: "";
  width: 34px;
  height: 1px;
  background: #e1b800;
}

.full-logo-copy h1 {
  margin: 24px 0 0;
  max-width: 860px;
  font-size: 60px;
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: none;
  color: #f7f7f4;
}

.full-logo-copy h1 em {
  color: #e1b800;
  font-style: normal;
}

.full-logo-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}

.full-logo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.full-logo-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 18px 0 24px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 850;
  border: 1px solid rgba(255,255,255,.24);
  transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
}

.full-logo-btn b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: transform .3s ease;
}

.full-logo-btn:hover {
  transform: translateY(-3px);
}

.full-logo-btn:hover b {
  transform: translate(2px,-2px);
}

.full-logo-btn-gold {
  background: #e1b800;
  color: #111;
  border-color: #e1b800;
}

.full-logo-btn-gold b {
  background: #111;
  color: #fff;
}

.full-logo-btn-outline {
  background: rgba(9,11,13,.28);
  color: #fff;
  backdrop-filter: blur(10px);
}

.full-logo-btn-outline:hover {
  border-color: #e1b800;
  color: #e1b800;
}

.full-logo-hero-bottom {
  position: absolute;
  left: 0;
  bottom: 28px;
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,10,12,.44);
  backdrop-filter: blur(14px);
}

.full-logo-hero-bottom > div {
  min-width: auto;
  flex: 1;
  padding: 18px 22px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.full-logo-hero-bottom > div:last-child {
  border-right: 0;
}

.full-logo-hero-bottom strong,
.full-logo-hero-bottom span {
  display: block;
}

.full-logo-hero-bottom strong {
  font-size: 22px;
  color: #fff;
}

.full-logo-hero-bottom span {
  margin-top: 4px;
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .14em;
}

.full-logo-scroll {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.58);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 8px;
}

.full-logo-scroll i {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  position: relative;
}

.full-logo-scroll i:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 1px;
  height: 16px;
  background: #e1b800;
  animation: dorecoScrollDown 1.8s ease-in-out infinite;
}

@keyframes dorecoGridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 72px, 72px 0; }
}

@keyframes dorecoLogoBreath {
  0%,100% { transform: translate(-50%,-50%) scale(.96); opacity: .18; }
  50% { transform: translate(-50%,-52%) scale(1.01); opacity: .28; }
}

@keyframes dorecoLogoShine {
  0%,15% { transform: translateX(0) skewX(-18deg); opacity: 0; }
  34% { opacity: .85; }
  64% { opacity: .35; }
  82%,100% { transform: translateX(850%) skewX(-18deg); opacity: 0; }
}

@keyframes dorecoGlowDrift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(40px,-24px,0) scale(1.12); }
}

@keyframes dorecoOrbitDash {
  to { stroke-dashoffset: -600; }
}

@keyframes dorecoLabelPulse {
  0%,100% { opacity: .25; }
  50% { opacity: .7; }
}

@keyframes dorecoScrollDown {
  0% { transform: translate(-50%,0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%,14px); opacity: 0; }
}

@media(max-width:1100px) {
  .full-screen-logo {
    width: 112vw;
    left: 57%;
  }

  .full-logo-copy {
    max-width: 680px;
  }

  .full-logo-copy h1 {
    font-size: clamp(50px, 7vw, 78px);
  }
}

@media(max-width:900px) {
  .doreco-full-logo-hero {
    min-height: max(760px, calc(100svh - 116px));
  }

  .full-logo-backdrop:before {
    background: linear-gradient(180deg, rgba(7,9,11,.70), rgba(7,9,11,.84));
  }

  .full-screen-logo {
    width: 128vw;
    top: 40%;
    left: 50%;
    opacity: .18;
  }

  .full-logo-hero-content {
    padding-top: 95px;
    padding-bottom: 190px;
  }

  .full-logo-copy {
    max-width: 620px;
  }

  .full-logo-copy h1 {
    font-size: clamp(48px, 9vw, 68px);
  }

  .full-logo-hero-bottom {
    left: 22px;
    right: 92px;
  }

  .full-logo-hero-bottom > div {
    min-width: 0;
    flex: 1;
  }
}

@media(max-width:620px) {
  .doreco-full-logo-hero {
    min-height: max(760px, calc(100svh - 110px));
  }

  .full-logo-grid {
    background-size: 44px 44px;
  }

  .full-screen-logo {
    width: 155vw;
    top: 31%;
    opacity: .16;
  }

  .full-logo-hero-content {
    padding-top: 75px;
  }

  .full-logo-copy h1 {
    font-size: 44px;
    line-height: 1;
  }

  .full-logo-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .full-logo-actions {
    display: grid;
  }

  .full-logo-btn {
    width: 100%;
  }

  .full-logo-hero-bottom {
    left: 18px;
    right: 18px;
    bottom: 76px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .full-logo-hero-bottom > div {
    min-width: 0;
    flex: 1;
    padding: 12px 6px;
    text-align: center;
    border-right: 0 !important;
  }

  .full-logo-hero-bottom strong {
    font-size: clamp(14px, 5vw, 18px);
  }

  .full-logo-hero-bottom span {
    font-size: 7px;
    letter-spacing: .08em;
  }

  .full-logo-scroll {
    right: 18px;
    bottom: 18px;
  }

  .full-tech-label.label-b,
  .full-tech-label.label-c {
    display: none;
  }
}

@media(prefers-reduced-motion:reduce) {
  .full-logo-grid,
  .full-screen-logo,
  .full-logo-shimmer,
  .full-logo-glow,
  .full-orbit,
  .full-tech-label,
  .full-logo-scroll i:before {
    animation: none !important;
  }
}

/* =========================================================
   WHY DORECO — clean minimal split layout
   ========================================================= */
.why-clean-section {
  background: #f5f3ed;
  overflow: hidden;
}

.why-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: clamp(60px, 7vw, 120px);
}

.why-clean-visual {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-clean-visual:before {
  content: "";
  position: absolute;
  left: 0;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(23, 23, 23, .13);
}

.why-clean-visual:after {
  content: "";
  position: absolute;
  width: min(34vw, 470px);
  height: min(34vw, 470px);
  border-radius: 50%;
  border: 1px solid rgba(221, 179, 0, .28);
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}

.why-clean-product {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  padding: clamp(26px, 4vw, 54px);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(20, 20, 18, .10);
  animation: whyProductFloat 6s ease-in-out infinite;
}

.why-clean-product:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 74px;
  height: 4px;
  background: var(--gold);
}

.why-clean-product img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.why-clean-caption {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 28px;
  padding: 11px 16px;
  background: #171717;
  color: #ffffff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.why-clean-copy {
  max-width: 570px;
}

.why-clean-copy h2 {
  margin: 18px 0 24px;
  font-size:50px;
  line-height: .96;
  letter-spacing: -.055em;
}

.why-clean-copy h2 em {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -.04em;
}

.why-clean-copy > p {
  max-width: 530px;
  margin: 0;
  color: #66635d;
  font-size: 17px;
  line-height: 1.75;
}

.why-clean-points {
  margin-top: 42px;
  border-top: 1px solid rgba(23, 23, 23, .18);
}

.why-clean-point {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) 1.3fr;
  gap: 28px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 23, 23, .18);
}

.why-clean-point h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.why-clean-point p {
  margin: 0;
  color: #6b6963;
  font-size: 14px;
  line-height: 1.6;
}

.why-clean-btn {
  margin-top: 34px;
}

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

@media(max-width: 980px) {
  .why-clean-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .why-clean-visual {
    min-height: 500px;
  }

  .why-clean-copy {
    max-width: 720px;
  }
}

@media(max-width: 620px) {
  .why-clean-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .why-clean-visual {
    min-height: 360px;
  }

  .why-clean-visual:after {
    width: 78vw;
    height: 78vw;
    right: -18%;
  }

  .why-clean-product {
    padding: 20px;
  }

  .why-clean-caption {
    bottom: 8px;
    font-size: 8px;
  }

  .why-clean-copy h2 {
    font-size: 44px;
  }

  .why-clean-point {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media(prefers-reduced-motion: reduce) {
  .why-clean-product {
    animation: none;
  }
}

/* Final simplification requested: no circles, grid or decorative technical graphics */
.why-clean-visual:before,
.why-clean-visual:after {
  display: none;
}

.why-clean-product {
  box-shadow: 0 24px 60px rgba(20, 20, 18, .08);
}

/* Client testimonials */
.customer-reviews {
  margin-top: clamp(52px, 7vw, 88px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.customer-reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.customer-reviews-heading h3 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
}

.customer-reviews-heading h3 em {
  color: var(--gold-dark);
}

.customer-reviews-heading>p {
  width: min(100%, 420px);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.customer-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.customer-review-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  transition: transform .25s ease, box-shadow .25s ease;
}

.customer-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(23, 23, 23, .09);
}

.customer-review-stars {
  color: var(--gold-dark);
  font-size: 14px;
  letter-spacing: .16em;
  white-space: nowrap;
}

.customer-review-card blockquote {
  margin: 24px 0 34px;
  color: #292824;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.65;
}

.customer-review-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.customer-review-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #171717;
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
}

.customer-review-card footer strong,
.customer-review-card footer small {
  display: block;
}

.customer-review-card footer strong {
  font-size: 15px;
}

.customer-review-card footer small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .customer-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-review-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .customer-reviews-heading {
    display: block;
  }

  .customer-reviews-heading>p {
    margin-top: 18px;
  }

  .customer-review-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .customer-review-card,
  .customer-review-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .customer-review-card blockquote {
    font-size: 18px;
  }
}
