.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 100px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.hero__title {
  font-size: clamp(58px, 7.6vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin-bottom: 36px;
  max-width: 12ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
}
.hero__lead {
  max-width: 40ch;
  margin-bottom: 48px;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__stage {
  position: relative;
  aspect-ratio: 1 / 1.1;
  width: 100%;
  max-width: 620px;
  justify-self: end;
}
.stage { position: absolute; inset: 0; }

.canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86%;
  transform: translate(-50%, -52%);
  filter: drop-shadow(0 28px 38px rgba(78, 55, 33, 0.18));
  will-change: transform;
  transition: transform 900ms var(--ease);
}
.canvas svg { width: 100%; height: auto; display: block; overflow: visible; }

.stage__parallax {
  position: absolute;
  inset: 0;
  transition: transform 1.4s var(--ease);
  will-change: transform;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.stage__floor {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 60%;
  height: 8%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 0%, rgba(179, 159, 127, 0.3), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.ink-path { fill: none; stroke: url(#goldStroke); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 0.5px rgba(78,55,33,0.22)); }
.fill-path { fill: var(--ink); transition: opacity 1.6s var(--ease); }
.brush-fill { fill: var(--ink); }

.home-section {
  position: relative;
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(78, 55, 33, 0.1);
  border-top: 1px solid rgba(78, 55, 33, 0.1);
  border-bottom: 1px solid rgba(78, 55, 33, 0.1);
}
.service {
  background: var(--cream);
  padding: 56px 40px 44px;
  position: relative;
  
  transition: background-color var(--med) var(--ease),
    opacity 1.2s var(--ease), transform 1.2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 380px;
  overflow: hidden;
}
.service:hover { background: var(--cream-soft); }
.service__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.5em;
}
.service__title {
  font-family: var(--display);
  font-size: 37px;
  font-weight: 600;
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.service__title em { font-style: italic; color: var(--ink-soft); font-weight: 500; }
.service__copy {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 32ch;
}
.service__more {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  border-top: 1px solid rgba(78, 55, 33, 0.12);
}
.service__more::after {
  content: "\2192";
  transition: transform var(--fast) var(--ease);
}
.service__more:hover::after { transform: translateX(4px); }
.service__mark {
  position: absolute;
  top: 40px;
  right: 36px;
  width: auto;
  height: 60px;
  opacity: 0.92;
}

.pitch {
  padding: 78px 0;
  text-align: center;
  position: relative;
}
.pitch h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6.8vw, 108px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.014em;
  color: var(--ink);
  max-width: 14ch;
  margin: 0 auto 28px;
}
.pitch h2 em { font-style: italic; color: var(--ink-soft); font-weight: 300; }
.pitch p {
  max-width: 52ch;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.pitch__rule {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin: 0 auto 10px;
}

.features {
  background: var(--cream-soft);
  padding: 112px 0;
  position: relative;
}

.features__inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: stretch;
}
.features__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  min-height: 480px;
  min-width: 0;
}
.features-swiper { position: absolute; inset: 0; width: 100%; height: 100%; }
.features-swiper .swiper-wrapper,
.features-swiper .swiper-slide { height: 100%; }
.features__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.features__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 96px;
  background: linear-gradient(to bottom, transparent, rgba(20, 12, 4, 0.42));
  pointer-events: none;
  z-index: 1;
}

.features-pagination {
  position: absolute;
  left: 0; right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.features-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 3px;
  margin: 0;
  border-radius: 2px;
  background: rgba(251, 248, 241, 0.5);
  opacity: 1;
  cursor: pointer;
  transition: width var(--med) var(--ease), background-color var(--med) var(--ease);
}
.features-pagination .swiper-pagination-bullet-active {
  width: 42px;
  background: var(--bone);
}
.features__content { display: flex; flex-direction: column; }

.features .sec__head {
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 44px;
}
.features .sec__head .sec__lead { max-width: 56ch; }
.features::before, .features::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(179, 159, 127, 0.4);
}
.features::before { top: 0; }
.features::after { bottom: 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 44px;
  margin-top: auto;
}
.feat {
  display: flex; flex-direction: column;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(78, 55, 33, 0.22);
  position: relative;
}
.feat__num {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.feat__title {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.feat__title em { font-style: italic; color: var(--ink-soft); }
.feat__body {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-soft);
}
.feat__icon {
  position: absolute;
  top: 30px;
  right: 0;
  width: 42px;
  height: 42px;
  color: var(--ink-soft);
  opacity: 1;
}
.feat__icon [stroke] { stroke-width: 1.5; }

.voices {
  background: var(--cream);
  padding: 104px 0 112px;
  position: relative;
  overflow: hidden;
}
.voices::before {
  content: "";
  position: absolute;
  top: 6%;
  right: -8%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(179, 159, 127, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.voices__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.voices__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.voices__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
}
.voices__head h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.voices__head h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.voices__head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 36ch;
  padding-bottom: 14px;
}
.voices-swiper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.voices-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.voice {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding-top: 36px;
  border-top: 1px solid rgba(78, 55, 33, 0.18);
  position: relative;
}
.voice__mark {
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.6;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  height: 30px;
}
.voice__quote {
  font-family: var(--display);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.42;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: -0.004em;
  text-wrap: pretty;
}
.voice__quote em {
  font-style: italic;
  color: var(--ink-soft);
}
.voice__meta {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.voice__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ink-soft));
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.voice__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.voice__stars {
  display: flex;
  gap: 3px;
  margin-top: 9px;
}
.voice__star {
  width: 15px;
  height: 15px;
  fill: var(--gold);
}
.voice__source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.voice__source svg { width: 13px; height: 13px; display: block; flex-shrink: 0; }

.voices__controls {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(78, 55, 33, 0.14);
}
.voices__nav { display: flex; gap: 12px; }
.voices__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(78, 55, 33, 0.25);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--fast) var(--ease), color var(--fast) var(--ease),
    border-color var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.voices__arrow:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.voices__arrow svg { width: 17px; height: 17px; }
