:root {
  --bg: #070605;
  --bg-2: #100e0c;
  --bg-3: #1c1713;
  --wine: #9c2b3a;
  --wine-deep: #5a141e;
  --wine-glow: rgba(156, 43, 58, 0.45);
  --gold: #cbb07a;
  --gold-2: #e8d5a3;
  --cream: #f3eadc;
  --muted: #9b9186;
  --line: rgba(203, 176, 122, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav: 108px;
  --page: 1440px;
  --gutter: max(20px, calc((100% - var(--page)) / 2));
  --section-y: clamp(44px, 5vw, 72px);
  --section-head: 32px;
  --font: "Poppins", sans-serif;
  --serif: "Playfair Display", "Times New Roman", serif;
  --script: "Bastliga One", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html {
  background: var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

body.is-menu {
  overflow: hidden;
}

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

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

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

button {
  background: none;
  border: 0;
  cursor: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: var(--gold-2);
}

.cursor__ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 213, 163, 0.7);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s;
}

.cursor.is-hover .cursor__ring {
  width: 72px;
  height: 72px;
  background: rgba(203, 176, 122, 0.12);
}

.cursor.is-text .cursor__ring {
  width: 110px;
  height: 110px;
}

.cursor__label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
}

@media (pointer: coarse) {
  .cursor,
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
  button,
  a {
    cursor: pointer;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.loader.is-done {
  pointer-events: none;
}

html.is-booted .loader {
  display: none !important;
}

html.is-booted .nav {
  transform: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(820px, 90vw);
}

.loader__logo,
.brand-sign {
  width: min(640px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto 28px;
  background: none;
  display: block;
  overflow: hidden;
  filter: drop-shadow(0 12px 24px rgba(197, 160, 89, 0.22));
}

.brand-sign text {
  font-family: "Bastliga One", cursive;
  text-rendering: geometricPrecision;
}

.loader__bar {
  width: 100%;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.loader__fill {
  height: 100%;
  width: 0;
  background: var(--gold);
}

.loader__count {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: var(--wine-deep);
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 8px;
  width: 100%;
  min-height: var(--nav);
  height: auto;
  padding: 12px var(--gutter) 14px;
  transform: translateY(-120%);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(7, 6, 5, 0.72);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom-color: rgba(203, 176, 122, 0.14);
}

.nav__logo {
  display: flex;
  align-items: center;
  grid-column: 1;
  grid-row: 1 / -1;
  flex-shrink: 0;
  margin-right: 0;
}

.nav__logo img {
  height: 54px;
  width: auto;
  background: none;
}

.nav__partners {
  display: flex;
  align-items: center;
  gap: 18px;
  grid-column: 2 / 5;
  grid-row: 1;
  justify-self: end;
  margin: 0;
}

.nav__partners-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  margin-right: 2px;
}

.nav__partners img {
  display: block;
  height: 14px;
  width: auto;
  max-width: none;
  opacity: 0.92;
  background: none;
  filter: none;
  object-fit: contain;
}

.nav__partners img[alt="Google"] {
  height: 18px;
}

.nav__links {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}

.nav__ig {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 0;
  flex-shrink: 0;
  grid-column: 3;
  grid-row: 2;
  border-radius: 999px;
  background: linear-gradient(135deg, #9c2b3a 0%, #c5a059 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(156, 43, 58, 0.28);
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav__ig:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(156, 43, 58, 0.4);
}

.nav__cta {
  grid-column: 4;
  grid-row: 2;
}

.nav__burger {
  grid-column: 5;
  grid-row: 2;
}

.nav__ig svg {
  width: 18px;
  height: 18px;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links a {
  position: relative;
  opacity: 0.72;
  transition: opacity 0.3s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav__links a:hover {
  opacity: 1;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__burger {
  display: none;
  width: 32px;
  height: 20px;
  position: relative;
}

.nav__burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}

.nav__burger span:first-child {
  top: 6px;
}

.nav__burger span:last-child {
  top: 14px;
}

.nav__burger.is-open span:first-child {
  top: 10px;
  transform: rotate(45deg);
}

.nav__burger.is-open span:last-child {
  top: 10px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px;
  gap: 18px;
  transform: translateY(-100%);
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  color: var(--bg);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg);
}

.btn--gold::before {
  background: var(--cream);
}

.btn--ghost {
  border: 1px solid var(--line);
}

.btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 11px;
  mix-blend-mode: normal;
  border: 1px solid rgba(243, 234, 220, 0.35);
}

.hero {
  min-height: 100vh;
  padding: calc(var(--nav) + 40px) var(--gutter) var(--section-y);
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
  perspective: 1400px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.4) contrast(1.1);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 5, 0.88) 0%, rgba(7, 6, 5, 0.42) 52%, rgba(7, 6, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.2) 0%, var(--bg) 96%);
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
}

.hero__copy {
  max-width: 620px;
}

.hero__kicker {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 16px;
}

.hero__reel {
  position: relative;
  width: 100%;
  max-width: 760px;
  justify-self: end;
  z-index: 3;
  overflow: visible;
  transform-origin: 50% 50%;
  will-change: transform;
  margin-top: 28px;
}

.hero.is-reel-pin {
  overflow: visible;
}

.reel {
  position: relative;
  height: min(66vh, 600px);
  perspective: 1600px;
  transform-style: preserve-3d;
}

.reel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(203, 176, 122, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(156, 43, 58, 0.22), inset 0 0 40px rgba(203, 176, 122, 0.06);
  pointer-events: none;
}

.reel__card {
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(320px, 48vw);
  aspect-ratio: 3 / 4;
  margin: 0;
  border: 0;
  padding: 0;
  background: #120f0c;
  border-radius: 18px;
  overflow: hidden;
  transform-origin: center center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  cursor: none;
  transition: box-shadow 0.5s var(--ease);
}

.reel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(1.06);
}

.reel__card.is-active {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--gold);
}

.reel__card.is-active img {
  filter: none;
}

.reel__label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  top: auto;
  width: auto;
  padding: 10px 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px 10px;
  background: rgba(7, 6, 5, 0.86);
  border: 1px solid rgba(232, 213, 163, 0.55);
  color: var(--gold-2);
  border-radius: 12px;
}

.reel__label b {
  font-size: 11px;
  letter-spacing: 0.18em;
  flex: 0 0 auto;
}

.reel__label em {
  writing-mode: horizontal-tb;
  transform: none;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  flex: 1 1 auto;
  min-width: 0;
}

.reel__label span {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: normal;
  flex: 0 1 auto;
}

.reel__hud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  margin-top: 18px;
}

.reel__now {
  flex: 1 1 160px;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 12px;
  text-align: center;
}

.reel__now strong {
  display: inline;
  font-size: 18px;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: anywhere;
}

