@font-face {
  font-family: "Estedad";
  src: url("/assets/fonts/Estedad.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-persian: "Estedad", Tahoma, Arial, sans-serif;
  --ink: #171419;
  --ink-soft: #2c282f;
  --paper: #ffffff;
  --mist: #f2f4f1;
  --stone: #eeece7;
  --plum: #501b6f;
  --gold: #c9973b;
  --gold-light: #e7c47f;
  --green: #124b42;
  --coral: #bf5b49;
  --muted: #6f6a72;
  --line: #d9d6d0;
  --success: #14734d;
  --danger: #aa3131;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-persian);
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

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

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

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: 124px;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 3px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #ffffff;
  transition: background-color 240ms ease, border-color 240ms ease;
}

.home-page .site-header.is-scrolled,
.home-page.menu-open .site-header {
  position: fixed;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(23, 20, 25, 0.96);
}

.navbar {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  direction: ltr;
}

.brand-mark {
  display: grid;
  width: 98px;
  height: 68px;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.brand-mark img {
  width: 84px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.16));
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 3px;
  font-size: 0.55rem;
  font-weight: 600;
  opacity: 0.72;
}

.brand > img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand > span:not(.brand-mark):not(.brand-copy) {
  color: var(--plum);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-links a {
  position: relative;
  padding-block: 12px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-page .nav-cta {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

body:not(.home-page) .nav-cta,
.btn.primary {
  background: var(--plum);
  color: #ffffff;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  height: min(820px, calc(100svh - 58px));
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

.hero-slides,
.hero-slide,
.hero-slide > picture,
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(1.012);
  transition: opacity 850ms ease, transform 1.1s cubic-bezier(0.2, 0.72, 0.2, 1), visibility 850ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: scale(1);
}

.hero-slider[data-transition="fade"] .hero-slide {
  transform: none;
}

.hero-slider[data-transition="slide"] .hero-slide {
  transform: translateX(5%);
}

.hero-slider[data-transition="slide"] .hero-slide.is-active {
  transform: translateX(0);
}

.hero-media {
  object-fit: cover;
  object-position: var(--hero-position, center center);
  transform: scale(1.045);
  transition: transform 9s cubic-bezier(0.2, 0.68, 0.2, 1);
  will-change: transform;
}

.hero-slide.is-active .hero-media {
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(23, 20, 25, 0.34) 0%, rgba(23, 20, 25, 0.03) 46%, rgba(23, 20, 25, 0.68) 100%),
    linear-gradient(90deg, rgba(23, 20, 25, 0.03) 0%, rgba(23, 20, 25, 0.13) 42%, rgba(23, 20, 25, var(--hero-overlay, 0.76)) 100%);
}

.hero-slide.theme-light .hero-shade {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 46%, rgba(255, 255, 255, 0.36)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, var(--hero-overlay, 0.76)) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  padding-top: 62px;
}

.hero-copy {
  width: 57%;
  max-width: 760px;
  padding-bottom: 68px;
}

.hero-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.66);
  direction: ltr;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: right;
}

.hero-kicker span {
  color: var(--gold-light);
  font-weight: 800;
}

.hero-title {
  display: grid;
  max-width: 760px;
  margin: 0;
  font-size: 4.65rem;
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-title em,
.section-heading h2 em,
.signature-copy h2 em,
.solutions-head h2 em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: inherit;
}

.hero-slide.theme-light {
  color: var(--ink);
}

.hero-slide.theme-light .hero-kicker,
.hero-slide.theme-light .hero-lead {
  color: rgba(23, 20, 25, 0.72);
}

.hero-slide.theme-light .text-link {
  border-color: rgba(23, 20, 25, 0.36);
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.07rem;
  line-height: 2;
}

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

.btn-gold {
  min-width: 212px;
  background: var(--gold-light);
  color: var(--ink);
}

.btn-gold:hover {
  background: #ffffff;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link span:last-child {
  transition: transform 180ms ease;
}

.text-link:hover span:last-child {
  transform: translateX(-4px);
}

.hero-footer {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(880px, calc(100% - 64px));
  margin-right: max(32px, calc((100vw - 1280px) / 2));
  margin-left: auto;
}

