@font-face {
  font-family: 'Dune Rise';
  src: url('images/font/Dune_Rise.ttf') format('truetype'),
    url('images/font/Dune_Rise.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090909;
  --bg-2: #13110d;
  --ink: #f6e7bf;
  --ink-soft: #d6c18d;
  --line: #765f2f;
  --brand: #c79a3f;
  --brand-2: #f0c86a;
  --gold: #f0c86a;
  --card: #121212;
  --white: #090909;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --font-display: "Cormorant Garamond", "Marcellus", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(240, 200, 106, 0.18), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(199, 154, 63, 0.2), transparent 40%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 216, 128, 0.18) 0.55px, transparent 0.55px);
  background-size: 3px 3px;
  z-index: -1;
}

.container {
  width: min(1140px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240, 200, 106, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  margin: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  height: 40px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.1vw, 1.48rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
}

.brand-name span {
  color: var(--gold);
}

.brand-tagline {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.44rem, 0.8vw, 0.52rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(201, 156, 72, 0.6);
  margin-top: 0.35rem;
  text-transform: uppercase;
}

/* Keep old .brand-logo for backward compat */
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand span {
  color: var(--brand-2);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  color: rgba(246, 231, 191, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.main-nav a:hover {
  color: var(--brand);
}

.main-nav a.active {
  color: var(--brand-2);
  text-decoration: none;
}

.lang-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.lang-sep {
  color: rgba(233, 215, 173, 0.62);
  font-size: 0.76rem;
  line-height: 1;
}

.lang-inline a {
  display: inline-block;
  padding: 0;
  border: 0;
  text-decoration: none;
  color: #e9d7ad;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.lang-inline .lang-item {
  display: inline-block;
  color: #e9d7ad;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.lang-inline a:hover {
  color: var(--brand-2);
}

.lang-inline a[aria-current="true"] {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.lang-inline .lang-item.is-current {
  color: var(--brand-2);
  text-decoration: underline;
  text-underline-offset: 0.24rem;
}

.main-nav a.nav-disabled {
  pointer-events: none;
  cursor: default;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font: inherit;
}

.menu-btn .bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-2);
  transform-origin: center;
  transition: transform 0.26s ease, opacity 0.2s ease;
}

.menu-btn .bar+.bar {
  margin-top: 4px;
}

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

.hero {
  padding: clamp(3.6rem, 7vw, 6.1rem) 0 3.4rem;
}

.hero-video {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(0.86) contrast(1.06) brightness(0.86);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.4) 46%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.32));
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(9, 9, 9, 0.92));
  z-index: 0;
  pointer-events: none;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: clamp(1.6rem, 3.2vw, 2.4rem) 0;
}

.hero-video-panel {
  max-width: 620px;
}

.hero-video-eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.68rem, 0.85vw, 0.78rem);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

@media (min-width: 721px) {
  .hero-video {
    min-height: clamp(470px, 66vh, 700px);
  }


  .hero-video-content.container {
    width: min(1320px, calc(100% - 1.4rem));
  }

  .hero-video-content {
    display: flex;
    justify-content: flex-end;
  }

  .hero-video-panel {
    width: min(620px, 52%);
    margin-right: 0;
    transform: translateX(-0.45rem);
  }

}

@media (min-width: 991px) {
  .hero-video-panel {
    width: min(620px, 48%);
  }

  .hero-line {
    white-space: normal;
  }
}

.hero-video-content h1 {
  margin: 0 0 0.95rem;
  text-transform: none;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(2.15rem, 3.55vw, 3.45rem);
  line-height: 1.08;
  max-width: none;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.66);
}

.hero-line {
  display: block;
}

.hero-video-content p {
  margin: 0 0 1rem;
  max-width: 65ch;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: #f4f0e6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.66);
}

.btn-video {
  margin-top: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 106, 0.64);
  background: rgba(12, 12, 12, 0.52);
  color: #f7e8c4;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  font-weight: 700;
  padding: 0.72rem 1.12rem;
  backdrop-filter: blur(10px);
}

.btn-video:hover {
  background: rgba(240, 200, 106, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  font-weight: 700;
  color: var(--brand);
}

h1,
h2,
h3 {
  line-height: 1.1;
}

h1,
h2 {
  font-family: var(--font-display);
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  max-width: 16ch;
}

h1 span {
  color: var(--brand);
}

.lead {
  max-width: 58ch;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.26rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s ease, background-color 0.34s ease, border-color 0.34s ease;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

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

.btn-primary {
  background: linear-gradient(135deg, #d8b05d, #9b7024);
  color: #090909;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0c86a, #b48734);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(20, 20, 20, 0.65);
}

.btn-ghost:hover {
  background: rgba(27, 27, 27, 0.95);
}

.btn-secondary {
  background: var(--brand-2);
  color: var(--white);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.8rem;
  background: rgba(17, 17, 17, 0.85);
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.72rem;
  color: var(--brand);
}

.hero-metrics span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.hero-card {
  background: linear-gradient(145deg, #171717, #101010 70%);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  padding: 1.55rem;
  box-shadow: var(--shadow);
}

.card-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--brand-2);
  font-weight: 700;
}

.hero-card h2 {
  font-size: clamp(1.7rem, 3.3vw, 2.2rem);
  margin-top: 0.55rem;
}

.hero-card ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
}

.hero-card li {
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.96);
  padding: 1rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.strip-item {
  margin: 0;
  border: 1px solid rgba(118, 95, 47, 0.55);
  border-radius: 0.75rem;
  background: rgba(19, 19, 19, 0.92);
  padding: 0.72rem 0.78rem;
}

.strip-icon {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 200, 106, 0.55);
  color: var(--brand-2);
  font-size: 0.88rem;
  margin-bottom: 0.36rem;
}