.reel__now span {
  display: inline;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.reel__nav {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  transition: border-color 0.3s, background 0.3s;
}

.reel__nav:hover {
  border-color: var(--gold);
  background: rgba(156, 43, 58, 0.2);
}

.hero__title {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: #fff;
}

.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line span {
  display: block;
}

.hero__caret {
  color: var(--gold);
  font-weight: 400;
  animation: caret 1s step-end infinite;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

.typewriter {
  position: relative;
  margin: 12px 0 0;
  max-width: none;
  min-height: calc(clamp(18px, 2.3vw, 32px) * 1.15 * 2);
}

.typewriter__ghost {
  display: block;
  visibility: hidden;
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  white-space: normal;
}

.typewriter__live {
  position: absolute;
  inset: 0;
  font-size: clamp(18px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #fff;
  white-space: normal;
  overflow-wrap: break-word;
}

.typewriter__text {
  display: inline;
}

.hero__lead {
  max-width: 460px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 3;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

.hero__orb--wine {
  width: 42vw;
  height: 42vw;
  right: -8vw;
  top: 8vh;
  background: var(--wine-glow);
}

.hero__orb--gold {
  width: 28vw;
  height: 28vw;
  left: -6vw;
  bottom: 10vh;
  background: rgba(203, 176, 122, 0.16);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat strong {
  display: block;
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: none;
  color: #fff;
}

.hero__scroll i {
  width: 18px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  background: transparent;
  position: relative;
  animation: none;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: drip 2.2s ease-in-out infinite;
}

@keyframes drip {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-2);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.marquee__track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
  display: block;
}

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

section {
  padding: var(--section-y) var(--gutter);
}

h1.display,
h2.display,
h3.display,
.display {
  font-family: var(--font);
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.display em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.intro .eyebrow {
  margin-bottom: 18px;
}

.intro__text {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.intro__pills li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.intro__right .stats-row {
  margin: 8px 0 28px;
}

.intro__right .stats-row strong {
  font-size: 22px;
}

.intro__frame {
  margin-top: 24px;
  width: min(100%, 380px);
  aspect-ratio: 5 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.intro__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecom {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background:
    radial-gradient(ellipse at top, rgba(156, 43, 58, 0.18), transparent 50%),
    var(--bg);
}

.ecom__head {
  max-width: 820px;
  margin-bottom: var(--section-head);
}

.ecom__head .eyebrow {
  margin-bottom: 16px;
}

.ecom__lead {
  margin-top: 20px;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.desk {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 48px 56px;
  align-items: center;
}

.desk__copy,
.desk__device {
  min-width: 0;
  max-width: 100%;
}

.desk__index {
  margin: 22px 0 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.desk__now {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

.desk__now span:last-child {
  font-weight: 400;
  color: var(--muted);
}

.desk__copy .display {
  white-space: nowrap;
}

.desk__lead {
  margin-top: 16px;
  max-width: 440px;
  color: var(--muted);
  font-size: 17px;
}

.desk__host {
  margin-top: 8px;
  color: var(--gold);
  font-size: 15px;
}

.desk__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.desk__dir {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.desk__dir:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.desk__pills {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: start;
  gap: 8px;
  margin-top: 22px;
  width: max-content;
  max-width: 100%;
}

.desk__pills button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.desk__pills button.is-on,
.desk__pills button:hover {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.desk__device {
  position: relative;
}

.desk__device::before {
  content: "";
  position: absolute;
  inset: 18% 8% -8%;
  background: radial-gradient(ellipse at center, rgba(156, 43, 58, 0.28), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.laptop {
  position: relative;
  width: 100%;
}

.laptop__lid {
  background: linear-gradient(180deg, #6a635a, #3f3a34);
  border-radius: 18px 18px 10px 10px;
  padding: 12px 12px 10px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(203, 176, 122, 0.22);
}

.laptop__bezel {
  position: relative;
  background: #070605;
  border-radius: 10px;
  overflow: hidden;
}

.laptop__cam {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #5a544c;
  box-shadow: inset 0 0 0 1.5px #111;
}

.laptop__screen {
  aspect-ratio: 16 / 10;
  margin-top: 16px;
  overflow: hidden;
  background: #111;
}

.laptop__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.35s var(--ease);
}

.laptop__screen.is-swap img {
  opacity: 0.25;
}

.laptop__base {
  height: 16px;
  margin: 0 6%;
  background: linear-gradient(180deg, #7a736a, #4a453e 70%, #322e2a);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.laptop__base i {
  display: block;
  width: 26%;
  height: 7px;
  margin: 0 auto;
  background: #0b0a09;
  border-radius: 0 0 8px 8px;
}

.desk__bar {
  height: 2px;
  margin: 18px 8% 0;
  background: #2a241c;
  border-radius: 99px;
  overflow: hidden;
}

.desk__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
}

.desk__bar i.is-run {
  animation: cinemaProgress 4.2s linear forwards;
}

@keyframes cinemaProgress {
  from { width: 0; }
  to { width: 100%; }
}

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

  .desk__copy .display {
    white-space: normal;
  }

  .desk__device {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
  }
}

.ecom__stage {
  margin-bottom: 48px;
}

.store {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.store__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #161210;
  border-bottom: 1px solid var(--line);
}

.store__chrome > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a332c;
}

.store__chrome > span:nth-child(1) {
  background: #9c2b3a;
}

.store__chrome > span:nth-child(2) {
  background: #cbb07a;
}

.store__url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.store__body {
  padding: 20px;
}

.store__chrome {
  position: relative;
}

.store__live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #c9d4b8;
}

.store__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dba6a;
  box-shadow: 0 0 0 4px rgba(125, 186, 106, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

.store__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.store__nav b {
  font-family: var(--font);
  font-size: 22px;
  color: var(--cream);
}

.store__nav span {
  cursor: default;
}

.store__nav span.is-on {
  color: var(--cream);
}

.store__search {
  margin-left: auto;
  min-width: 180px;
  flex: 1;
  max-width: 240px;
}

.store__search input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f0d0b;
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 12px;
}

.store__search input::placeholder {
  color: var(--muted);
}

.store__bag {
  color: var(--gold);
  font-style: normal;
  white-space: nowrap;
}

.store__promo {
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(203, 176, 122, 0.28);
  background: rgba(203, 176, 122, 0.08);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.store__hero-card {
  display: grid;
  grid-template-columns: 1.85fr 0.7fr;
  gap: 20px;
  align-items: stretch;
}

.store__visual {
  position: relative;
  min-height: 520px;
  border-radius: 16px;
  background: linear-gradient(160deg, #2a1618, #120e0c 55%, #1c1810);
  overflow: hidden;
}

.store__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92) brightness(0.9);
}

.store__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  right: 10%;
  top: 10%;
  background: radial-gradient(circle, rgba(203, 176, 122, 0.35), transparent 70%);
  animation: floaty 6s ease-in-out infinite;
}

.product-card {
  position: absolute;
  width: 150px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(7, 6, 5, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.product-card__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 3;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__badge--sale {
  background: var(--wine);
  color: var(--cream);
}

.product-card p {
  font-size: 13px;
  margin-top: 8px;
}

.product-card small {
  color: var(--gold);
}

.product-card__img {
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--1 {
  left: 8%;
  top: 18%;
  animation: floaty 5.5s ease-in-out infinite;
}

.product-card--1 .product-card__img {
  background: linear-gradient(180deg, #4a2a2e, #1a1010);
}

.product-card--2 {
  right: 18%;
  top: 12%;
  animation: floaty 6.4s ease-in-out infinite reverse;
}

.product-card--2 .product-card__img {
  background: linear-gradient(180deg, #3a3224, #15120e);
}

.product-card--3 {
  left: 28%;
  bottom: 12%;
  animation: floaty 7s ease-in-out infinite 0.4s;
}

.product-card--3 .product-card__img {
  background: linear-gradient(180deg, #6a3a28, #1c120e);
}

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

.store__checkout {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: #14110e;
}

.store__checkout > p:first-child {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.store__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.store__row--total {
  color: var(--cream);
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-bottom: 18px;
}

.store__now {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.store__now img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.store__now b {
  display: block;
  color: var(--cream);
  font-size: 20px;
}

.store__now span {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 13px;
}

.store__note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.store__dots {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.store__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #3a332c;
  cursor: pointer;
}

.store__dots button.is-on {
  background: var(--gold);
  width: 22px;
  border-radius: 99px;
}

.store__pay {
  display: block;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  border-radius: 999px;
  padding: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.store__pulse {
  margin-top: 14px;
  font-size: 12px;
  color: #c9d4b8;
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.store__lines {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  max-height: 168px;
  overflow: auto;
}

.store__line {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.store__line img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
}

.store__line b {
  color: var(--cream);
  font-weight: 600;
}

.store__ship {
  margin: 4px 0 14px;
  font-size: 11px;
  color: var(--muted);
}

.store__ship i {
  display: block;
  height: 4px;
  margin-top: 6px;
  border-radius: 99px;
  background: #2a241c;
  overflow: hidden;
}

.store__ship em {
  display: block;
  height: 100%;
  background: var(--gold);
}

.store__methods {
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.shop {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.shop__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.shop__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop__cats button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.shop__cats button.is-on,
.shop__cats button:hover {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

.shop__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.shop__meta select {
  border: 1px solid var(--line);
  background: #0f0d0b;
  color: var(--cream);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 12px;
}

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

.tile--site .tile__media {
  aspect-ratio: 16 / 10;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #120f0d;
  transition: transform 0.45s var(--ease), border-color 0.3s;
}

.tile:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 176, 122, 0.45);
}

.tile.is-hidden {
  display: none;
}

.tile__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1512;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.tile:hover .tile__media img {
  transform: scale(1.06);
}

.tile__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tile__badge--sale {
  background: var(--wine);
  color: var(--cream);
}

.tile__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 6, 5, 0.7);
  color: var(--cream);
  cursor: pointer;
}

.tile__wish.is-on {
  color: var(--wine);
}

.tile__body {
  padding: 14px 14px 16px;
}

.tile__body small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tile__body h3 {
  font-size: 22px;
  margin: 6px 0 8px;
}

.tile__body h3 a {
  color: inherit;
  text-decoration: none;
}

.tile__case {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.tile__rate {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 10px;
}

.tile__rate em {
  color: var(--muted);
  font-style: normal;
  margin-left: 6px;
}

.tile__sizes,
.tile__swatch {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.tile__sizes span {
  min-width: 28px;
  height: 26px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
}

.tile__sizes span.is-on {
  border-color: var(--gold);
  color: var(--cream);
}

.tile__swatch i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tile__stock {
  margin: 0 0 12px;
  color: #e8b4b8;
  font-size: 12px;
}

.tile__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tile__row strong {
  color: var(--cream);
  font-size: 15px;
}

.tile__row s {
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
  font-size: 12px;
}

.tile__add {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  padding: 8px 14px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.tile--site .tile__stock {
  color: var(--muted);
}

.tile--site .tile__row strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.shop__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.shop__rail div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16, 14, 12, 0.7);
}

.shop__rail b {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.shop__rail span {
  color: var(--muted);
  font-size: 13px;
}

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

.ecom-card {
  padding: 0 20px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 14, 12, 0.7);
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}

.ecom-card__photo {
  height: 88px;
  margin: 0 -20px 16px;
  overflow: hidden;
}

.ecom-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ecom-card:hover .ecom-card__photo img {
  transform: scale(1.08);
}

.ecom-card:hover {
  transform: translateY(-8px);
  border-color: rgba(203, 176, 122, 0.45);
  background: #161210;
}

.ecom-card span {
  display: block;
  padding-top: 2px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.ecom-card h3 {
  font-family: var(--font);
  font-size: 28px;
  margin: 16px 0 10px;
}

.ecom-card p {
  color: var(--muted);
  font-size: 14px;
}

.services__head {
  margin-bottom: 36px;
}

.services__head .eyebrow {
  margin-bottom: 12px;
}

.belief {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: var(--section-y) var(--gutter);
}

.belief__media {
  position: absolute;
  inset: 0;
}

.belief__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.08) brightness(0.55);
}

.belief__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.belief__copy {
  position: relative;
  z-index: 2;
  max-width: var(--page);
  width: 100%;
  text-align: center;
}

.belief__copy h1,
.belief__copy h2 {
  font-family: var(--font);
  font-size: clamp(22px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #f3eadc;
  white-space: nowrap;
}

.belief__copy h1 em,
.belief__copy h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: #c5a059;
  letter-spacing: 0;
}

.belief--page {
  min-height: auto;
  align-items: center;
  justify-items: center;
  background: var(--bg);
  padding: calc(var(--nav) + 20px) var(--gutter) 28px;
}

.belief__seal {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 6px;
  overflow: hidden;
}

.belief__seal .brand-sign {
  width: min(88%, 480px);
  margin: 0 auto 0;
}

.belief--page .belief__copy > p {
  margin-bottom: 0;
}

.belief__copy > p {
  color: #c8c8c8;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  max-width: 52rem;
  white-space: normal;
  margin: 0 auto 36px;
}

.belief__cta {
  min-width: 240px;
  min-height: 52px;
  padding: 0 36px;
  border: 1px solid rgba(203, 176, 122, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(156, 43, 58, 0.72), transparent 58%),
    linear-gradient(180deg, #3d1418 0%, #14090a 100%);
  color: var(--gold);
  letter-spacing: 0.2em;
}

.belief__cta::before {
  display: none;
}

.belief__cta:hover {
  color: var(--gold-2);
  border-color: var(--gold-2);
  filter: brightness(1.08);
}

.belief__partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.belief__partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 40px;
}

.belief__partners-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

.belief__partners .partner-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  overflow: hidden;
  isolation: isolate;
  flex: 0 0 auto;
}

.belief__partners .partner-mark::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: 0;
  width: 50%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(232, 213, 163, 0.2) 35%,
    #e8d5a3 50%,
    #cbb07a 56%,
    rgba(232, 213, 163, 0.2) 70%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-18deg);
  animation: partner-shine 5.2s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.belief__partners .partner-mark:nth-child(1)::after {
  animation-delay: 0s;
}

.belief__partners .partner-mark:nth-child(2)::after {
  animation-delay: 0.75s;
}

.belief__partners .partner-mark:nth-child(3)::after {
  animation-delay: 1.5s;
}

.belief__partners .partner-mark:nth-child(4)::after {
  animation-delay: 2.25s;
}

.belief__partners img {
  display: block;
  height: 24px;
  width: auto;
  max-width: none;
  opacity: 0.96;
  object-fit: contain;
}

.belief__partners img[alt="Google"] {
  height: 30px;
}

@keyframes partner-shine {
  0%,
  58% {
    transform: translateX(-180%) skewX(-18deg);
  }
  74% {
    transform: translateX(220%) skewX(-18deg);
  }
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

@media (max-width: 720px) {
  .belief__copy h1,
  .belief__copy h2,
  .belief__copy > p {
    white-space: normal;
  }

  .belief__partners-row {
    flex-wrap: wrap;
    gap: 22px 28px;
  }
}

@keyframes partner-shine {
  0%,
  62% {
    transform: translateX(-180%) skewX(-18deg);
  }
  78% {
    transform: translateX(220%) skewX(-18deg);
  }
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .belief__partners .partner-mark::after {
    animation: none;
    display: none;
  }
}

.btn--glow {
  overflow: visible;
  isolation: auto;
  min-height: 56px;
  padding: 0 34px;
  background: linear-gradient(90deg, #8d2433 0%, #cbb07a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 10px 36px rgba(156, 43, 58, 0.5);
}

.btn--glow::before {
  display: none;
}

.btn--glow:hover {
  color: #fff;
  filter: brightness(1.08);
}

.expo {
  position: relative;
  overflow: hidden;
}

.expo::before,
.expo::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(40px);
}

.expo::before {
  left: -8%;
  top: 18%;
  background: rgba(156, 43, 58, 0.18);
}

.expo::after {
  right: -10%;
  bottom: 8%;
  background: rgba(203, 176, 122, 0.08);
}

.expo__head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-head);
}

.expo__head h2 {
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.expo__head p {
  color: rgba(243, 234, 220, 0.78);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}

.expo__stage {
  position: relative;
  z-index: 1;
}

.expo__viewport {
  overflow: hidden;
}

.expo__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 28px;
}

.expo__track::-webkit-scrollbar {
  display: none;
}

.expo__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 210px;
  height: 360px;
  padding: 22px 20px 24px;
  border-radius: 22px;
  overflow: hidden;
  scroll-snap-align: start;
  color: inherit;
  background: #0f0d0c;
  border: 1px solid rgba(203, 176, 122, 0.2);
  --mx: 50%;
  --my: 80%;
  --spot: 0;
  transition:
    border-color 0.45s var(--ease),
    background 0.45s var(--ease);
}

.expo__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(7, 6, 5, 0.55) 100%);
}

.expo__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(120% 90% at var(--mx) var(--my), rgba(232, 213, 163, var(--spot)), transparent 55%);
}

.expo__card:hover {
  border-color: rgba(232, 213, 163, 0.4);
  background: #14110f;
}

.expo__shot {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  z-index: 0;
  width: 138%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  transform: translate(16%, -52%);
  background: #2a221c;
  box-shadow: inset 0 0 0 1px rgba(203, 176, 122, 0.28);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.expo__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.84);
  opacity: 1;
  transition: filter 0.45s ease;
}

.expo__shot::after {
  content: none;
}

.expo__card:hover .expo__shot {
  transform: translate(10%, -48%);
}

.expo__card:hover .expo__shot img {
  filter: grayscale(0) contrast(1.04) brightness(0.94) saturate(1.05);
}

.expo__card[href*="sosyal-medya"] .expo__shot {
  width: 138%;
  transform: translate(16%, -52%);
}

.expo__card[href*="sosyal-medya"]:hover .expo__shot {
  transform: translate(10%, -48%);
}

.expo__card[href*="sosyal-medya"] .expo__shot img {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 132%;
  height: 132%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
  filter: grayscale(1) contrast(1.08) brightness(0.92);
}

.expo__card[href*="sosyal-medya"]:hover .expo__shot img {
  filter: grayscale(0) contrast(1.04) brightness(1) saturate(1.06);
}

.expo__no {
  position: relative;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(203, 176, 122, 0.7);
  margin-bottom: 2px;
}

.expo__icon {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(203, 176, 122, 0.35);
  border-radius: 50%;
  color: rgba(243, 234, 220, 0.82);
  background: transparent;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}

.expo__card:hover .expo__icon {
  border-color: rgba(232, 213, 163, 0.7);
  color: #f3eadc;
  background: rgba(156, 43, 58, 0.28);
}

.expo__icon svg {
  width: 18px;
  height: 18px;
}

.expo__card h3 {
  position: relative;
  z-index: 3;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.expo__card p {
  position: relative;
  z-index: 3;
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(243, 234, 220, 0.72);
  font-size: 13px;
  line-height: 1.5;
  max-width: 28ch;
  transform: translateY(8px);
  transition:
    max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.expo__card:hover p {
  max-height: 72px;
  opacity: 1;
  transform: translateY(0);
}

.expo__bar {
  width: min(168px, 36%);
  height: 2px;
  margin: 4px auto 0;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border-radius: 99px;
}

.expo__bar i {
  display: block;
  height: 100%;
  width: 28%;
  background: #fff;
  transform: translateX(0);
}

@media (hover: none) {
  .expo__shot {
    transform: translate(10%, -48%);
  }

  .expo__shot img,
  .expo__card[href*="sosyal-medya"] .expo__shot img {
    filter: grayscale(0) contrast(1.04) brightness(0.94) saturate(1.05);
  }

  .expo__card p {
    max-height: 72px;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .expo__shot,
  .expo__shot img,
  .expo__card p,
  .expo__card,
  .expo__icon {
    transition: none;
  }

  .expo__card p {
    max-height: 72px;
    opacity: 1;
    transform: none;
  }
}

.tale {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--section-y) var(--gutter);
}

.tale__marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
}

.tale__marks b {
  position: absolute;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(243, 234, 220, 0.09);
  white-space: nowrap;
}

.tale__marks .m1 { top: 10%; left: 7%; font-size: clamp(28px, 4vw, 56px); }
.tale__marks .m2 { top: 16%; right: 8%; font-size: clamp(22px, 3vw, 42px); }
.tale__marks .m3 { top: 38%; left: 4%; font-size: clamp(24px, 3.4vw, 48px); }
.tale__marks .m4 { top: 32%; right: 6%; font-size: clamp(20px, 2.6vw, 36px); }
.tale__marks .m5 { bottom: 28%; left: 10%; font-size: clamp(26px, 3.6vw, 52px); }
.tale__marks .m6 { bottom: 18%; right: 14%; font-size: clamp(28px, 4vw, 58px); }
.tale__marks .m7 { bottom: 10%; left: 28%; font-size: clamp(18px, 2.2vw, 30px); }
.tale__marks .m8 { top: 58%; right: 22%; font-size: clamp(18px, 2.4vw, 32px); }
.tale__marks .m9 { top: 72%; left: 12%; font-size: clamp(20px, 2.8vw, 38px); }
.tale__marks .m10 { top: 8%; left: 42%; font-size: clamp(16px, 2vw, 26px); }

.tale__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.tale__copy h2 {
  font-family: var(--font);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 18px;
}

.tale__sub {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  margin-bottom: 16px;
}

.tale__body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto 36px;
}

.tale .btn {
  display: inline-flex;
  margin: 0 auto 18px;
}

.tale__link {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.crew {
  padding: var(--section-y) var(--gutter);
  background: var(--bg);
}

.crew__head {
  max-width: 640px;
  margin: 0 auto var(--section-head);
  text-align: center;
}

.crew__head .eyebrow {
  margin-bottom: 12px;
}

.crew__lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

.crew__viewport {
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 1440px;
  margin: 0 auto;
  cursor: grab;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  user-select: none;
  scrollbar-width: none;
}

.crew__viewport::-webkit-scrollbar {
  display: none;
}

.crew__viewport.is-drag {
  cursor: grabbing;
}

.crew__viewport.is-drag .crew__card {
  pointer-events: none;
}

.crew__track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.crew__card {
  flex: 0 0 calc((100cqi - 42px) / 4);
  min-width: 0;
  color: inherit;
  text-decoration: none;
  touch-action: none;
  -webkit-user-drag: none;
}

.crew__photo {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--gold-2);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.crew__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.crew__photo--empty {
  background:
    radial-gradient(circle at 30% 20%, rgba(203, 176, 122, 0.22), transparent 48%),
    linear-gradient(160deg, #1c1713, #0c0a09);
}

.crew__card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.crew__card p {
  margin-top: 4px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .crew__card {
    flex-basis: calc((100cqi - 14px) / 2);
  }
}

@media (max-width: 700px) {
  .crew__card {
    flex-basis: calc((100cqi - 14px) / 2);
  }
}

.tale__link:hover {
  color: var(--gold-2);
}

.stack {
  padding: var(--section-y) var(--gutter);
}

.stack__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.stack__head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.stack__head .eyebrow::before,
.stack__head .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
}

.stack__head .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.stack__head .eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.stack__head .display {
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.08;
}

.stack__lead {
  color: var(--muted);
  margin: 18px auto 0;
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.7;
}

.faq-page .faq {
  margin-top: 0;
}

.cellar {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  width: min(1440px, 100%);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(ellipse at 88% 0%, rgba(203, 176, 122, 0.1), transparent 42%),
    linear-gradient(118deg, #0c0908 0%, #070605 55%, #14100e 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.cellar__visual {
  position: relative;
  min-height: 560px;
}

.cellar__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.cellar__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4.2vw, 64px) clamp(36px, 5vw, 72px) clamp(20px, 3vw, 48px);
}

.cellar__copy .display {
  max-width: none;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.08;
}

.cellar__copy .display em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-2), var(--wine), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cellar__points {
  margin-top: 32px;
  list-style: none;
}

.cellar__points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(243, 234, 220, 0.16);
}

.cellar__points li:first-child {
  border-top: 0;
  padding-top: 0;
}

.cellar__ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cream);
  border: 1px solid rgba(243, 234, 220, 0.22);
  border-radius: 50%;
}

.cellar__ico svg {
  width: 20px;
  height: 20px;
}

.cellar__points p {
  color: rgba(243, 234, 220, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

.stack__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1440px, 100%);
  margin: 16px auto 0;
}

.stack__pillar {
  padding: 28px 26px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-2);
}

.stack__pillar span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.22em;
}

.stack__pillar h3 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.stack__pillar p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .cellar {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
  }

  .cellar__visual {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
    z-index: 0;
  }

  .cellar__copy {
    position: relative;
    z-index: 1;
    padding: 28px 18px 32px;
    justify-content: flex-start;
    background: linear-gradient(180deg, #0c0908 0%, #070605 100%);
  }

  .cellar__copy .display {
    font-size: clamp(22px, 6.4vw, 32px);
    line-height: 1.28;
    letter-spacing: -0.02em;
  }

  .cellar__copy .display em {
    display: inline-block;
    margin: 0 0.08em;
    padding: 0;
    line-height: 1.2;
  }

  .cellar__points {
    margin-top: 22px;
  }

  .cellar__points li {
    padding: 16px 0;
    gap: 12px;
  }

  .stack {
    padding-top: 24px;
  }

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

.atelier {
  display: grid;
  grid-template-columns: 1.28fr 1fr;
  grid-auto-rows: minmax(210px, 1fr);
  gap: 14px;
}

.atelier__card {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  min-height: 210px;
  border-radius: 22px;
  border: 1px solid var(--line);
  color: inherit;
}

.atelier__card--lg {
  grid-row: span 2;
  min-height: 448px;
}

.atelier__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.atelier__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.1) 18%, rgba(7, 6, 5, 0.72) 68%, #070605 100%);
}

.atelier__card--lg::after {
  background:
    linear-gradient(90deg, rgba(156, 43, 58, 0.32), transparent 58%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.08) 16%, rgba(7, 6, 5, 0.78) 70%, #070605 100%);
}

.atelier__card:hover img {
  transform: scale(1.08);
}

.atelier__meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.atelier__meta span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.atelier__card--lg .atelier__meta span {
  color: var(--gold-2);
  border: 1px solid rgba(203, 176, 122, 0.38);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.atelier__meta h3 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.atelier__card--lg h3 {
  font-size: clamp(36px, 4.2vw, 56px);
}

.atelier__meta p {
  color: var(--muted);
  font-size: 14px;
  max-width: 42ch;
}

.work__head {
  margin-bottom: var(--section-head);
}

.work__head .display {
  font-size: clamp(24px, 3.6vw, 44px);
}

.work__head .eyebrow {
  margin-bottom: 12px;
}

.work__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.work__rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: none;
  padding-bottom: 8px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  user-select: none;
}

.work__rail.is-drag {
  cursor: grabbing;
  scroll-snap-type: none;
}

.work__rail.is-drag a {
  pointer-events: none;
}

.work__rail::-webkit-scrollbar {
  display: none;
}

.work__rail .work-card,
.work__rail .work-card--lg {
  flex: 0 0 min(42vw, 520px);
  min-height: 440px;
  scroll-snap-align: none;
  touch-action: none;
  -webkit-user-drag: none;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 280px;
  border: 1px solid var(--line);
}

.work-card--lg {
  grid-row: span 2;
  min-height: 580px;
}

.work-card__media {
  position: absolute;
  inset: 0;
  transition: transform 1.1s var(--ease);
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card--screen {
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: 0;
}

.work__rail .work-card--screen {
  min-height: 0;
}

.work-card--screen .work-card__media {
  position: relative;
  inset: auto;
  aspect-ratio: 16 / 10;
  padding: 18px 12px 12px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #6a635a, #3f3a34);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(203, 176, 122, 0.22);
  overflow: hidden;
}

.work-card--screen .work-card__media img {
  display: block;
  border-radius: 8px;
  object-position: top center;
  background: #111;
  transition: transform 1.1s var(--ease);
}

.work-card--screen .work-card__media::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #5a544c;
  box-shadow: inset 0 0 0 1.5px #111;
}

.work-card--screen .work-card__media::after {
  display: none;
}

.work-card--screen:hover .work-card__media {
  transform: none;
}

.work-card--screen:hover .work-card__media img {
  transform: scale(1.05);
}

.work-card--screen .work-card__info {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 20px 6px 0;
}

.work-card--screen .work-card__info::before {
  content: "";
  display: block;
  width: 24%;
  height: 11px;
  margin: -8px auto 16px;
  background: linear-gradient(180deg, #7a736a, #4a453e 70%, #322e2a);
  border-radius: 0 0 9px 9px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.work-card--screen .work-card__info h3 {
  font-size: 26px;
}

.work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.08) 20%, #070605 94%);
}

.work-card:hover .work-card__media {
  transform: scale(1.08);
}

.work-card__media--atelier {
  background:
    linear-gradient(180deg, transparent 30%, #070605 92%),
    radial-gradient(circle at 30% 20%, #9c2b3a, transparent 40%),
    linear-gradient(135deg, #2b1a16, #0c0a09);
}

.work-card__media--grove {
  background:
    linear-gradient(180deg, transparent 20%, #070605 90%),
    radial-gradient(circle at 70% 30%, #cbb07a, transparent 35%),
    linear-gradient(135deg, #1c2418, #0c0a09);
}

.work-card__media--lumen {
  background:
    linear-gradient(180deg, transparent 20%, #070605 90%),
    radial-gradient(circle at 40% 40%, #e8d5a3, transparent 32%),
    linear-gradient(135deg, #241c14, #0c0a09);
}

.work-card__info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.work-card__info span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-card__info h3 {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 700;
}

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

.process__head {
  margin-bottom: var(--section-head);
  max-width: 640px;
}

.process .eyebrow {
  margin-bottom: 12px;
}

.process .display {
  margin-bottom: 16px;
}

.process__lead {
  color: var(--muted);
  font-size: 16px;
}

.process__row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process__row::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(203, 176, 122, 0.45), transparent);
  pointer-events: none;
  z-index: 0;
}

.step {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 340px;
  padding: 52px 24px 28px;
  border-radius: 22px;
  background: rgba(18, 16, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  --mx: 50%;
  --my: 80%;
  --spot: 0;
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease), transform 0.45s var(--ease);
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(120% 90% at var(--mx) var(--my), rgba(255, 255, 255, var(--spot)), transparent 55%);
}

.step:hover {
  border-color: rgba(203, 176, 122, 0.38);
  background: rgba(28, 24, 22, 0.92);
  transform: translateY(-4px);
}

.step__node {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.step__shot {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  transform: translate(100%, -100%);
  background: radial-gradient(50% 50% at 50% 50%, #9c2b3a, #111);
  box-shadow: -40px 40px 80px 12px rgba(0, 0, 0, 0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.78;
}

.step__shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(156, 43, 58, 0.55), rgba(7, 6, 5, 0.35));
  mix-blend-mode: multiply;
}

.step:hover .step__shot {
  transform: translate(30%, -50%);
}

.step__num {
  position: relative;
  z-index: 3;
  display: block;
  font-family: var(--font);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  margin-top: 18px;
}

.step em {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.step h3 {
  position: relative;
  z-index: 3;
  font-family: var(--font);
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0 12px;
}

.step p {
  position: relative;
  z-index: 3;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.reviews__head {
  margin: 0 auto var(--section-head);
  max-width: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.72), rgba(7, 6, 5, 0.4));
}

.reviews .display {
  margin-bottom: 14px;
  white-space: nowrap;
}

.reviews .display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: #c5a059;
}

.reviews__lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 22px;
}

.reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.72), rgba(7, 6, 5, 0.4));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.reviews__score:hover {
  border-color: rgba(203, 176, 122, 0.38);
  transform: translateY(-4px);
}

.reviews__google {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}

.reviews__google svg {
  display: block;
}

.reviews__score strong {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.reviews__stars,
.review__stars {
  color: #c5a059;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.reviews__score em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}

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

.review {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.72), rgba(7, 6, 5, 0.4));
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.review:hover {
  border-color: rgba(203, 176, 122, 0.38);
  transform: translateY(-4px);
}

.review__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.review__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9c2b3a;
  color: #f3eadc;
  font-size: 14px;
  font-weight: 700;
}

.review:nth-child(2) .review__avatar,
.review:nth-child(5) .review__avatar {
  background: #5a141e;
}

.review:nth-child(3) .review__avatar,
.review:nth-child(6) .review__avatar {
  background: #3d2a16;
  color: #e8d5a3;
}

.review__meta h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.review__meta p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.review > p {
  color: var(--cream);
  font-size: 15px;
  line-height: 1.6;
}

.reviews__more.btn {
  display: flex;
  width: 100%;
  margin: 16px 0 0;
  min-height: 72px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.72), rgba(7, 6, 5, 0.4));
  color: var(--gold);
  letter-spacing: 0.22em;
  overflow: hidden;
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.reviews__more.btn::before {
  display: none;
}

.reviews__more.btn:hover {
  color: var(--gold-2);
  border-color: rgba(203, 176, 122, 0.38);
  transform: translateY(-4px);
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 12%, rgba(156, 43, 58, 0.22), transparent 46%),
    radial-gradient(ellipse at 8% 88%, rgba(203, 176, 122, 0.1), transparent 42%),
    var(--bg-2);
}

.cta__glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  right: -10vw;
  top: -10vw;
  background: radial-gradient(circle, var(--wine-glow), transparent 65%);
  pointer-events: none;
}

.cta__glow--alt {
  right: auto;
  left: -18vw;
  top: auto;
  bottom: -16vw;
  background: radial-gradient(circle, rgba(203, 176, 122, 0.16), transparent 65%);
}

.cta__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.cta .eyebrow {
  margin-bottom: 12px;
}

.cta__head .display {
  white-space: nowrap;
}

.cta__text {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.cta__board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.cta__info {
  display: grid;
  gap: 12px;
}

.cta__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.78), rgba(7, 6, 5, 0.42));
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.cta__card:hover {
  border-color: rgba(203, 176, 122, 0.42);
  transform: translateY(-2px);
}

.cta__ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(156, 43, 58, 0.28);
  color: #e8d5a3;
  flex-shrink: 0;
}

.cta__ico svg {
  width: 20px;
  height: 20px;
}

.cta__card em {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.cta__card strong {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  color: var(--cream);
}

.form {
  max-width: none;
  display: grid;
  gap: 16px;
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(28, 23, 19, 0.82), rgba(7, 6, 5, 0.5));
}

.form__kicker {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.form input,
.form select,
.form textarea {
  background: rgba(7, 6, 5, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(203, 176, 122, 0.55);
}

.form__ok {
  color: var(--gold-2);
}

.form button {
  justify-self: start;
  margin-top: 8px;
}

.footer {
  padding: 40px var(--gutter) 28px;
  border-top: 1px solid var(--line);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__brand {
  display: inline-block;
  margin-bottom: 10px;
}

.footer__brand img {
  height: 60px;
  width: auto;
  background: none;
}

.footer p,
.footer a,
.footer span {
  color: var(--muted);
}

.footer__about {
  max-width: 36ch;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.footer a.footer__more {
  margin-top: 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__top a {
  display: block;
}

.footer__contact {
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.footer__contact span,
.contact-aside span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
}

.footer__bottom {
  display: flex;
  justify-content: flex-start;
  font-size: 13px;
}

.pricing {
  background:
    radial-gradient(ellipse at top right, rgba(156, 43, 58, 0.16), transparent 42%),
    var(--bg-2);
  overflow: visible;
}

.pricing__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  margin-bottom: var(--section-head);
  overflow: visible;
}

.pricing__head {
  max-width: 760px;
  margin-bottom: var(--section-head);
}

.pricing__intro .pricing__head {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.pricing__sign-wrap {
  flex: 0 0 auto;
  align-self: center;
  margin: -36px 0 0 auto;
  padding: 0;
  overflow: visible;
}

.pricing__sign {
  display: block;
  width: min(72vw, 860px);
  margin-left: auto;
  margin-right: 0;
  height: auto;
  overflow: visible;
  transform: rotate(-5deg);
  transform-origin: 100% 58%;
  filter: drop-shadow(0 10px 22px rgba(197, 160, 89, 0.18));
  pointer-events: none;
  user-select: none;
}

.pricing__sign-fill {
  font-family: "Bastliga One", cursive;
}

.pricing__sign-line {
  display: none;
}

.pricing__sign-pen {
  filter: drop-shadow(0 0 7px rgba(244, 230, 200, 0.85));
}

@media (max-width: 1100px) {
  .pricing__sign {
    width: min(58vw, 640px);
  }
}

@media (max-width: 860px) {
  .pricing__intro {
    display: block;
  }

  .pricing__sign-wrap {
    display: none;
  }

  .pricing__head .display {
    white-space: normal;
  }

  .pricing__intro .pricing__lead {
    white-space: normal;
  }
}

.pricing__head .eyebrow {
  margin-bottom: 12px;
}

.pricing__head .display {
  white-space: nowrap;
}

.pricing__lead {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.pricing__intro .pricing__lead {
  max-width: none;
  white-space: nowrap;
}

.bill-toggle {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 6, 5, 0.5);
  gap: 4px;
}

.bill-toggle__btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s;
}

.bill-toggle__btn em {
  font-style: normal;
  margin-left: 6px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.bill-toggle__btn.is-active {
  background: var(--gold);
  color: var(--bg);
}

.bill-toggle__btn.is-active em {
  color: var(--wine-deep);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: #f6efe3;
  color: #1a1612;
  border: 1px solid rgba(26, 22, 18, 0.08);
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.plan--featured {
  background: linear-gradient(180deg, #f4e7f0, #f6efe3 28%);
  border: 1px solid rgba(156, 43, 58, 0.45);
  box-shadow: 0 18px 50px rgba(90, 20, 30, 0.22);
  transform: translateY(-12px);
}

.plan--featured:hover {
  transform: translateY(-18px);
}

.plan--dark {
  background:
    linear-gradient(180deg, rgba(203, 176, 122, 0.08), transparent 30%),
    #12100e;
  color: var(--cream);
  border-color: var(--line);
}

.plan[data-plan="Go"] {
  background: linear-gradient(180deg, #fbf6ee, #efe4d4);
  border-color: rgba(26, 22, 18, 0.12);
}

.plan[data-plan="Gold"] {
  background: linear-gradient(180deg, #f3ead0, #f6efe3 34%);
  border: 1px solid rgba(203, 176, 122, 0.62);
  box-shadow: 0 16px 40px rgba(160, 120, 50, 0.12);
}

.plan[data-plan="Gold"] .plan__top h3 {
  color: #8a6a32;
}

.plan[data-plan="Gold"] .plan__badge,
.plan[data-plan="Mahzen"] .plan__badge {
  background: linear-gradient(180deg, #e8d5a3, #c5a059);
  color: #1a1612;
}

.plan[data-plan="Gold"] .plan__add {
  color: #8a6a32;
}

.plan[data-plan="Gold"] .plan__list li::before {
  border-color: #c5a059;
}

.plan[data-plan="Gold"] .plan__cta {
  color: #8a6a32;
  border-color: #c5a059;
}

.plan[data-plan="Gold"] .btn::before {
  background: linear-gradient(180deg, #e8d5a3, #c5a059);
}

.plan[data-plan="Gold"] .btn:hover {
  color: #1a1612;
}

.plan[data-plan="Premium"] {
  background: linear-gradient(180deg, #f4e7f0, #f6efe3 32%);
  border: 1px solid rgba(156, 43, 58, 0.48);
  box-shadow: 0 16px 40px rgba(90, 20, 30, 0.14);
}

.plan[data-plan="Premium"] .plan__top h3 {
  color: var(--wine);
}

.plan[data-plan="Premium"] .plan__cta {
  color: var(--wine);
  border-color: var(--wine);
}

.plan[data-plan="Premium"] .btn::before {
  background: var(--wine);
}

.plan[data-plan="Premium"] .btn:hover {
  color: #f6efe3;
}

.plan--gold {
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% -8%, rgba(156, 43, 58, 0.52), transparent 56%),
    linear-gradient(180deg, rgba(203, 176, 122, 0.18), rgba(16, 14, 12, 0.96) 42%, #0c0a09);
  border: 1px solid rgba(232, 213, 163, 0.5);
  box-shadow:
    0 0 0 1px rgba(203, 176, 122, 0.12),
    0 18px 48px rgba(156, 43, 58, 0.3),
    inset 0 1px 0 rgba(232, 213, 163, 0.22);
}

.plan--gold > * {
  position: relative;
  z-index: 1;
}

.plan--gold::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 196, 0.28), transparent);
  transform: translateX(-180%) skewX(-18deg);
  animation: ikasKickerShine 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.plan--gold:hover {
  box-shadow:
    0 0 0 1px rgba(232, 213, 163, 0.28),
    0 28px 60px rgba(156, 43, 58, 0.4),
    inset 0 1px 0 rgba(232, 213, 163, 0.3);
}

.plan.plan--gold .plan__top h3 {
  color: transparent;
  background: linear-gradient(180deg, #f6e9cc 8%, #c5a059 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan.plan--gold .plan__kicker {
  color: #e8d5a3;
}

.plan.plan--gold .plan__cta {
  overflow: hidden;
  isolation: isolate;
  color: #e8d5a3;
  border-color: rgba(232, 213, 163, 0.55);
  background: linear-gradient(180deg, rgba(156, 43, 58, 0.38), rgba(28, 23, 19, 0.72));
  box-shadow: 0 8px 22px rgba(156, 43, 58, 0.22);
}

.plan.plan--gold .btn::before {
  background: linear-gradient(180deg, #e8d5a3, #c5a059);
}

.plan.plan--gold .btn:hover {
  color: #1a1612;
}

@media (prefers-reduced-motion: reduce) {
  .plan--gold::after {
    animation: none;
    display: none;
  }
}

body.is-premium-open {
  overflow: hidden;
}

.premium-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.premium-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

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

.premium-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 5, 0.84);
  backdrop-filter: blur(12px);
}

.premium-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 40px 32px 32px;
  border-radius: 28px;
  border: 1px solid rgba(232, 213, 163, 0.4);
  background:
    radial-gradient(ellipse at 50% -18%, rgba(156, 43, 58, 0.42), transparent 52%),
    #12100e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.premium-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.premium-modal__badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(232, 213, 163, 0.55);
  border-radius: 6px;
  color: #e8d5a3;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.premium-modal__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.premium-modal__lead {
  margin: 10px 0 28px;
  color: var(--muted);
  max-width: 520px;
}

.premium-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.premium-tier {
  padding: 28px 24px 20px;
  border-radius: 22px;
  background: rgba(7, 6, 5, 0.45);
  border: 1px solid var(--line);
  color: var(--cream);
}

.premium-tier.is-plus {
  border-color: rgba(232, 213, 163, 0.5);
  background:
    radial-gradient(ellipse at 50% -20%, rgba(156, 43, 58, 0.38), transparent 58%),
    rgba(7, 6, 5, 0.55);
}

.premium-tier h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.premium-tier.is-plus h3 {
  color: transparent;
  background: linear-gradient(180deg, #f6e9cc 8%, #c5a059 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-tier__price {
  margin-bottom: 6px;
}

.premium-tier__price strong {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.premium-tier__price span {
  color: var(--muted);
  font-size: 14px;
}

.premium-tier__note {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.premium-tier .plan__cta {
  color: #e8d5a3;
  border-color: rgba(232, 213, 163, 0.55);
}

.premium-tier .btn::before {
  background: linear-gradient(180deg, #e8d5a3, #c5a059);
}

.premium-tier .btn:hover {
  color: #1a1612;
}

.premium-tier .plan__list li {
  border-bottom-color: var(--line);
}

.premium-tier .plan__list li::before {
  border-color: var(--gold);
}

@media (max-width: 760px) {
  .premium-modal {
    padding: 12px;
    align-items: flex-start;
  }

  .premium-modal__panel {
    padding: 48px 18px 20px;
  }

  .premium-tiers {
    grid-template-columns: 1fr;
  }
}

.plan:has(.plan__badge) {
  padding-top: 48px;
}

.plan--dark .plan__was {
  color: rgba(243, 234, 220, 0.45);
}

.plan__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.plan__badge--lime {
  background: #c8e36a;
  color: #1a1612;
}

.plan__top h3 {
  font-family: var(--font);
  font-size: 40px;
  line-height: 1;
}

.plan__top p {
  margin: 8px 0 18px;
  color: #6d645b;
  font-size: 14px;
}

.plan--dark .plan__top p {
  color: var(--muted);
}

.plan__price {
  min-height: 128px;
}

#paketler .plan__price {
  min-height: 92px;
}

.plan__amount {
  display: block;
  font-family: var(--font);
  font-size: clamp(28px, 2.4vw, 34px);
  letter-spacing: -0.03em;
}

.plan__period {
  color: #6d645b;
  font-size: 13px;
}

.plan--dark .plan__period {
  color: var(--muted);
}

.plan__was {
  display: block;
  margin-bottom: 2px;
  color: #9a9086;
  text-decoration: line-through;
  font-size: 15px;
}

.plan__save {
  margin-top: 10px;
  color: #6d645b;
  font-size: 13px;
  line-height: 1.45;
}

.plan__save b {
  color: #1a1612;
}

.plan--dark .plan__save {
  color: var(--muted);
}

.plan--dark .plan__save b {
  color: var(--gold);
}

.plan:not(.is-month) .plan__save {
  display: none;
}

.plan__kicker {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
}

.plan__price--custom strong {
  font-family: var(--font);
  font-size: 22px;
  line-height: 1.25;
}

.plan__cta {
  width: 100%;
  margin: 8px 0 10px;
  color: #1a1612;
  border-color: #1a1612;
}

.plan .btn::before {
  background: #1a1612;
}

.plan .btn:hover {
  color: #f6efe3;
}

.plan__cta.btn--gold {
  color: var(--bg);
  border: 0;
}

.plan .btn--gold::before {
  background: #1a1612;
}

.plan .btn--gold:hover {
  color: var(--gold-2);
}

.plan--dark .plan__cta {
  color: var(--cream);
  border-color: var(--line);
}

.plan--dark .btn::before {
  background: var(--gold);
}

.plan--dark .btn:hover {
  color: var(--bg);
}

.plan__note {
  font-size: 12px;
  color: #8a8076;
  margin-bottom: 16px;
}

.plan__add {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
  color: var(--wine);
  margin: 8px 0 12px;
}

.plan__add span {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  font-size: 12px;
  color: #6d645b;
}

@media (min-width: 981px) {
  #plans .plan {
    padding-top: 48px;
  }

  #plans .plan__top p {
    min-height: 2.7em;
  }

  #plans .plan__price {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  #plans .plan:not(:has(.plan__add)) .plan__cta {
    margin-bottom: 52px;
  }
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 981px) {
    #plans {
      grid-template-rows: auto auto auto auto 1fr;
    }

    #plans .plan {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 5;
    }

    #plans .plan__top {
      grid-row: 1;
    }

    #plans .plan__price {
      grid-row: 2;
      min-height: 0;
    }

    #plans .plan__cta {
      grid-row: 3;
      align-self: stretch;
      margin-top: 12px;
      margin-bottom: 4px;
    }

    #plans .plan:not(:has(.plan__add)) .plan__cta {
      margin-bottom: 4px;
    }

    #plans .plan__add {
      grid-row: 4;
      margin-top: 8px;
      margin-bottom: 12px;
    }

    #plans .plan__list {
      grid-row: 5;
    }
  }
}

.plan--dark .plan__add {
  color: var(--gold);
}

.plan--dark .plan__add span {
  color: var(--muted);
}

.plan__box {
  background: rgba(156, 43, 58, 0.08);
  border-radius: 14px;
  padding: 14px 14px 8px;
  margin-bottom: 16px;
}

.plan--dark .plan__box {
  background: rgba(203, 176, 122, 0.08);
}

.plan__box h4 {
  font-size: 13px;
  margin-bottom: 8px;
}

.plan__box ul,
.plan__list {
  list-style: none;
}

.plan__box li,
.plan__list li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 13px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(26, 22, 18, 0.06);
}

.plan--dark .plan__list li {
  border-bottom-color: var(--line);
}

.plan__box li::before,
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--wine);
  border-bottom: 2px solid var(--wine);
  transform: rotate(-45deg);
}