.voices__arrow.swiper-button-disabled { opacity: 0.3; cursor: default; }
.voices__arrow.swiper-button-disabled:hover {
  background: transparent;
  color: var(--ink);
  border-color: rgba(78, 55, 33, 0.25);
}

.voices__pagination {
  position: static;
  width: auto;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.voices__pagination .swiper-pagination-bullet {
  width: 7px; height: 7px;
  margin: 0 5px;
  background: var(--gold);
  opacity: 0.35;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease);
}
.voices__pagination .swiper-pagination-bullet-active { opacity: 1; transform: scale(1.25); }
.voices__cta {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero__inner { gap: 30px; }
  .sec__head { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 50px 40px; }
}
@media (max-width: 980px) {
  
  .features__inner { grid-template-columns: 1fr; gap: 44px; }
  .features__media { min-height: 0; height: 0; padding-bottom: 62.5%; }
}
@media (max-width: 900px) {
  .voices { padding: 90px 0; }
  .voices__head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
}
@media (max-width: 600px) {
  .voices__controls { flex-wrap: wrap; gap: 22px; }
  .voices__pagination { order: 3; flex-basis: 100%; }
}
@media (max-width: 820px) {
  
  .hero { padding: 112px 0 48px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__stage {
    order: -1;
    max-width: 270px;
    margin: 0 auto;
    justify-self: center;
    aspect-ratio: 1;
  }
  .hero__eyebrow { font-size: 9.5px; letter-spacing: 0.2em; margin-bottom: 16px; gap: 10px; }
  .hero__title { margin-bottom: 16px; }
  .hero__lead { margin-bottom: 26px; }
  .hero__cta { justify-content: center; }
  .home-section { padding: 90px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .pitch { padding: 56px 0; }
  .features { padding: 100px 0; }
}
@media (max-width: 480px) {
  
  .hero__eyebrow { display: none; }
  .hero__title { font-size: 44px; margin-bottom: 14px; }
  .hero__stage { max-width: 218px; }
  .features__grid { grid-template-columns: 1fr; }
}