.strip-item h3 {
  margin: 0 0 0.2rem;
  font-size: 0.93rem;
  color: var(--ink);
}

.strip-item p {
  margin: 0;
  font-size: 0.81rem;
  color: #d5c08f;
}

.mission-strip {
  border-top: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.97);
  padding: 0.52rem 0;
}

.mission-track {
  display: flex;
  gap: 0.58rem;
  overflow-x: auto;
  padding: 0 0.04rem 0.08rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.mission-slide {
  flex: 0 0 min(560px, calc(50% - 0.43rem));
  min-height: 140px;
  margin: 0;
  border: 1px solid rgba(118, 95, 47, 0.58);
  border-radius: 0.78rem;
  background:
    radial-gradient(circle at 8% 8%, rgba(240, 200, 106, 0.1), transparent 38%),
    linear-gradient(160deg, rgba(16, 16, 16, 0.96), rgba(10, 10, 10, 0.92));
  padding: 0.64rem 0.72rem 0.6rem;
  scroll-snap-align: start;
}

.mission-slide .eyebrow {
  margin: 0 0 0.16rem;
}

.mission-slide h2 {
  margin: 0 0 0.22rem;
  font-size: clamp(1.35rem, 2.05vw, 1.85rem);
  line-height: 0.95;
}

.mission-slide p {
  margin: 0;
  color: #d9c693;
  font-size: clamp(0.8rem, 0.92vw, 0.92rem);
  line-height: 1.3;
  max-width: 40ch;
}

.section-pad {
  padding: clamp(3rem, 6.4vw, 5.2rem) 0;
}

.benefits {
  background: rgba(9, 9, 9, 0.98);
}

.benefits.section-pad {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.services {
  background: rgba(9, 9, 9, 0.98);
}

.approach-section {
  background: #0b0b0b;
}

.approach-section.section-pad {
  padding-top: clamp(1.4rem, 2.8vw, 2.1rem);
}

.page-hero {
  padding-bottom: 1.2rem;
}

.services-hero.page-hero {
  padding-bottom: 0;
}

.services-hero .hero-video-panel {
  max-width: min(700px, 56%);
}

.about-hero.page-hero {
  padding-bottom: 0;
}

.contact-hero .hero-video-media {
  object-fit: cover;
}

.page-hero.hero-video {
  min-height: clamp(560px, 78vh, 880px);
}

@media (min-width: 991px) {
  .hero-video:not(.page-hero) {
    min-height: calc(100vh - 78px);
  }

  .page-hero.hero-video {
    min-height: calc(100vh - 78px);
  }
}

.manifesto {
  padding-top: clamp(2rem, 5vw, 3.6rem);
}

.manifesto.section-pad {
  padding: clamp(1.15rem, 2.4vw, 1.9rem) 0 clamp(2rem, 4vw, 3.1rem);
}

.manifesto-shell {
  position: relative;
  border-top: 1px solid rgba(208, 169, 82, 0.52);
  border-bottom: 1px solid rgba(208, 169, 82, 0.38);
  padding: clamp(1.35rem, 2.8vw, 2rem) 0;
  background:
    radial-gradient(circle at 7% 12%, rgba(240, 200, 106, 0.12), transparent 42%),
    radial-gradient(circle at 94% 88%, rgba(240, 200, 106, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.95), rgba(9, 9, 9, 0.86));
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2rem);
  margin-top: 0.9rem;
}

.manifesto-piece {
  position: relative;
  padding: 0.2rem 0.1rem 0.15rem;
}

.manifesto-piece+.manifesto-piece {
  border-left: 1px solid rgba(208, 169, 82, 0.34);
  padding-left: clamp(1.1rem, 2.2vw, 1.7rem);
}

.manifesto-index {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1;
  color: rgba(240, 200, 106, 0.82);
}

.manifesto-piece h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.95;
  color: #f4e7c6;
}

.manifesto-piece p {
  margin: 0;
  max-width: 36ch;
  color: #d9c693;
  font-size: clamp(0.98rem, 1.1vw, 1.14rem);
  line-height: 1.5;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(17, 17, 17, 0.88);
  padding: 1.25rem;
}

.panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.55rem;
}

.panel p {
  margin: 0;
  color: var(--ink-soft);
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4.5vw, 3.55rem);
  max-width: none;
  letter-spacing: 0;
}

.benefits-timeline {
  position: relative;
  --tl-progress: 0;
  margin-top: 2rem;
  display: grid;
  gap: 0.78rem;
}

.benefits-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(240, 200, 106, 0.1), rgba(240, 200, 106, 0.7), rgba(240, 200, 106, 0.1));
  transform: translateX(-50%);
}