.hero-footer p {
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.hero-footer p:first-child {
  border-right: 0;
  padding-right: 0;
}

.hero-footer span {
  margin-left: 8px;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 0;
}

.hero-features p {
  margin: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.hero-features p:first-child {
  border-right: 0;
  padding-right: 0;
}

.hero-features span {
  margin-left: 7px;
  color: var(--gold-light);
  font-family: Arial, sans-serif;
}

.hero-controls {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(23, 20, 25, 0.38);
  padding: 5px 7px;
  backdrop-filter: blur(14px);
}

.hero-control,
.hero-pause {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-control:hover,
.hero-pause:hover {
  background: rgba(255, 255, 255, 0.13);
  color: var(--gold-light);
}

.hero-counter {
  display: flex;
  min-width: 56px;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  direction: ltr;
  font-family: Arial, sans-serif;
}

.hero-counter strong {
  color: var(--gold-light);
  font-size: 0.92rem;
}

.hero-counter span,
.hero-counter b {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
  font-weight: 500;
}

.hero-progress {
  position: relative;
  display: block;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 0;
  background: var(--gold-light);
}

.hero-slider.is-timing .hero-progress i {
  animation: hero-progress-fill var(--hero-duration, 8000ms) linear forwards;
}

.hero-slider.is-paused .hero-progress i {
  animation-play-state: paused;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  padding: 0;
  transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.hero-dots button[aria-selected="true"] {
  width: 22px;
  border-radius: 99px;
  background: var(--gold-light);
}

.hero-pause span {
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-slider[data-slide-count="1"] .hero-controls {
  display: none;
}

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 5.5%;
  z-index: 3;
  display: grid;
  width: 54px;
  height: 82px;
  place-items: start center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 0;
}

.scroll-cue span {
  width: 1px;
  height: 28px;
  margin-top: 14px;
  background: var(--gold-light);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
}

.signature.section {
  position: relative;
  padding-top: 28px;
  background: #ffffff;
}

.signature-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 80px;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.section-label span {
  color: var(--plum);
  direction: ltr;
  font-family: Arial, sans-serif;
}

.section-label p {
  position: relative;
  margin: 0;
  padding-top: 22px;
}

.section-label p::before {
  position: absolute;
  top: 9px;
  right: 0;
  width: 46px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.45;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.58);
}

.section-label.light span {
  color: var(--gold-light);
}

.signature-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  gap: 64px;
  align-items: end;
}

.signature-copy h2,
.section-heading h2,
.solutions-head h2,
.process-copy h2,
.index-intro h2,
.quote-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: 3.55rem;
  font-weight: 680;
  line-height: 1.35;
  letter-spacing: 0;
}

.signature-copy h2 em,
.section-heading h2 em,
.solutions-head h2 em {
  color: var(--plum);
}

.signature-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 2.05;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  --value-accent: var(--plum);
  --value-wash: #f6f2f8;
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--line);
  padding: 22px 32px 34px;
  transition: background-color 300ms ease;
}

.value-strip article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--value-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-strip article:last-child {
  border-left: 0;
}

.value-strip article:nth-child(2) {
  --value-accent: #145c4e;
  --value-wash: #edf4f1;
}

.value-strip article:nth-child(3) {
  --value-accent: #274267;
  --value-wash: #eff1f5;
}

.value-card-visual {
  position: relative;
  display: grid;
  width: 100%;
  height: 196px;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 14px;
  transform-origin: center bottom;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card-visual > span {
  position: absolute;
  top: 10px;
  inset-inline-start: 0;
  color: var(--value-accent);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.value-card-visual img {
  width: 184px;
  height: 184px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(36, 24, 39, 0.11));
  animation: audience-float 7s ease-in-out infinite;
}

.value-strip article:nth-child(2) img {
  animation-delay: -2.2s;
}

.value-strip article:nth-child(3) img {
  animation-delay: -4.4s;
}

.value-card h3 {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 1.08rem;
}

.value-card:hover {
  background: var(--value-wash);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover .value-card-visual {
  transform: translateY(-4px) scale(1.025);
}

.value-strip p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 2;
}

.collections {
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 330px;
  gap: 54px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  grid-template-rows: repeat(2, 350px);
  gap: 18px;
}

.collection-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  color: #ffffff;
}

.collection-card-large {
  grid-row: 1 / 3;
}

.collection-card > img,
.collection-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-card > img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.collection-card-large > img {
  object-position: center 45%;
}

.collection-wash {
  background: linear-gradient(180deg, transparent 28%, rgba(17, 16, 19, 0.86) 100%);
  transition: background-color 240ms ease;
}