.plan--dark .plan__list li::before {
  border-color: var(--gold);
}

.tag {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.tag--gold {
  background: #f3d56b;
  color: #1a1612;
}

.tag--gift,
.tag--ai {
  background: #d7ec8a;
  color: #1a1612;
}

.ikas {
  background:
    radial-gradient(ellipse at top left, rgba(156, 43, 58, 0.14), transparent 44%),
    var(--bg);
}

.ikas-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.ikas-logo {
  width: 180px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
}

.ikas-gift {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(203, 176, 122, 0.1);
  font-size: 13px;
  color: var(--cream);
}

.ikas-gift em {
  font-style: normal;
  color: var(--gold);
}

.ikas .pricing__head {
  text-align: center;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ikas-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 22px;
}

.ikas-kicker {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 11px 28px;
  border-radius: 999px;
  border: 1px solid rgba(232, 213, 163, 0.55);
  background:
    linear-gradient(180deg, rgba(156, 43, 58, 0.38), rgba(28, 23, 19, 0.7));
  color: #e8d5a3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(203, 176, 122, 0.12),
    0 10px 28px rgba(156, 43, 58, 0.28);
}

.ikas-kicker::after {
  content: "";
  position: absolute;
  inset: -40% auto;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 196, 0.45), transparent);
  transform: translateX(-180%) skewX(-18deg);
  animation: ikasKickerShine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ikasKickerShine {
  0%,
  35% {
    transform: translateX(-180%) skewX(-18deg);
  }
  70%,
  100% {
    transform: translateX(280%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ikas-kicker::after {
    animation: none;
    display: none;
  }
}

.ikas .pricing__head .display {
  white-space: nowrap;
}

.plan__year {
  margin-top: 8px;
  font-size: 14px;
  color: #6d645b;
}

.plan__year s {
  color: #9a9086;
  margin-right: 6px;
}

.plan--dark .plan__year {
  color: var(--muted);
}

.plan--dark .plan__year s {
  color: rgba(243, 234, 220, 0.4);
}

.plan__amount span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: #6d645b;
  margin-left: 4px;
}

.plan--dark .plan__amount span {
  color: var(--muted);
}

.faq {
  margin-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--nav) + 24px);
  min-width: 0;
  max-width: 100%;
}