.benefits-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(240, 200, 106, 0.95), rgba(240, 200, 106, 0.4));
  transform: translateX(-50%) scaleY(var(--tl-progress));
  transform-origin: top;
  box-shadow: 0 0 14px rgba(240, 200, 106, 0.28);
}

.timeline-item {
  position: relative;
  width: calc(50% - 1.2rem);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand-2);
  border: 2px solid #121212;
  box-shadow: 0 0 0 2px rgba(240, 200, 106, 0.35);
}

.timeline-left {
  justify-self: start;
}

.timeline-left::before {
  right: -1.65rem;
}

.timeline-right {
  justify-self: end;
}

.timeline-right::before {
  left: -1.65rem;
}

.timeline-card {
  border: 1px solid rgba(201, 156, 72, 0.28);
  border-radius: 0;
  padding: 0.82rem 1rem;
  background:
    linear-gradient(160deg, rgba(18, 18, 18, 0.62), rgba(9, 9, 9, 0.72));
  backdrop-filter: blur(8px);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.36s ease, background 0.36s ease;
}

.timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 200, 106, 0.62);
  background: rgba(18, 18, 18, 0.84);
}

.timeline-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.48rem;
  line-height: 1.12;
  color: #f0ddb0;
}

.timeline-card p {
  margin: 0;
  color: #d4c097;
}

.benefits-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201, 156, 72, 0.25);
  border-radius: 0.6rem;
  background: rgba(14, 14, 14, 0.7);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.benefit-pill:hover {
  border-color: rgba(201, 156, 72, 0.6);
  transform: translateY(-2px);
}

.pill-num {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  opacity: 0.5;
  min-width: 1.4rem;
}

.benefit {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 156, 72, 0.46);
  border-radius: 1rem;
  padding: 1.12rem 1rem 1.05rem;
  background:
    radial-gradient(circle at 90% -18%, rgba(240, 200, 106, 0.08), transparent 34%),
    linear-gradient(160deg, rgba(17, 17, 17, 0.96), rgba(10, 10, 10, 0.98));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  transform: translateY(0);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.benefit::before {
  content: none;
}

.benefit::after {
  content: none;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 156, 72, 0.95);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 156, 72, 0.5);
  background: rgba(18, 18, 18, 0.9);
  color: #b68b37;
  line-height: 1;
}

.benefit-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit h3,
.service-list h3,
.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
}

.benefit h3 {
  margin-right: 0;
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 700;
  line-height: 1.04;
  color: var(--brand);
}

.benefit p,
.service-list p,
.step p,
.contact-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.benefit p {
  font-size: 0.95rem;
  color: #d4c097;
  max-width: 36ch;
}

.approach-lux {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.approach-lux-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(201, 156, 72, 0.52);
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 12% -20%, rgba(240, 200, 106, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(17, 17, 17, 0.96), rgba(9, 9, 9, 0.98));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.approach-lux-item:nth-child(2) {
  margin-top: 1.35rem;
}

.approach-lux-item:nth-child(3) {
  margin-top: 0.55rem;
}

.approach-lux-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 200, 106, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.approach-media {
  margin: 0;
  aspect-ratio: 5 / 3.4;
  border-bottom: 1px solid rgba(201, 156, 72, 0.38);
  overflow: hidden;
}

.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.82);
  transform: scale(1.01);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.approach-lux-item:hover .approach-media img {
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.08) brightness(0.9);
}

.approach-body {
  padding: 0.85rem 0.92rem 0.95rem;
}

.approach-body .eyebrow {
  margin: 0 0 0.24rem;
}

.approach-body h3 {
  margin: 0 0 0.34rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.2vw, 2.25rem);
  line-height: 0.95;
  color: #e6bf63;
}

.approach-body p {
  margin: 0;
  color: #d8c391;
  font-size: 0.92rem;
  line-height: 1.4;
}

.services-showcase {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: start;
}

.service-visual {
  position: relative;
  min-height: 430px;
  max-width: 490px;
}

.service-frame-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 68%;
  height: 68%;
  border: 1px solid rgba(224, 180, 85, 0.76);
  box-shadow: 0 0 0 1px rgba(255, 235, 180, 0.18) inset;
}

.service-frame-front {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: calc(100% - 1.25rem);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid rgba(201, 156, 72, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 233, 177, 0.24), transparent 35%),
    linear-gradient(140deg, #2a2113 0%, #5f4a24 45%, #b88b40 100%);
  overflow: hidden;
}

.service-frame-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.04) brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.service-frame-front:hover img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.08) brightness(0.96);
}

.service-text {
  display: grid;
  gap: 1.55rem;
}

.service-block h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  color: #f0ddb0;
}

.service-block p {
  margin: 0 0 0.7rem;
  color: #e3d6b4;
  max-width: 32ch;
}

.service-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.service-block li {
  margin: 0;
  border: 1px solid rgba(240, 200, 106, 0.24);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  color: #e1cfaa;
  font-size: 0.84rem;
  background: rgba(240, 200, 106, 0.055);
}

.service-text .btn {
  justify-self: start;
}

.image-marquee {
  border-top: 1px solid rgba(201, 156, 72, 0.35);
  border-bottom: 1px solid rgba(201, 156, 72, 0.35);
  background: rgba(8, 8, 8, 0.98);
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  margin: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 58s linear infinite;
}