.collection-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 54px;
  padding: 30px;
}

.collection-content small,
.collection-content strong {
  grid-column: 1;
}

.collection-content small {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.collection-content strong {
  font-size: 1.65rem;
  font-weight: 680;
  line-height: 1.45;
}

.collection-card-large .collection-content strong {
  font-size: 2.15rem;
}

.collection-content i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: end;
  justify-self: end;
  font-size: 1.5rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.collection-card:hover > img {
  transform: scale(1.045);
}

.collection-card:hover .collection-content i {
  transform: translateX(-6px);
}

.occasion-marquee {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  contain: paint;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--plum);
  color: #ffffff;
}

.marquee-track {
  display: flex;
  width: max-content;
  min-height: 112px;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  animation: marquee-move 38s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 1.35rem;
  font-weight: 650;
}

.marquee-track i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--gold-light);
  transform: rotate(45deg);
}

.process {
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 92px;
  align-items: center;
}

.process-copy h2 {
  margin-top: 28px;
  font-size: 4.1rem;
}

.process-tabs {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  min-height: 62px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  text-align: right;
  cursor: pointer;
  transition: color 180ms ease, padding-right 180ms ease;
}

.process-tabs button::after {
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 18px;
  width: 2px;
  background: var(--gold-light);
  content: "";
  transform: scaleY(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-tabs button span {
  color: var(--gold-light);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
}

.process-tabs button[aria-selected="true"],
.process-tabs button:hover {
  color: #ffffff;
  padding-right: 8px;
}

.process-tabs button[aria-selected="true"]::after {
  transform: scaleY(1);
}

.process-panels {
  min-height: 126px;
  padding-top: 26px;
}

.process-panels p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.text-link-light {
  color: #ffffff;
}

.process-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 4px;
  background: #20242b;
}

.process-visual > img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
  transition: opacity 240ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-visual.is-switching > img {
  opacity: 0.18;
  transform: scale(1.035);
}

.visual-index {
  position: absolute;
  top: 26px;
  right: 26px;
  display: grid;
  width: 88px;
  min-height: 100px;
  align-content: center;
  background: var(--gold-light);
  color: var(--ink);
  text-align: center;
}

.visual-index span {
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
}

.visual-index strong {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.25;
}

.visual-notes {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-notes span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(23, 20, 25, 0.64);
  color: #ffffff;
  font-size: 0.68rem;
  backdrop-filter: blur(8px);
}

.solutions {
  background: #ffffff;
  overflow: hidden;
}

.solutions-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 900px);
  gap: 80px;
  margin-bottom: 72px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-grid article {
  --audience-accent: var(--plum);
  --audience-wash: #f5f1f7;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--line);
  padding: 24px 28px 34px;
  transition: background-color 320ms ease;
}

.audience-grid article::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--audience-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-grid article:last-child {
  border-left: 0;
}

.audience-card--hr {
  --audience-accent: #6c2c8c;
  --audience-wash: #f2edf6;
}

.audience-card--marketing {
  --audience-accent: #b75d4e;
  --audience-wash: #f7eeeb;
}

.audience-card--crm {
  --audience-accent: #145c4e;
  --audience-wash: #eaf2ef;
}

.audience-card--management {
  --audience-accent: #274267;
  --audience-wash: #edf0f4;
}

.audience-visual {
  position: relative;
  display: grid;
  width: 100%;
  height: 190px;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 18px;
  transform-origin: center bottom;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-visual > span {
  position: absolute;
  top: 10px;
  inset-inline-start: 0;
  color: var(--audience-accent);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.audience-visual img {
  width: 174px;
  height: 174px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(36, 24, 39, 0.12));
  animation: audience-float 6s ease-in-out infinite;
  will-change: transform;
}

.audience-grid article:nth-child(2) .audience-visual img {
  animation-delay: -1.3s;
}

.audience-grid article:nth-child(3) .audience-visual img {
  animation-delay: -2.7s;
}

.audience-grid article:nth-child(4) .audience-visual img {
  animation-delay: -4.1s;
}

.audience-grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 2;
}

.audience-grid article:hover {
  background: var(--audience-wash);
}

.audience-grid article:hover::before {
  transform: scaleX(1);
}

.audience-grid article:hover .audience-visual {
  transform: translateY(-5px) scale(1.035);
}