.faq__intro h2,
.faq h2,
.faq h3 {
  font-family: var(--font);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 8px 0 16px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.faq__lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 36ch;
}

.faq__list {
  min-width: 0;
}

.faq__item {
  border-top: 1px solid var(--line);
  padding: 0;
  transition: background 0.4s var(--ease);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__item:hover {
  background: linear-gradient(90deg, rgba(203, 176, 122, 0.08), transparent 70%);
}

.faq__item[open],
.faq__item.is-open {
  background: linear-gradient(90deg, rgba(156, 43, 58, 0.16), transparent 70%);
}

.faq__item summary {
  cursor: none;
  list-style: none;
  font-family: var(--font);
  font-size: 18px;
  display: grid;
  grid-template-columns: 48px 1fr 42px;
  gap: 12px;
  align-items: center;
  padding: 22px 8px 22px 0;
  transition: color 0.3s;
}

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

.faq__item summary:hover .faq__q {
  color: var(--gold-2);
}

.faq__no {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.faq__q {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq__item[open] .faq__q,
.faq__item.is-open .faq__q {
  color: var(--gold-2);
}

.faq__item:hover .faq__plus {
  border-color: rgba(203, 176, 122, 0.55);
}

.faq__plus {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  justify-self: end;
  transition: border-color 0.35s, background 0.35s, transform 0.45s var(--ease);
}

.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.faq__plus::before {
  width: 12px;
  height: 1.5px;
}

.faq__plus::after {
  width: 1.5px;
  height: 12px;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.faq__item[open] .faq__plus,
.faq__item.is-open .faq__plus {
  border-color: var(--gold);
  background: rgba(156, 43, 58, 0.28);
  transform: rotate(90deg);
}

.faq__item[open] .faq__plus::after,
.faq__item.is-open .faq__plus::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq__a {
  overflow: hidden;
}

.faq__a p {
  margin: 0;
  padding: 0 8px 22px 60px;
  color: var(--muted);
  max-width: 62ch;
}

.ig {
  background: #f4ece0;
  color: #1a1612;
}

.ig__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
  margin-bottom: var(--section-head);
}

.ig__badge {
  display: inline-block;
  background: rgba(156, 43, 58, 0.12);
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.ig__title h2 {
  font-family: var(--font);
  font-size: clamp(24px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.ig__title em {
  font-style: normal;
  color: var(--wine);
}

.ig__aside p {
  color: #6d645b;
  font-size: 16px;
  margin-bottom: 18px;
}

.ig__follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), #c45a3a);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.ig__follow svg {
  width: 16px;
  height: 16px;
}

.ig__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.ig-embed {
  width: 100%;
  min-height: 720px;
  height: 720px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(26, 22, 18, 0.12);
  overflow: hidden;
}

.nav__links a.is-current {
  opacity: 1;
}

.nav__links a.is-current::after {
  width: 100%;
}

.magnetic {
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

@media (max-width: 1280px) and (min-width: 981px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan--featured {
    transform: none;
  }
}

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

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__reel {
    max-width: 640px;
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__partners {
    grid-column: 2 / -1;
  }

  .nav__partners img {
    height: 12px;
  }

  .nav__partners img[alt="Google"] {
    height: 15px;
  }

  .nav__ig {
    grid-column: 3;
  }

  .nav__burger {
    display: block;
    grid-column: 4;
  }

  .nav__logo img {
    height: 42px;
  }

  .intro,
  .store__hero-card,
  .ecom__grid,
  .shop__rail,
  .work__grid,
  .process__row,
  .reviews__grid,
  .cta__board,
  .form__row,
  .plans,
  .faq {
    grid-template-columns: 1fr;
  }

  .faq__intro {
    position: static;
  }

  .faq__item summary {
    font-size: 16px;
    grid-template-columns: 40px 1fr 42px;
  }

  .faq__a p {
    padding-left: 0;
  }

  .process__row::before {
    display: none;
  }

  .step__node {
    left: 22px;
    transform: none;
  }

  .step:hover,
  .review:hover {
    transform: none;
  }

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

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

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

  .plans {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .plan,
  .plan--featured {
    min-width: min(86vw, 380px);
    scroll-snap-align: start;
    transform: none;
  }

  .plan--featured:hover,
  .plan:hover {
    transform: none;
  }

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

  .atelier__card--lg {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .expo__card {
    flex: 0 0 min(72vw, 260px);
    height: 340px;
  }

  .work-card--lg {
    grid-row: auto;
    min-height: 380px;
  }

  .work__rail .work-card,
  .work__rail .work-card--lg {
    flex-basis: min(82vw, 360px);
    min-height: 380px;
  }

  .work__rail .work-card--screen {
    min-height: 0;
  }

  .tale__marks b {
    opacity: 0.7;
    font-size: 22px !important;
  }

  .typewriter {
    max-width: none;
  }

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

  .hero__scroll {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 22px;
  }
}

@media (max-width: 640px) {
  .nav__partners {
    display: none;
  }

  .ikas .pricing__head .display {
    white-space: normal;
  }

  .ikas-logo {
    width: 180px !important;
    height: auto !important;
  }

  .reviews .display {
    white-space: normal;
  }

  .cta__head .display {
    white-space: normal;
  }
}

.page-hero {
  min-height: 0;
  padding: calc(var(--nav) + 18px) var(--gutter) 32px;
  display: grid;
  align-content: start;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at right, var(--wine-glow), transparent 46%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.2), var(--bg));
  pointer-events: none;
}

.crumb {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

section > .crumb {
  margin-bottom: 28px;
}

.crumb a {
  color: var(--gold);
}

.page-hero .display,
.page-hero p {
  position: relative;
}

.page-hero__lead {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

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

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.split__text p {
  color: var(--muted);
  font-size: 17px;
  margin: 12px 0 20px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
  color: var(--cream);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.work-detail__cover {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stats-row article {
  border-top: 1px solid var(--gold);
  padding-top: 16px;
}

.stats-row strong {
  display: block;
  font-family: var(--font);
  font-size: 32px;
}

.stats-row span {
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  gap: 6px;
}

.inner-page .nav {
  transform: none;
}

.inner-page .loader {
  display: none;
}

.inner-page main > section:first-child:not(.page-hero):not(.belief) {
  padding-top: calc(var(--nav) + 18px);
}

.ty-page {
  padding: var(--section-y) var(--gutter);
  background:
    radial-gradient(ellipse at 78% 40%, rgba(242, 122, 26, 0.16), transparent 46%),
    radial-gradient(ellipse at 12% 80%, rgba(156, 43, 58, 0.14), transparent 42%),
    var(--bg);
}

.ty-page .crumb {
  margin-bottom: 28px;
}

.ty-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px 72px;
  align-items: center;
}

.ty-page__copy {
  min-width: 0;
  max-width: 640px;
}

.ty-page__copy .display {
  white-space: nowrap;
  font-size: clamp(22px, 2.6vw, 34px);
}

.ty-page__lead {
  margin: 16px 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.ty-page__cta {
  min-height: 60px;
  padding: 0 34px;
  font-size: 14px;
  font-weight: 700;
  background: #f27a1a;
  color: #fff;
  border: 0;
  box-shadow:
    0 10px 28px rgba(242, 122, 26, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 48px rgba(242, 122, 26, 0.28);
}

.ty-page__cta::before {
  background: #ff9a3d;
}

.ty-page__cta:hover {
  color: #fff;
}

.ty-page__logo {
  display: block;
  width: min(100%, 280px);
  justify-self: end;
}

.ty-page__logo img {
  width: 100%;
  height: auto;
  background: transparent;
}

@media (max-width: 980px) {
  .ty-page__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ty-page__copy {
    max-width: 640px;
  }

  .ty-page__copy .display {
    font-size: clamp(20px, 5.4vw, 28px);
  }

  .ty-page__logo {
    order: -1;
    justify-self: center;
    width: min(100%, 180px);
  }
}

.ty-products {
  padding: 8px var(--gutter) var(--section-y);
  background: var(--bg);
}

.ty-products__head {
  max-width: 720px;
  margin-bottom: 32px;
}

.ty-products__lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.ty-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #120f0d;
  transition: transform 0.45s var(--ease), border-color 0.3s;
}

.ty-card:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 176, 122, 0.45);
}

.ty-card__media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3eadc;
}

.ty-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ty-card:hover .ty-card__media img {
  transform: scale(1.05);
}

.ty-card h3 {
  margin: 0;
  padding: 14px 14px 16px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .ty-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ty-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ty-card h3 {
    font-size: 12px;
    padding: 11px 11px 13px;
  }
}

.inner-page main > .belief + .about-code {
  padding-top: 36px;
}

.pricing__head .crumb {
  margin-bottom: 16px;
}

a.work-card,
a.expo__card,
a.works-flow__card,
a.crew__card {
  color: inherit;
}

a.expo__card {
  display: flex;
}

a.atelier__card {
  color: inherit;
}

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

.page-hero--contact {
  min-height: 0;
  align-content: start;
  padding-bottom: 36px;
}

.page-hero--contact::before {
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.12), transparent 42%);
}

.page-hero--contact .page-hero__lead {
  margin-bottom: 28px;
}

.page-hero--contact .contact-map {
  z-index: 2;
}

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

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.related a {
  display: block;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.35s, background 0.35s;
}

.related a:hover {
  border-color: var(--gold);
  background: rgba(156, 43, 58, 0.12);
}

.related span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.related h3 {
  font-family: var(--font);
  font-size: 28px;
}

.contact-aside {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.contact-aside a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gold);
  line-height: 1.45;
}

.contact-aside svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-map {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
}

.contact-map__ring {
  position: relative;
  overflow: hidden;
  padding: 3px;
  border-radius: 18px;
  isolation: isolate;
  box-shadow: 0 0 28px rgba(203, 176, 122, 0.22), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.contact-map__ring::before,
.contact-map__ring::after {
  content: "";
  position: absolute;
  inset: -55%;
  pointer-events: none;
}

.contact-map__ring::before {
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--gold-2) 18deg,
    var(--gold) 42deg,
    transparent 88deg,
    transparent 180deg,
    var(--gold-2) 210deg,
    var(--gold) 248deg,
    transparent 300deg
  );
  animation: mapSpin 3.4s linear infinite;
}

.contact-map__ring::after {
  background: conic-gradient(
    from 180deg,
    transparent 0deg,
    rgba(232, 213, 163, 0.55) 24deg,
    transparent 70deg
  );
  animation: mapSpin 5.6s linear infinite reverse;
}

.contact-map__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(203, 176, 122, 0.7);
  border-radius: 15px;
  aspect-ratio: 1440 / 520;
  background: #070605;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.92) brightness(0.7) sepia(0.55) hue-rotate(6deg) saturate(1.35);
}

.contact-map__hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.contact-map__hud::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 90px rgba(7, 6, 5, 0.55);
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.2), transparent 18%, rgba(7, 6, 5, 0.46) 100%);
}