.marquee-item {
  margin: 0;
  width: 340px;
  height: 220px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(201, 156, 72, 0.2);
  background: #111;
  flex: 0 0 auto;
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.04) brightness(0.84);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.35rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.service-copy {
  background: #121212;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.service-image {
  margin: 0 0 0.95rem;
  height: 190px;
  border-radius: 0.88rem;
  border: 1px solid rgba(201, 156, 72, 0.45);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 233, 177, 0.24), transparent 35%),
    linear-gradient(140deg, #2a2113 0%, #5f4a24 45%, #b88b40 100%);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list {
  display: grid;
  gap: 0.75rem;
}

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

.service-list article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(17, 17, 17, 0.86);
}

.service-list span {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 0.2rem;
}

.services-curation {
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(13, 12, 10, 0.98));
}

.services-curation.section-pad {
  padding-top: clamp(2rem, 4vw, 3.2rem);
}

.services-curation-head h2 {
  margin: 0.2rem 0 0;
  max-width: none;
  font-size: clamp(2.25rem, 4.8vw, 3.9rem);
  line-height: 1.06;
}

.services-atelier {
  margin-top: 2.1rem;
  display: grid;
  gap: 0;
}

.atelier-row {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.1rem, 2.8vw, 2rem) 0;
  border-top: 1px solid rgba(201, 156, 72, 0.24);
}

.atelier-row:last-child {
  border-bottom: 1px solid rgba(201, 156, 72, 0.35);
}

.atelier-row-reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.atelier-row-reverse .atelier-copy {
  order: 2;
}

.atelier-row-reverse .atelier-media {
  order: 1;
}

.atelier-kicker {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  color: #f0ddb0;
}

.atelier-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(232, 194, 108, 0.55);
  border-radius: 999px;
  color: #e8c26c;
  background: rgba(10, 10, 10, 0.85);
}

.atelier-icon svg {
  width: 0.92rem;
  height: 0.92rem;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.atelier-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.atelier-copy li {
  position: relative;
  padding-left: 1rem;
  color: #dfceaa;
  font-size: 0.95rem;
  line-height: 1.45;
}

.atelier-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(232, 194, 108, 0.8);
}

.atelier-media {
  margin: 0;
  border: 1px solid rgba(201, 156, 72, 0.34);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9.5;
  background: #0f0f0f;
}

.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05) brightness(0.88);
  transform: scale(1.01);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.atelier-row:hover .atelier-media img {
  transform: scale(1.055);
  filter: saturate(0.96) contrast(1.08) brightness(0.96);
}

.steps-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  border-left: 3px solid var(--brand);
  background: rgba(15, 15, 15, 0.88);
  border-radius: 0.85rem;
  padding: 1rem 1rem 1rem 1.05rem;
}

/* --- Steps progress bar --- */
.steps-progress {
  margin-top: 3rem;
  position: relative;
}

.steps-track {
  position: relative;
  height: 2px;
  background: rgba(201, 156, 72, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.steps-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #A67C30, #E8C664, #C99C48);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(201, 156, 72, 0.4);
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps-progress.is-active .steps-bar {
  width: 100%;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.sp-step {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps-progress.is-active .sp-step[data-step="1"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.steps-progress.is-active .sp-step[data-step="2"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.steps-progress.is-active .sp-step[data-step="3"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

.sp-num {
  display: block;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 0.5rem;
}

.sp-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonials.section-pad {
  padding-top: clamp(1.7rem, 3.2vw, 2.6rem);
  padding-bottom: clamp(2.1rem, 4.2vw, 3.2rem);
}

.testimonials .section-head h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.45rem);
  max-width: none;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.55rem;
}

.founders-divider {
  margin: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.founders-divider::before,
.founders-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 156, 72, 0.1), rgba(201, 156, 72, 0.55), rgba(201, 156, 72, 0.1));
}

.founders-divider span {
  display: inline-block;
  padding: 0.26rem 0.72rem;
  border: 1px solid rgba(201, 156, 72, 0.4);
  border-radius: 999px;
  color: var(--brand-2);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: rgba(12, 12, 12, 0.9);
}

.founders-intro {
  margin: 0.85rem 0 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.founders-intro strong {
  color: var(--brand-2);
}

.founder-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid rgba(201, 156, 72, 0.3);
  border-radius: 0;
  padding: 1.15rem 1.35rem;
  background:
    radial-gradient(circle at 0% 50%, rgba(240, 200, 106, 0.07), transparent 50%),
    linear-gradient(160deg, rgba(15, 15, 15, 0.98), rgba(9, 9, 9, 0.98));
  transition: border-color 0.36s ease, box-shadow 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-card:hover {
  border-color: rgba(224, 180, 85, 0.65);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.founder-portrait {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.founder-frame {
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(224, 180, 85, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 235, 180, 0.1) inset;
  transition: border-color 0.3s ease;
}

.founder-card:hover .founder-frame {
  border-color: rgba(240, 200, 106, 0.9);
}

.founder-photo {
  position: relative;
  margin: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.92);
  transition: filter 0.35s ease, transform 0.4s ease;
}

.founder-card:hover .founder-photo img {
  filter: saturate(1) contrast(1.08) brightness(0.96);
  transform: scale(1.04);
}

.founder-info h3 {
  margin: 0 0 0.12rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--brand);
}

.founder-role {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  color: var(--brand-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founders-divider {
    margin: 2.2rem 0 1.5rem;
    gap: 0.55rem;
  }

  .founders-divider span {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    padding: 0.22rem 0.58rem;
  }

  .founder-card {
    grid-template-columns: 100px 1fr;
    gap: 0.9rem;
    padding: 0.85rem;
  }

  .founder-portrait,
  .founder-photo {
    width: 100px;
    height: 100px;
  }

  .founder-frame {
    inset: -4px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .stat-number {
    font-size: clamp(2.2rem, 10vw, 3rem) !important;
  }
}

.stats-editorial {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 200, 106, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(12, 11, 9, 0.98));
  border-top: 1px solid rgba(201, 156, 72, 0.25);
  border-bottom: 1px solid rgba(201, 156, 72, 0.25);
}

.stats-headline {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-headline h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 0.5rem;
  position: relative;
}

.stat-item+.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 156, 72, 0.05), rgba(201, 156, 72, 0.45), rgba(201, 156, 72, 0.05));
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-2);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

/* Portfolio mosaic */
.pf-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.pf-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid rgba(201, 156, 72, 0.3);
  aspect-ratio: 4 / 3;
  cursor: default;
}

.pf-card--large {
  grid-column: span 2;
  aspect-ratio: 16 / 7;
}

.pf-card-media {
  margin: 0;
  position: absolute;
  inset: 0;
}

.pf-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.75);
  transition: transform 0.55s ease, filter 0.45s ease;
}