@keyframes audience-float {
  0%,
  100% {
    transform: translate3d(0, 2px, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(1deg);
  }
}

.service-index {
  background: var(--green);
  color: #ffffff;
}

.index-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 110px;
  align-items: start;
}

.index-intro {
  position: sticky;
  top: 120px;
}

.index-intro h2 {
  margin-top: 34px;
}

.index-intro > p {
  max-width: 510px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.service-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-links a {
  display: grid;
  grid-template-columns: 44px 92px minmax(0, 1fr) 40px;
  min-height: 120px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 220ms ease, color 180ms ease;
}

.service-number {
  color: var(--gold-light);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
}

.service-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
}

.service-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 13px 12px rgba(0, 0, 0, 0.18));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-links strong {
  font-size: 1.28rem;
  font-weight: 620;
  transition: color 180ms ease, transform 260ms ease;
}

.service-links i {
  font-size: 1.35rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.service-links a:hover {
  background: rgba(255, 255, 255, 0.045);
  color: var(--gold-light);
}

.service-links a:hover i {
  transform: translateX(-6px);
}

.service-links a:hover strong {
  transform: translateX(-5px);
}

.service-links a:hover .service-icon img {
  transform: translateY(-5px) rotate(-2deg) scale(1.05);
}

.quote-section {
  background: var(--stone);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 82px;
  align-items: start;
}

.quote-copy {
  padding-top: 26px;
}

.quote-copy h2 {
  margin-top: 32px;
}

.quote-copy > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--muted);
}

.quote-copy ul {
  display: grid;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.quote-copy li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 86px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 650;
}

.quote-benefit-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
}

.quote-benefit-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 9px 9px rgba(36, 24, 39, 0.1));
}

.quote-benefit-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.quote-benefit-copy small {
  color: var(--plum);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.form-panel {
  border: 1px solid #dedbd4;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(23, 20, 25, 0.08);
  padding: 42px;
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.form-head p {
  margin: 0 0 5px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 800;
}

.form-head h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.45;
  scroll-margin-top: 104px;
}

.form-head > span {
  min-width: 54px;
  color: var(--muted);
  direction: ltr;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  text-align: left;
}

.honeypot {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

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

.field label {
  color: #3e3941;
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d5d1ca;
  border-radius: 3px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(80, 27, 111, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9a959d;
}

.btn-dark {
  background: var(--ink);
  color: #ffffff;
}

.btn-dark:hover {
  background: var(--plum);
}

.form-next {
  width: 100%;
  margin-top: 24px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.back-button {
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0 4px;
  background: transparent;
  cursor: pointer;
}

.form-status {
  min-height: 28px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 750;
}

.form-status.ok {
  color: var(--success);
}

.form-status.err {
  color: var(--danger);
}

.form-status.info {
  color: var(--muted);
}

.faq {
  background: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 110px;
  align-items: start;
}

.faq-intro h2 {
  margin-top: 30px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-symbol {
  display: grid;
  width: 224px;
  height: 224px;
  place-items: center;
  margin: 30px auto 0 0;
}

.faq-symbol img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(36, 24, 39, 0.1));
  animation: audience-float 7.5s ease-in-out infinite -2.5s;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding-inline: 18px;
  transition: background-color 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  background: #f8f6f9;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 26px;
  min-height: 84px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 9px;
  right: 2px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -4px 0 0;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--ink);
  color: #ffffff;
}

.footer-top {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.footer-mark img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.footer-brand strong {
  font-size: 1.35rem;
}

.footer-brand p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.footer-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-weight: 700;
}

.footer-cta span:last-child {
  font-size: 1.45rem;
  transition: transform 180ms ease;
}

.footer-cta:hover span:last-child {
  transform: translateX(-6px);
}

.footer-bottom {
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
}

.mobile-quote {
  display: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide .hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
}

.hero-slide.is-active .hero-copy > * {
  animation: hero-content-in 700ms ease forwards;
}

.hero-slide.is-active .hero-copy > *:nth-child(1) {
  animation-delay: 120ms;
}

.hero-slide.is-active .hero-copy > *:nth-child(2) {
  animation-delay: 210ms;
}

.hero-slide.is-active .hero-copy > *:nth-child(3) {
  animation-delay: 320ms;
}

.hero-slide.is-active .hero-copy > *:nth-child(4) {
  animation-delay: 430ms;
}

.landing-article {
  padding: 82px 0 108px;
}

.landing-article h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: 3.6rem;
  line-height: 1.3;
}

.landing-article h2 {
  margin: 48px 0 12px;
  font-size: 1.9rem;
  line-height: 1.5;
}

.landing-article p,
.landing-article li {
  max-width: 860px;
  color: var(--muted);
}

.landing-article .eyebrow {
  margin: 0 0 12px;
  color: var(--plum);
  font-weight: 800;
}

.btn.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--plum);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 130px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gold-light);
}