.contact-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203, 176, 122, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 176, 122, 0.12) 1px, transparent 1px);
  background-size: 11.11% 20%;
  animation: mapGrid 22s linear infinite;
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 74%);
}

.contact-map__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  box-shadow: 0 0 16px rgba(203, 176, 122, 0.65);
  animation: mapScanX 5.2s ease-in-out infinite;
}

.contact-map__marker {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 44px;
  height: 56px;
  transform: translate(-50%, -82%);
}

.contact-map__pulse {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, 0);
  animation: mapPulse 2.1s ease-out infinite;
}

.contact-map__pin {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 22px;
  height: 22px;
  background: linear-gradient(160deg, var(--gold-2), var(--gold) 55%, #a58b52);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, 0) rotate(-45deg);
  box-shadow:
    0 0 0 5px rgba(7, 6, 5, 0.88),
    0 0 18px rgba(203, 176, 122, 0.7);
}

.contact-map__pin::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #070605;
  border-radius: 50%;
}

.contact-map__open {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: #070605;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map__open:hover {
  background: var(--gold);
  color: #070605;
}

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

@keyframes mapGrid {
  to { background-position: 11.11% 20%; }
}

@keyframes mapScanX {
  0% { top: 8%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

@keyframes mapPulse {
  0% { transform: translate(-50%, 0) scale(0.7); opacity: 0.85; }
  100% { transform: translate(-50%, 0) scale(2.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-map__ring::before,
  .contact-map__ring::after,
  .contact-map__grid,
  .contact-map__scan,
  .contact-map__pulse {
    animation: none;
  }

  .contact-map__scan,
  .contact-map__pulse {
    display: none;
  }
}

@media (max-width: 720px) {
  .contact-map__ring,
  .contact-map__frame {
    border-radius: 14px;
  }

  .contact-map__frame {
    aspect-ratio: 4 / 3;
  }

  .contact-map__open {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 980px) {
  .footer__top,
  .split,
  .stats-row,
  .related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .store__nav span {
    display: none;
  }

  .store__search {
    max-width: none;
    flex-basis: 100%;
    order: 5;
    margin-left: 0;
  }

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

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

  .product-card--3 {
    display: none;
  }
}

.vault-login {
  padding: 0 var(--gutter) 96px;
}

.vault-login .form {
  max-width: 420px;
}

.vault-error {
  color: #e8b4b8;
}

.vault-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vault-flash {
  margin: 0 var(--gutter) 20px;
  padding: 12px 0;
  color: var(--gold-2);
  font-size: 14px;
}

.vault-flash--err {
  color: #e8b4b8;
}

.vault {
  padding: 0 var(--gutter) 96px;
  display: grid;
  gap: 14px;
}

.vault-sec {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-2);
  overflow: hidden;
}

.vault-sec[open] {
  border-color: rgba(203, 176, 122, 0.38);
}

.vault-sec summary {
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: none;
}

.vault-sec summary::-webkit-details-marker {
  display: none;
}

.vault-sec__index {
  font-family: var(--font);
  font-size: 28px;
  color: var(--gold);
}

.vault-sec__copy {
  display: grid;
  gap: 4px;
}

.vault-sec__copy strong {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
}

.vault-sec__copy em {
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
}

.vault-sec__count {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.vault-sec__body {
  padding: 0 24px 28px;
  border-top: 1px solid var(--line);
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 24px;
}

.vault-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-3);
  min-height: 280px;
  display: grid;
  grid-template-rows: 170px 1fr;
}

.vault-card__media {
  overflow: hidden;
  background: #0c0a09;
}

.vault-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vault-card__info {
  padding: 16px 18px 18px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.vault-card__info h3 {
  font-family: var(--font);
  font-size: 26px;
}

.vault-card__info p {
  color: var(--muted);
  font-size: 14px;
}

.vault-card__link {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.vault-card__del {
  justify-self: start;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.vault-card__del:hover {
  color: var(--cream);
  border-bottom-color: var(--wine);
}

.vault-card--empty {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
  min-height: 280px;
  border-style: dashed;
  background: transparent;
  padding: 24px;
}

.vault-card__plus {
  font-family: var(--font);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.vault-card--empty h3 {
  font-family: var(--font);
  font-size: 18px;
}

.vault-card--empty p {
  color: var(--muted);
  font-size: 14px;
  max-width: 220px;
}

.vault-form {
  margin-top: 24px;
  max-width: none;
  padding-top: 8px;
}

.vault-form__title {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.vault-form input[type="file"] {
  border-bottom: 0;
  padding-top: 8px;
}

@media (max-width: 980px) {
  .vault-grid,
  .vault-sec summary {
    grid-template-columns: 1fr;
  }

  .vault-sec__count {
    justify-self: start;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 0 var(--gutter) 96px;
}

.blog-grid .blog-card {
  width: 100%;
}

.blog-card .work-card__info {
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.blog-card .work-card__info span {
  font-size: 10px;
}

.blog-card .work-card__info h3 {
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 600;
}

.blog-card .work-card__info p {
  font-size: 13px !important;
  line-height: 1.4;
}

.blog-card--lead .work-card__info h3 {
  font-size: 26px !important;
}

.blog-card--lead {
  grid-column: 1 / -1;
  min-height: 420px;
}

.blog-empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

.page-hero--blog .display {
  max-width: none;
  font-size: clamp(22px, 2.4vw, 32px) !important;
}

.blog-article {
  padding: 0 0 48px;
}

.blog-article,
.blog-article p,
.blog-article li {
  font-family: var(--font);
}

.blog-article__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-article__lead {
  position: relative;
  max-width: none;
  margin-top: 16px;
  color: var(--cream);
  font-size: 16px !important;
  line-height: 1.5;
}

.blog-article__cover {
  margin: 8px var(--gutter) 28px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.blog-article__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-article__body,
.blog-article__foot {
  max-width: var(--page);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}

.blog-article__body {
  color: var(--muted);
  font-size: 15px !important;
  line-height: 1.65;
}

.blog-article__body p,
.blog-article__body li {
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.blog-article__body p,
.blog-article__body h2,
.blog-article__body h3,
.blog-article__body ul,
.blog-article__body ol,
.blog-article__body blockquote {
  max-width: none;
  width: 100%;
}

.blog-article__body p + p {
  margin-top: 0.9em;
}

.blog-article__body h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px !important;
  line-height: 1.25;
  margin: 1.4em 0 0.4em;
}

.blog-article__body h3 {
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 600;
  margin: 1.2em 0 0.35em;
}

.blog-article__body ul,
.blog-article__body ol {
  margin: 1.1em 0 1.3em;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
}

.blog-article__body li::marker {
  color: var(--gold);
}

.blog-article__body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(203, 176, 122, 0.35);
}

.blog-article__body blockquote {
  margin: 1.4em 0;
  padding: 14px 0 14px 18px;
  border-left: 2px solid var(--gold);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
}

.blog-article__foot {
  padding-top: 8px;
}

.blog-article .page-cta {
  margin-top: 48px;
}

.blog-related {
  max-width: var(--page);
  margin: 64px auto 0;
  padding: 0 var(--gutter) 24px;
}

.blog-related h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 28px;
}

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

.blog-related--home {
  padding: var(--section-y) var(--gutter) 8px;
}

.blog-related--home .page-cta {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .blog-card--lead {
    min-height: 320px;
  }

  .blog-related__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article__body blockquote {
    font-size: 16px;
  }
}

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

.about-code {
  padding-top: calc(var(--nav) + 18px);
  padding-bottom: 88px;
}

.inner-page main > section.about-code:first-child {
  padding-top: calc(var(--nav) + 18px);
}

.about-code .display {
  margin-bottom: 10px;
}

.about-code__lead {
  max-width: 46rem;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
}

.about-code .page-cta {
  margin-top: 28px;
}

.code-win {
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
  cursor: text;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(203, 176, 122, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(203, 176, 122, 0.05), transparent 28%),
    #0b0908;
  box-shadow:
    0 0 0 1px rgba(203, 176, 122, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.45);
}

.code-win__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 14, 12, 0.92);
}

.code-win__dots {
  display: flex;
  gap: 7px;
}

.code-win__dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
}

.code-win__dots i:nth-child(2) {
  background: var(--gold);
}

.code-win__dots i:nth-child(3) {
  background: var(--cream);
}

.code-win__file {
  justify-self: center;
  padding: 6px 14px;
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--line);
  border-bottom-color: #0b0908;
  margin-bottom: -1px;
  color: var(--gold-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.code-win__path {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.code-win__body {
  min-width: 0;
  max-height: min(72vh, 820px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  background: #0b0908;
}

.code-win__code {
  min-width: 0;
  padding: 18px 16px 24px 0;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
}

.code-win__line {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  min-width: 0;
}

.code-win__no {
  padding: 0 10px 0 8px;
  border-right: 1px solid rgba(203, 176, 122, 0.12);
  color: rgba(155, 145, 134, 0.55);
  font-weight: 500;
  text-align: right;
  user-select: none;
}

.code-win__txt {
  min-width: 0;
  padding: 0 16px 0 14px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.code-win__caret {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: -2px;
  background: var(--gold);
  animation: caret 0.9s steps(1) infinite;
}

.code-win.is-done .code-win__caret {
  display: none;
}

.code-win__status {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 16px;
  border-top: 1px solid var(--line);
  background: #100e0c;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.code-win__status span:last-child {
  margin-left: auto;
  color: var(--gold);
}

.tok-cmt {
  color: rgba(155, 145, 134, 0.88);
}

.tok-at {
  color: var(--gold);
}

.tok-str {
  color: var(--gold-2);
}

.tok-h {
  color: var(--gold);
  font-weight: 600;
}

.tok-b {
  color: var(--cream);
  font-weight: 600;
}

.tok-i {
  color: var(--gold-2);
  font-style: italic;
}

@media (max-width: 720px) {
  .code-win__path {
    display: none;
  }

  .code-win__file {
    justify-self: start;
  }

  .code-win__bar {
    grid-template-columns: auto 1fr;
  }

  .code-win__code {
    font-size: 12px;
  }

  .code-win__line {
    grid-template-columns: 2.4rem minmax(0, 1fr);
  }

  .code-win__txt {
    padding-right: 12px;
  }
}

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

.works-flow {
  position: relative;
  padding: 12px var(--gutter) 96px;
  overflow-x: clip;
}

.works-flow__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto 36px;
}

.works-flow__count {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.works-flow__filters {
  max-width: 1310px;
  margin: 0 auto 28px;
}

.works-flow__filters-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.works-flow__filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.works-flow__filters-row button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.works-flow__filters-row button:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.works-flow__filters-row button.is-on {
  border-color: var(--gold);
  background: var(--gold);
  color: #1a140e;
}

.works-flow__card.is-off {
  display: none;
}

.works-flow__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  max-width: 1310px;
  margin: 0 auto;
}

.works-flow__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(650px, calc(50% - 5px));
}

.works-flow__col--right {
  padding-top: 28px;
}

.works-flow__card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 650px;
  max-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #12100e;
}

.works-flow__col--left .works-flow__card:nth-child(3n) {
  width: 92%;
  align-self: end;
}

.works-flow__col--left .works-flow__card:nth-child(4n) {
  width: 88%;
  align-self: start;
}

.works-flow__col--right .works-flow__card:nth-child(3n) {
  width: 90%;
  align-self: start;
}

.works-flow__col--right .works-flow__card:nth-child(5n) {
  width: 86%;
  align-self: end;
}

.works-flow__media {
  position: relative;
  width: 100%;
  max-height: 650px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.works-flow__col .works-flow__card:nth-child(3n) .works-flow__media {
  aspect-ratio: 4 / 5;
}

.works-flow__col .works-flow__card:nth-child(4n) .works-flow__media {
  aspect-ratio: 1 / 1;
}

.works-flow__col .works-flow__card:nth-child(5n) .works-flow__media {
  aspect-ratio: 16 / 9;
}

.works-flow__col .works-flow__card:nth-child(7n) .works-flow__media {
  aspect-ratio: 3 / 4;
}

.works-flow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.works-flow__card--screen {
  overflow: visible;
  max-height: none;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.works-flow__card--screen .works-flow__media,
.works-flow__col .works-flow__card--screen:nth-child(n) .works-flow__media {
  aspect-ratio: 16 / 10;
  max-height: none;
  padding: 18px 12px 12px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(180deg, #6a635a, #3f3a34);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(203, 176, 122, 0.22);
}

.works-flow__card--screen .works-flow__media img {
  border-radius: 8px;
  object-position: top center;
  background: #111;
}

.works-flow__card--screen .works-flow__media::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #5a544c;
  box-shadow: inset 0 0 0 1.5px #111;
}

.works-flow__card--screen .works-flow__media::after {
  display: none;
}

.works-flow__card--screen .works-flow__info {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 18px 4px 0;
}

.works-flow__card--screen .works-flow__info::before {
  content: "";
  display: block;
  width: 22%;
  height: 11px;
  margin: -6px auto 14px;
  background: linear-gradient(180deg, #7a736a, #4a453e 70%, #322e2a);
  border-radius: 0 0 9px 9px;
}

.works-flow__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(7, 6, 5, 0.94));
  pointer-events: none;
}

.works-flow__card:hover .works-flow__media img {
  transform: scale(1.07);
}

.works-flow__no {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.works-flow__live {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 9px;
  border: 1px solid rgba(203, 176, 122, 0.4);
  border-radius: 999px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(7, 6, 5, 0.55);
}

.works-flow__info {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
}

.works-flow__info span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.works-flow__info h2 {
  margin: 6px 0 4px;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.works-flow__info p {
  max-width: 36ch;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .works-flow__grid {
    flex-direction: column;
    gap: 10px;
  }

  .works-flow__col,
  .works-flow__col--right {
    width: 100%;
    padding-top: 0;
    gap: 10px;
  }

  .works-flow__card,
  .works-flow__col--left .works-flow__card:nth-child(n),
  .works-flow__col--right .works-flow__card:nth-child(n) {
    width: 100%;
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .works-flow__card {
    transform: none;
  }
}

body.elementor-editor-active .nav,
.elementor-editor-preview .nav,
.elementor-18 .nav {
  transform: none;
}

.elementor-18,
.elementor-18 .e-con,
.elementor-18 .e-con-inner,
.elementor-18 .elementor-widget,
.elementor-18 .elementor-widget-container,
.elementor-18 .elementor-widget-html,
.elementor-225,
.elementor-225 .e-con,
.elementor-225 .e-con-inner,
.elementor-225 .elementor-widget,
.elementor-225 .elementor-widget-container,
.elementor-225 .elementor-widget-html {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.callbox {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: grid;
  place-items: center;
  padding: 72px 32px 120px;
  background: #000;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.callbox.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.callbox__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  z-index: 2;
}

.callbox__inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 0.82fr);
  gap: 0 56px;
  align-items: stretch;
  text-align: left;
}

.callbox__kicker {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  font-weight: 400;
}

.callbox__title {
  font-family: var(--font);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  color: #fff;
}

.callbox__title em {
  font-style: normal;
  font-weight: 700;
  color: #e4c98a;
}

.callbox__lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 42ch;
  margin: 0 0 32px;
}

.callbox__form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

.callbox__phone {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 6px 0 22px;
  border-radius: 999px;
  background: #1c1c1c;
  border: 0;
  min-width: 0;
  flex: 1 1 220px;
}

.callbox__cc {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding-right: 10px;
}

.callbox__phone input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  padding: 0 18px 0 4px;
  font-size: 15px;
  cursor: text;
}

.callbox__phone input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.callbox__go {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  mix-blend-mode: normal;
  flex: 0 0 auto;
  white-space: nowrap;
}

.callbox__go:hover {
  background: #f3eadc;
}

.callbox__msg {
  width: 100%;
  margin-top: 4px;
  font-size: 14px;
  color: #e4c98a;
}

.callbox__msg.is-err {
  color: #e8a0a8;
}

.callbox__rule {
  display: block;
  width: 1px;
  height: 100%;
  min-height: 220px;
  margin: 0;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.callbox__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.callbox__right p {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  font-weight: 400;
}

.callbox__right a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.callbox__right a:hover {
  color: #e4c98a;
}

.float-contact {
  position: fixed;
  right: 16px;
  bottom: 4px;
  z-index: 150;
  display: grid;
  gap: 10px;
}

body.is-callbox .float-contact {
  z-index: 180;
}

.float-contact__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  color: #e8d5a3;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(156, 43, 58, 0.42), rgba(17, 5, 6, 0.94) 72%);
  border: 1px solid rgba(232, 213, 163, 0.7);
  box-shadow:
    0 0 0 1px rgba(203, 176, 122, 0.12),
    0 10px 24px rgba(156, 43, 58, 0.24);
}

.float-contact__btn svg {
  width: 16px;
  height: 16px;
}

.float-contact__btn--wa,
.float-contact__btn--call {
  background: linear-gradient(180deg, rgba(156, 43, 58, 0.42), rgba(17, 5, 6, 0.94) 72%);
  border: 1px solid rgba(232, 213, 163, 0.7);
}

.float-contact__btn:hover {
  color: #f6e9cc;
  border-color: #e8d5a3;
  background: linear-gradient(180deg, rgba(156, 43, 58, 0.62), rgba(28, 23, 19, 0.96) 72%);
}

body.admin-bar .float-contact {
  bottom: 36px;
}

body.is-callbox {
  overflow: hidden;
}

@media (max-width: 900px) {
  .callbox {
    padding: 88px 20px 120px;
    align-items: start;
  }

  .callbox__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .callbox__rule {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .callbox__form {
    flex-direction: column;
    align-items: stretch;
  }

  .callbox__phone,
  .callbox__go {
    width: 100%;
  }
}

.askbox {
  overflow: auto;
}

.askbox .callbox__inner {
  align-items: start;
}

.askbox__form {
  display: grid;
  gap: 14px;
  margin: 0;
}

.askbox__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.askbox__form label {
  display: grid;
  gap: 8px;
}

.askbox__form span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.askbox__form input,
.askbox__form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: #1c1c1c;
  color: #fff;
  font: inherit;
  font-size: 15px;
  border-radius: 18px;
  padding: 16px 20px;
}

.askbox__form textarea {
  min-height: 128px;
  resize: vertical;
  border-radius: 22px;
}

.askbox__form input::placeholder,
.askbox__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.askbox__form .callbox__go {
  justify-self: start;
  margin-top: 4px;
}

.askbox__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cbb07a, #9c2b3a);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
}

.askbox__wa svg {
  width: 18px;
  height: 18px;
}

.askbox__wa:hover {
  color: #fff !important;
  filter: brightness(1.08);
}

.askbox .callbox__right a span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.45);
}

body.is-askbox {
  overflow: hidden;
}

body.is-askbox .float-contact {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .askbox__form .callbox__go,
  .askbox__wa {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 980px) {
  :root {
    --nav: 72px;
    --gutter: 16px;
    --section-y: 48px;
    --section-head: 24px;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  h1.display,
  h2.display,
  h3.display,
  .display {
    font-size: clamp(24px, 7.2vw, 36px);
    letter-spacing: -0.03em;
  }

  .nav {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: 10px;
    min-height: var(--nav);
  }

  .hero {
    min-height: 0;
    padding: calc(var(--nav) + 12px) var(--gutter) 28px;
    overflow: hidden;
  }

  .hero__title {
    font-size: clamp(26px, 8vw, 38px);
  }

  .hero__kicker {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .reel {
    height: min(52vh, 420px);
  }

  .reel__card {
    width: min(210px, 58vw);
    border-radius: 14px;
  }

  .reel__hud {
    margin-top: 8px;
  }

  .typewriter {
    font-size: 16px;
    white-space: normal;
  }

  .belief__copy h1,
  .belief__copy h2,
  .desk__copy .display,
  .pricing__head .display,
  .pricing__intro .pricing__lead,
  .reviews .display,
  .cta__head .display {
    white-space: normal;
  }

  .pricing__lead {
    font-size: 15px;
    margin: 14px 0 20px;
  }

  .plans {
    gap: 14px;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
  }

  .plan,
  .plan--featured {
    min-width: min(84vw, 340px);
  }

  .plan__top h3 {
    font-size: 32px;
  }

  .ig-embed {
    min-height: 540px;
    height: 560px;
  }

  .ig__follow {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding: calc(var(--nav) + 12px) var(--gutter) 24px;
  }

  .page-hero__lead {
    font-size: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .footer {
    padding: 32px var(--gutter) 120px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .float-contact {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .btn {
    min-height: 48px;
  }

  .marquee {
    overflow: hidden;
  }

  .crew__card {
    flex-basis: min(78vw, 280px);
  }

  .ikas-kicker {
    letter-spacing: 0.14em;
    padding: 10px 18px;
    font-size: 13px;
  }

  .code-win {
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav: 64px;
    --gutter: 14px;
  }

  .nav__logo img {
    height: 36px;
  }

  .hero__stats .stat strong {
    font-size: 28px;
  }

  .reel {
    height: min(48vh, 380px);
  }

  .reel__card {
    width: min(188px, 64vw);
  }

  .ig-embed {
    min-height: 480px;
    height: 500px;
  }

  .store__visual {
    min-height: 280px;
  }

  .plan__badge {
    font-size: 9px;
    padding: 5px 8px;
    right: 10px;
    top: 12px;
  }
}