.pf-card:hover .pf-card-media img {
  transform: scale(1.06);
  filter: saturate(0.92) brightness(0.82);
}

.pf-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%);
  transition: background 0.4s ease;
}

.pf-card:hover .pf-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.78) 100%);
}

.pf-card-num {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(240, 200, 106, 0.7);
  font-weight: 600;
}

.pf-card-overlay h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pf-card-overlay p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  max-width: 34ch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pf-card:hover .pf-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 990px) {
  .pf-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .pf-card--large {
    grid-column: span 2;
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 720px) {
  .pf-mosaic {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .pf-card,
  .pf-card--large {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .pf-card-overlay p {
    opacity: 1;
    transform: translateY(0);
  }

  .pf-card-overlay {
    padding: 0.85rem 0.9rem;
  }

  .pf-card-overlay h3 {
    font-size: 1.3rem;
  }
}

.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(240, 200, 106, 0.1), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(199, 154, 63, 0.08), transparent 45%),
    linear-gradient(160deg, #0b0a08 0%, #12100b 100%);
  border-top: 1px solid rgba(201, 156, 72, 0.3);
  border-bottom: 1px solid rgba(201, 156, 72, 0.3);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band-text h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  max-width: 20ch;
}

.cta-band-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 48ch;
  line-height: 1.55;
}

.cta-band-btn {
  flex-shrink: 0;
  padding: 0.9rem 1.6rem;
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .cta-band-text h2 {
    max-width: none;
  }

  .cta-band-text p {
    max-width: none;
  }

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

.testimonials-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.2rem;
  align-items: start;
}

.testimonials-list {
  display: grid;
  gap: 0;
}

.quote-panel {
  position: relative;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(201, 156, 72, 0.36);
  border-radius: 0;
  padding: 1rem 0 0.95rem 2.15rem;
  background: transparent;
}

.quote-panel:last-child {
  border-bottom: 0;
}

.quote-mark {
  position: absolute;
  top: 0.75rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(240, 200, 106, 0.42);
}

.quote-panel p {
  margin: 0 0 0.65rem;
  color: #e7d9b4;
  font-size: 1.03rem;
  line-height: 1.45;
  max-width: 58ch;
}

.quote-panel cite {
  margin-top: 0;
  color: #d0a952;
  font-size: 0.79rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(15, 15, 15, 0.9);
  color: var(--ink);
}

cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  color: var(--brand);
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.portfolio-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 200, 106, 0.08), transparent 34%),
    radial-gradient(circle at 85% 95%, rgba(240, 200, 106, 0.05), transparent 40%);
}

.portfolio-rail {
  display: grid;
  gap: clamp(2rem, 5vw, 4.2rem);
}

.portfolio-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  position: relative;
  padding-left: 2rem;
}

.portfolio-case-copy p.portfolio-index,
p.portfolio-index,
.portfolio-index {
  position: relative;
  float: none;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7vw, 5.8rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.58;
  margin: 0 0 0.35rem 0;
  padding: 0;
  letter-spacing: 0.03em;
  line-height: 0.85;
  text-shadow: none;
  pointer-events: none;
  z-index: auto;
}

.portfolio-case-copy {
  position: relative;
  z-index: 1;
}

.portfolio-case-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.08;
  color: #f0ddb0;
}

.portfolio-case-copy p {
  margin: 0;
  color: #d8c391;
  font-size: 0.94rem;
  line-height: 1.5;
}

.portfolio-note {
  margin-top: 0.55rem;
  color: var(--brand-2);
  font-size: 0.84rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.03em;
}

.portfolio-visual {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  aspect-ratio: 16 / 11;
  border-radius: 0;
  border: 1px solid rgba(201, 156, 72, 0.28);
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.36);
  background: #0f0f0f;
}