.inner-page {
  background: #fbfaf7;
}

.inner-page .site-header {
  color: var(--ink);
}

.nav-links a.active::after {
  width: 100%;
}

.inner-hero {
  padding: 86px 0 56px;
  background:
    linear-gradient(135deg, rgba(80, 27, 111, 0.09), rgba(20, 92, 78, 0.09)),
    #fbfaf7;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
}

.inner-hero h1,
.post-hero h1,
.product-detail h1 {
  max-width: 940px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 1.22;
}

.inner-hero p:not(.eyebrow),
.post-hero p:not(.eyebrow),
.product-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 850;
}

.listing-section {
  padding: 36px 0 108px;
}

.product-grid,
.article-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-card,
.article-card,
.empty-state {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(23, 20, 25, 0.06);
}

.product-card,
.article-card {
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover,
.article-card:hover {
  border-color: rgba(80, 27, 111, 0.28);
  box-shadow: 0 24px 70px rgba(23, 20, 25, 0.1);
  transform: translateY(-4px);
}

.product-image,
.article-image {
  display: block;
  overflow: hidden;
  background: var(--stone);
}

.product-image {
  aspect-ratio: 1 / 1;
}

.article-image {
  aspect-ratio: 16 / 10;
}

.product-image img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.product-card:hover img,
.article-card:hover img {
  transform: scale(1.04);
}

.product-card-body,
.article-card > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.product-card span,
.article-card span {
  color: var(--plum);
  font-size: 0.76rem;
  font-weight: 850;
}

.product-card h2,
.article-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.55;
}

.product-card p,
.article-card p {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.product-meta small {
  border: 1px solid rgba(80, 27, 111, 0.16);
  border-radius: 999px;
  background: rgba(80, 27, 111, 0.06);
  color: var(--ink-soft);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 780;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 38px;
}

.empty-state h2 {
  margin: 0;
  font-size: 1.65rem;
}

.empty-state p {
  max-width: 720px;
  margin: 10px 0 22px;
  color: var(--muted);
}

.product-detail {
  padding: 74px 0 80px;
  background: #ffffff;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.product-detail-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--stone);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-copy {
  display: grid;
  gap: 24px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.product-specs div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  padding: 16px;
}

.product-specs dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.product-specs dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 840;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.post-hero {
  padding: 74px 0 62px;
  background: #ffffff;
}

.post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.post-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.article-body-section {
  padding: 68px 0 106px;
  background: #fbfaf7;
}

.readable {
  max-width: 860px;
}

.readable h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.45;
}

.readable p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

@keyframes hero-breathe {
  from { transform: scale(1.085); }
  to { transform: scale(1.035); }
}