.portfolio-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  z-index: 1;
  pointer-events: none;
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.03) brightness(0.88);
  transition: transform 0.78s cubic-bezier(0.22, 1, 0.36, 1), filter 0.48s ease;
}

.portfolio-case:hover .portfolio-visual img {
  transform: scale(1.055);
  filter: saturate(0.98) contrast(1.08) brightness(0.96);
}

.case-reverse {
  direction: rtl;
}

.case-reverse>* {
  direction: ltr;
}

.case-reverse .portfolio-visual {
  justify-self: start;
}

.case-reverse {
  padding-left: 0;
  padding-right: 2rem;
}

.case-reverse .portfolio-index {
  left: auto;
  right: auto;
}

.tone-b {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 233, 178, 0.22), transparent 34%),
    linear-gradient(130deg, #111111 0%, #594523 52%, #b58f49 100%);
}

.tone-c {
  background:
    radial-gradient(circle at 25% 75%, rgba(255, 224, 152, 0.24), transparent 35%),
    linear-gradient(130deg, #17110b 0%, #70562a 50%, #dfb96e 100%);
}

.tone-d {
  background:
    radial-gradient(circle at 68% 70%, rgba(255, 221, 149, 0.2), transparent 38%),
    linear-gradient(130deg, #0d0d0d 0%, #4f3d1e 50%, #c1974c 100%);
}

.tone-e {
  background:
    radial-gradient(circle at 26% 30%, rgba(255, 229, 165, 0.2), transparent 36%),
    linear-gradient(130deg, #121212 0%, #503f21 52%, #ac8643 100%);
}

.tone-f {
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 236, 187, 0.25), transparent 36%),
    linear-gradient(130deg, #161109 0%, #665026 52%, #d7b067 100%);
}

.contact-copy ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.contact-copy li {
  margin-bottom: 0.5rem;
}

.contact-form {
  border: 1px solid rgba(201, 156, 72, 0.32);
  border-radius: 0;
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
  background: rgba(12, 12, 12, 0.74);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 0.7rem 0 0.3rem;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 156, 72, 0.28);
  border-radius: 0;
  padding: 0.75rem;
  font: inherit;
  color: var(--ink);
  background: rgba(8, 8, 8, 0.68);
  transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(240, 200, 106, 0.72);
  background: rgba(12, 12, 12, 0.92);
  box-shadow: 0 0 0 3px rgba(240, 200, 106, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.95rem 0 0;
  font-size: 0.83rem;
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 500;
}

.consent-row input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  accent-color: #d0a952;
  flex: 0 0 auto;
}

.contact-form .btn {
  margin-top: 1rem;
  width: 100%;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status.is-success {
  color: #d7bb72;
}

.form-status.is-error {
  color: #ff9d8d;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080808;
  color: var(--ink-soft);
  padding: 1.6rem 0;
}

.footer-wrap {
  display: grid;
  gap: 0.3rem;
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.footer-bottom {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.4;
}

.footer-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.bewpot-logo {
  height: 20px;
  width: auto;
  margin: 0 0.25rem;
  vertical-align: middle;
}

.bewpot-text {
  font-family: 'Dune Rise', sans-serif;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.bewpot-text:hover {
  opacity: 0.8;
}

.bewpot-blue {
  color: #3b82f6;
}

.bewpot-gold {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.86s ease, transform 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 990px) {

  .hero-grid,
  .services-showcase,
  .services-grid,
  .testimonials-layout,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .steps-grid,
  .testimonials-grid,
  .strip-grid,
  .service-list-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-case,
  .case-reverse {
    grid-template-columns: 1fr;
    gap: 0;
    direction: ltr;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 156, 72, 0.3);
    border-radius: 0.85rem;
    background: rgba(14, 14, 14, 0.95);
  }

  .case-reverse {
    padding-right: 0;
  }

  .portfolio-case-copy p.portfolio-index,
  p.portfolio-index,
  .portfolio-index {
    position: relative;
    float: none;
    display: inline-block;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    font-size: clamp(3.6rem, 8vw, 4.8rem);
    font-weight: 300;
    opacity: 0.58;
    line-height: 0.85;
    margin: 0 0 0.28rem 0;
    padding: 0;
  }

  .portfolio-visual {
    max-width: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    justify-self: stretch;
  }

  .case-reverse .portfolio-visual {
    justify-self: stretch;
  }

  .portfolio-case-copy {
    padding: 0.85rem 1rem 1rem;
  }

  .benefits-timeline::before {
    left: 0.7rem;
    transform: none;
  }

  .benefits-timeline::after {
    left: 0.7rem;
    transform: scaleY(var(--tl-progress));
    transform-origin: top;
  }

  .timeline-item,
  .timeline-left,
  .timeline-right {
    width: 100%;
    justify-self: stretch;
  }

  .timeline-left::before,
  .timeline-right::before {
    left: 0.4rem;
    right: auto;
  }

  .timeline-card {
    margin-left: 1.6rem;
  }

  .benefit h3 {
    font-size: 1.36rem;
  }

  .benefit-icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .benefit-icon svg {
    width: 12px;
    height: 12px;
  }

  .service-visual {
    min-height: 0;
    max-width: none;
    margin-bottom: 0.7rem;
    overflow: visible;
  }

  .service-frame-back {
    display: block;
    width: 86%;
    height: 80%;
    border-width: 2px;
  }

  .service-frame-front {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 1rem);
    max-width: none;
    aspect-ratio: 16 / 10;
    margin: 1rem 0 0 1rem;
  }

  .service-block h3 {
    font-size: clamp(1.75rem, 5vw, 2.4rem);
  }

  .quote-panel p {
    font-size: 0.98rem;
  }

  .marquee-item {
    width: 230px;
    height: 138px;
  }

  .services-curation-head h2 {
    max-width: none;
  }

  .atelier-row,
  .atelier-row-reverse {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.9rem 0;
  }

  .atelier-row-reverse .atelier-copy,
  .atelier-row-reverse .atelier-media {
    order: initial;
  }

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

  .approach-lux-item:nth-child(2) {
    margin-top: 0;
  }

  .approach-lux-item:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .mission-slide {
    flex: 0 0 min(74vw, 500px);
    min-width: min(74vw, 500px);
    min-height: 132px;
  }

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

  .manifesto-piece+.manifesto-piece {
    border-left: 0;
    padding-left: 0.1rem;
    border-top: 1px solid rgba(208, 169, 82, 0.3);
    padding-top: 1rem;
  }
}

@media (min-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit {
    min-height: 210px;
  }
}

@media (max-width: 720px) {
  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.56) 48%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
  }

  .service-image {
    height: 160px;
  }

  .portfolio-rail {
    gap: 1rem;
  }

  .portfolio-case,
  .case-reverse {
    grid-template-columns: 1fr;
    gap: 0;
    direction: ltr;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(201, 156, 72, 0.3);
    border-radius: 0.85rem;
    background: rgba(14, 14, 14, 0.95);
  }

  .case-reverse {
    padding-right: 0;
  }

  .portfolio-case-copy p.portfolio-index,
  p.portfolio-index,
  .portfolio-index {
    position: relative;
    float: none;
    display: inline-block;
    top: auto;
    left: auto;
    transform: none;
    font-size: clamp(3.2rem, 10vw, 4.2rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--gold);
    opacity: 0.58;
    line-height: 0.85;
    margin: 0 0 0.22rem 0;
    padding: 0;
    z-index: auto;
    pointer-events: none;
  }

  .case-reverse .portfolio-index {
    right: auto;
    left: auto;
    text-align: left;
  }

  .portfolio-visual {
    position: relative;
    max-width: none;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    border: none;
    box-shadow: none;
    justify-self: stretch;
    order: -1;
  }

  .portfolio-visual::after {
    display: none;
  }

  .case-reverse .portfolio-visual {
    justify-self: stretch;
  }

  .portfolio-case-copy {
    padding: 0.3rem 0.9rem 1rem;
  }

  .portfolio-case-copy h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
    margin-top: 0;
  }

  .portfolio-case-copy p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .portfolio-note {
    font-size: 0.9rem;
  }

  .service-visual {
    margin-bottom: 0.5rem;
  }

  .service-frame-back {
    width: 84%;
    height: 78%;
    border-width: 2px;
  }

  .service-frame-front {
    width: calc(100% - 0.85rem);
    margin: 0.85rem 0 0 0.85rem;
    aspect-ratio: 4 / 3;
  }

  .service-text {
    gap: 1.35rem;
    margin-top: 0;
  }

  .service-block h3 {
    font-size: clamp(1.65rem, 7.2vw, 2.15rem);
    line-height: 1.14;
  }

  .service-text .btn {
    width: 100%;
    justify-self: stretch;
  }

  .services-curation.section-pad {
    padding-top: 1.5rem;
  }

  .services-curation-head h2 {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
    line-height: 1.08;
  }

  .services-atelier {
    margin-top: 1rem;
  }

  .atelier-row,
  .atelier-row-reverse {
    gap: 0.58rem;
    padding: 0.74rem 0;
  }

  .atelier-kicker {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .atelier-icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .atelier-icon svg {
    width: 0.82rem;
    height: 0.82rem;
  }

  .atelier-copy li {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .atelier-media {
    aspect-ratio: 16 / 11;
  }

  .approach-lux {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .approach-lux-item,
  .approach-lux-item:nth-child(2),
  .approach-lux-item:nth-child(3) {
    margin-top: 0;
    grid-column: auto;
  }

  .approach-media {
    aspect-ratio: 16 / 10;
  }

  .approach-body {
    padding: 0.72rem 0.75rem 0.78rem;
  }

  .approach-body h3 {
    font-size: clamp(1.7rem, 7.4vw, 2.1rem);
    line-height: 1.12;
  }

  .approach-body p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .quote-panel {
    padding: 0.85rem 0 0.8rem 1.7rem;
  }

  .mission-strip {
    padding: 0.42rem 0;
  }

  .mission-track {
    gap: 0.48rem;
    padding-bottom: 0;
    overflow-x: visible;
    scroll-snap-type: none;
    flex-direction: column;
  }

  .mission-slide {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 126px;
    padding: 0.58rem 0.6rem 0.54rem;
  }

  .mission-slide h2 {
    font-size: clamp(1.38rem, 6.6vw, 1.8rem);
    line-height: 1.1;
  }

  .mission-slide p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .manifesto {
    padding-top: 1.2rem;
  }

  .manifesto-shell {
    padding: 1rem 0;
  }

  .manifesto-grid {
    margin-top: 0.65rem;
    gap: 0.75rem;
  }

  .manifesto-piece h2 {
    font-size: clamp(1.82rem, 8vw, 2.35rem);
    line-height: 1.1;
  }

  .manifesto-piece p {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .quote-panel p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .quote-mark {
    top: 0.58rem;
    font-size: 2.2rem;
  }

  .image-marquee {
    padding: 0.7rem 0;
    margin: 2.5rem 0;
  }

  .marquee-track {
    gap: 0.55rem;
    animation-duration: 34s;
  }

  .marquee-item {
    width: 180px;
    height: 112px;
  }

  .hero-video-eyebrow {
    margin: 0 auto 0.4rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  }

  .hero-video {
    min-height: 500px;
  }

  .hero-video-content {
    width: 100%;
    margin-left: 0;
    padding: 1rem 0.8rem;
    display: block;
  }

  .hero-video-content.container {
    width: 100%;
  }

  .hero-video-panel {
    width: min(94%, 360px);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-0.25rem);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    text-align: center;
  }

  .hero-video-content h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 8.2vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 0.8rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.72);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .hero-line {
    white-space: normal;
  }

  .hero-video-content p {
    font-size: clamp(0.95rem, 4vw, 1.08rem);
    line-height: 1.45;
    margin-bottom: 1rem;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.72);
    overflow-wrap: normal;
  }

  .services-hero.hero-video {
    min-height: 470px;
  }

  .services-hero .hero-video-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 0.8rem;
  }

  .services-hero .hero-video-panel {
    width: min(94%, 360px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
    background: transparent;
    border-left: 0;
    border-radius: 0;
  }

  .services-hero .hero-video-eyebrow {
    margin: 0 auto 0.32rem;
    text-align: center;
  }

  .btn-video {
    width: auto;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    padding: 0.68rem 0.95rem;
    border-radius: 999px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    padding: 0.6rem 0;
  }

  .strip-grid {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    scroll-snap-type: none;
    padding: 0 0.05rem 0.25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .strip-grid::-webkit-scrollbar {
    display: none;
  }

  .strip-item {
    width: min(56vw, 190px);
    min-width: min(56vw, 190px);
    max-width: min(56vw, 190px);
    flex: 0 0 auto;
    padding: 0.55rem 0.62rem;
  }

  .strip-icon {
    width: 1.38rem;
    height: 1.38rem;
    font-size: 0.72rem;
    margin-bottom: 0.24rem;
  }

  .strip-item h3 {
    font-size: 0.92rem;
    margin-bottom: 0.12rem;
    white-space: normal;
    line-height: 1.2;
    overflow: visible;
  }

  .strip-item p {
    font-size: 0.86rem;
    line-height: 1.4;
    white-space: normal;
    min-height: auto;
    overflow: visible;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 85% 12%, rgba(199, 154, 63, 0.16), transparent 36%),
      rgba(8, 8, 8, 0.97);
    border: 0;
    border-radius: 0;
    width: 100vw;
    height: 100dvh;
    padding: 5.6rem 1.2rem 2rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 0.95rem;
    z-index: 18;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.985);
    transform-origin: top right;
    clip-path: circle(0% at calc(100% - 34px) 36px);
    transition: clip-path 0.48s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.2s ease, transform 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    clip-path: circle(150% at calc(100% - 34px) 36px);
  }

  .main-nav a {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.24s ease;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .main-nav .lang-inline {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.24s ease;
    display: flex;
    gap: 0.36rem;
  }

  .main-nav.open .lang-inline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.28s;
  }

  .main-nav .lang-inline a {
    justify-content: center;
    font-size: 1rem;
    padding: 0;
  }

  .main-nav .lang-inline .lang-item {
    font-size: 1rem;
  }

  .main-nav .lang-sep {
    font-size: 0.95rem;
  }

  .main-nav.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.open a:nth-child(1) {
    transition-delay: 0.08s;
  }

  .main-nav.open a:nth-child(2) {
    transition-delay: 0.12s;
  }

  .main-nav.open a:nth-child(3) {
    transition-delay: 0.16s;
  }

  .main-nav.open a:nth-child(4) {
    transition-delay: 0.2s;
  }

  .main-nav.open a:nth-child(5) {
    transition-delay: 0.24s;
  }

  .menu-btn {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid rgba(118, 95, 47, 0.72);
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
    z-index: 19;
  }

  .menu-btn .bar {
    width: 11px;
    height: 1.6px;
  }

  .menu-btn .bar+.bar {
    margin-top: 2.2px;
  }

  .menu-btn.is-open .bar:nth-child(2) {
    transform: translateY(3.8px) rotate(45deg);
  }

  .menu-btn.is-open .bar:nth-child(3) {
    opacity: 0;
  }

  .menu-btn.is-open .bar:nth-child(4) {
    transform: translateY(-3.8px) rotate(-45deg);
  }

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

  .benefits-grid,
  .steps-grid,
  .testimonials-grid,
  .strip-grid,
  .service-list-full {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .sp-step h3 {
    font-size: 1.25rem;
  }
}