@keyframes hero-progress-fill {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes hero-content-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

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

@media (max-width: 1180px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .navbar {
    min-height: 82px;
  }

  .nav-links {
    gap: 20px;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-title {
    font-size: 3.9rem;
  }

  .hero-copy {
    width: 62%;
  }

  .signature-copy h2,
  .section-heading h2,
  .solutions-head h2,
  .process-copy h2,
  .index-intro h2,
  .quote-copy h2,
  .faq-intro h2 {
    font-size: 3.05rem;
  }

  .signature-grid,
  .solutions-head {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 50px;
  }

  .section-heading {
    grid-template-columns: 150px minmax(0, 1fr) 280px;
    gap: 36px;
  }

  .process-layout,
  .quote-layout {
    gap: 56px;
  }

  .index-layout,
  .faq-layout {
    gap: 70px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 78px;
  }

  .section {
    padding-block: 94px;
  }

  .navbar {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    order: -1;
  }

  .nav-links {
    position: fixed;
    top: 75px;
    right: 0;
    left: 0;
    z-index: 48;
    display: flex;
    max-height: calc(100svh - 75px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(23, 20, 25, 0.99);
    color: #ffffff;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding: 16px 0;
    font-size: 1rem;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-cta {
    display: none;
  }

  .hero-copy {
    width: 73%;
  }

  .hero-features {
    display: none;
  }

  .hero-rail {
    justify-content: flex-start;
  }

  .hero-footer {
    width: calc(100% - 48px);
    margin-right: 24px;
  }

  .signature-grid,
  .signature-copy,
  .section-heading,
  .solutions-head,
  .process-layout,
  .index-layout,
  .quote-layout,
  .inner-hero-grid,
  .product-detail-grid,
  .post-hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .solutions-head,
  .process-layout,
  .index-layout,
  .quote-layout,
  .faq-layout {
    gap: 44px;
  }

  .section-heading {
    gap: 26px;
  }

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

  .value-strip {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .value-strip article {
    display: grid;
    min-height: 212px;
    grid-template-columns: 184px minmax(0, 1fr);
    align-items: center;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 28px;
  }

  .value-strip article:last-child {
    border-bottom: 0;
  }

  .value-strip p {
    max-width: 620px;
  }

  .value-card-visual {
    width: 174px;
    height: 172px;
    margin: 0;
  }

  .value-card-visual img {
    width: 164px;
    height: 164px;
  }

  .collection-grid {
    grid-template-rows: repeat(2, 320px);
  }

  .process-copy {
    max-width: 680px;
  }

  .process-visual {
    min-height: 620px;
  }

  .process-visual > img {
    min-height: 620px;
  }

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

  .audience-grid article:nth-child(2) {
    border-left: 0;
  }

  .audience-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .index-intro {
    position: static;
  }

  .faq-intro {
    position: static;
  }

  .quote-copy {
    max-width: 700px;
    padding-top: 0;
  }

  .footer-top {
    min-height: 190px;
  }

  .product-detail-media,
  .post-hero img {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 76px;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-mark {
    width: 76px;
    height: 54px;
  }

  .brand-mark img {
    width: 67px;
    height: 54px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    top: 71px;
    max-height: calc(100svh - 71px);
  }

  .hero {
    height: calc(100svh - 42px);
    min-height: 540px;
    max-height: 760px;
  }

  .hero-media {
    object-position: var(--hero-mobile-position, center center);
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(23, 20, 25, 0.42) 0%, rgba(23, 20, 25, 0.3) 44%, rgba(23, 20, 25, 0.9) 100%),
      linear-gradient(90deg, rgba(23, 20, 25, 0.08) 0%, rgba(23, 20, 25, 0.42) 46%, rgba(23, 20, 25, var(--hero-overlay, 0.82)) 100%);
  }

  .hero-slide.theme-light .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.22) 44%, rgba(255, 255, 255, 0.74) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.24) 46%, rgba(255, 255, 255, var(--hero-overlay, 0.82)) 100%);
  }

  .hero-inner {
    align-items: end;
    padding-top: 100px;
    padding-bottom: 116px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 0.63rem;
  }

  .hero-title {
    font-size: 2.55rem;
    line-height: 1.23;
  }

  .hero-lead {
    max-width: 520px;
    margin-top: 17px;
    font-size: 0.9rem;
    line-height: 1.9;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 22px;
  }

  .inner-hero {
    padding-block: 58px 38px;
  }

  .inner-hero h1,
  .post-hero h1,
  .product-detail h1 {
    font-size: 2.28rem;
  }

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

  .btn {
    min-height: 50px;
  }

  .btn-gold {
    min-width: 190px;
  }

  .hero-footer {
    display: none;
  }

  .hero-rail {
    bottom: 16px;
  }

  .hero-controls {
    width: 100%;
    justify-content: space-between;
    gap: 5px;
  }

  .hero-progress {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .signature-copy h2,
  .section-heading h2,
  .solutions-head h2,
  .process-copy h2,
  .index-intro h2,
  .quote-copy h2,
  .faq-intro h2 {
    font-size: 2.35rem;
    line-height: 1.42;
  }

  .section-label {
    gap: 14px;
  }

  .value-strip article {
    min-height: 184px;
    grid-template-columns: 116px minmax(0, 1fr);
    column-gap: 16px;
    padding: 18px 16px;
  }

  .value-card-visual {
    width: 116px;
    height: 142px;
  }

  .value-card-visual > span {
    top: 6px;
  }

  .value-card-visual img {
    width: 124px;
    height: 124px;
  }

  .value-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .value-strip p {
    font-size: 0.82rem;
    line-height: 1.85;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .collection-card,
  .collection-card-large {
    grid-row: auto;
    height: 480px;
  }

  .collection-card:nth-child(2),
  .collection-card:nth-child(3) {
    height: 400px;
  }

  .collection-content,
  .collection-card-large .collection-content {
    padding: 24px;
  }

  .collection-content strong,
  .collection-card-large .collection-content strong {
    font-size: 1.55rem;
  }

  .marquee-track {
    min-height: 86px;
    gap: 22px;
  }

  .marquee-track span {
    font-size: 1.05rem;
  }

  .process-copy h2 {
    margin-top: 22px;
  }

  .process-tabs {
    margin-top: 34px;
  }

  .process-visual,
  .process-visual > img {
    min-height: 510px;
  }

  .visual-index {
    top: 16px;
    right: 16px;
    width: 70px;
    min-height: 82px;
  }

  .visual-index strong {
    font-size: 1.6rem;
  }

  .visual-notes {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

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

  .audience-grid article,
  .audience-grid article:nth-child(2) {
    display: grid;
    min-height: 210px;
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 20px;
    align-content: center;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 20px;
  }

  .audience-grid article:last-child {
    border-bottom: 0;
  }

  .audience-visual {
    width: 120px;
    height: 150px;
    grid-row: 1 / 3;
    margin: 0;
  }

  .audience-visual > span {
    top: 8px;
  }

  .audience-visual img {
    width: 132px;
    height: 132px;
  }

  .audience-grid h3 {
    align-self: end;
    margin-bottom: 6px;
  }

  .audience-grid p {
    align-self: start;
    line-height: 1.9;
  }

  .service-links a {
    grid-template-columns: 34px 68px minmax(0, 1fr) 28px;
    min-height: 96px;
  }

  .service-icon {
    width: 64px;
    height: 64px;
  }

  .service-icon img {
    width: 70px;
    height: 70px;
  }

  .service-links strong {
    font-size: 1.08rem;
  }

  .form-panel {
    padding: 26px 20px;
  }

  .quote-copy li {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 78px;
  }

  .quote-benefit-icon,
  .quote-benefit-icon img {
    width: 54px;
    height: 54px;
  }

  .faq-symbol {
    width: 150px;
    height: 150px;
    margin-top: 18px;
  }

  .faq-symbol img {
    width: 148px;
    height: 148px;
  }

  .form-head {
    margin-bottom: 26px;
  }

  .form-head h3 {
    font-size: 1.28rem;
  }

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

  .field.full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .btn,
  .back-button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-top {
    min-height: 250px;
  }

  .footer-bottom {
    min-height: 150px;
    padding-block: 28px 92px;
  }

  .footer-cta {
    width: 100%;
    justify-content: space-between;
  }

  .mobile-quote {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 45;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    background: var(--gold-light);
    color: var(--ink);
    padding: 0 20px;
    box-shadow: 0 12px 34px rgba(23, 20, 25, 0.24);
    font-weight: 800;
    transform: translateY(90px);
    transition: transform 220ms ease;
  }

  .mobile-quote.is-visible {
    transform: translateY(0);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-block: 34px;
  }

  .footer-links {
    justify-content: start;
  }

  .landing-article {
    padding: 58px 0 82px;
  }

  .landing-article h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 24px);
  }

  .brand-copy small {
    display: none;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-lead {
    font-size: 0.84rem;
  }

  .hero-actions {
    gap: 14px;
  }

  .btn-gold {
    width: 100%;
  }

  .value-strip article {
    grid-template-columns: 100px minmax(0, 1fr);
    column-gap: 12px;
    padding-inline: 12px;
  }

  .value-card-visual {
    width: 100px;
  }

  .value-card-visual img {
    width: 108px;
    height: 108px;
  }

  .service-links a {
    grid-template-columns: 28px 58px minmax(0, 1fr) 24px;
  }

  .service-icon,
  .service-icon img {
    width: 58px;
    height: 58px;
  }

  .audience-grid article,
  .audience-grid article:nth-child(2) {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 14px;
    padding-inline: 16px;
  }

  .audience-visual {
    width: 104px;
  }

  .audience-visual img {
    width: 116px;
    height: 116px;
  }

  .signature-copy h2,
  .section-heading h2,
  .solutions-head h2,
  .process-copy h2,
  .index-intro h2,
  .quote-copy h2,
  .faq-intro h2 {
    font-size: 2.05rem;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
