:root {
  --bg: #080809;
  --bg-soft: #101113;
  --graphite: #17191d;
  --graphite-2: #20242a;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f1ea;
  --muted: rgba(244, 241, 234, 0.68);
  --muted-2: rgba(244, 241, 234, 0.48);
  --gold: #d8b56a;
  --gold-2: #f1d99a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: rgba(216, 181, 106, 0.34);
  color: var(--text);
}

.page-glow {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(216, 181, 106, 0.16), transparent 64%);
  pointer-events: none;
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 9, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 9, 0.9);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.91rem;
}

.nav-links a,
.header-cta,
.footer-inner a,
.brand-logo {
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.nav-links a:hover,
.header-cta:hover,
.footer-inner a:hover {
  color: var(--gold-2);
}

.brand:hover .brand-logo {
  opacity: 0.94;
  transform: translateY(-1px);
}

.header-cta {
  color: var(--gold-2);
  font-size: 0.91rem;
  border: 1px solid rgba(216, 181, 106, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(216, 181, 106, 0.08);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 181, 106, 0.16), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 68%);
}

.hero-logo-wrap {
  margin-bottom: 18px;
}

.hero-logo {
  width: min(340px, 72vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(216, 181, 106, 0.14));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.8rem, 13vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: -0.095em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4.6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.28rem, 2.5vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.hero-text,
.section-head p,
.format-text p,
.pricing-card p,
.contact-panel p,
.result-note,
.case-content p,
.service-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 1.1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 720;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 42px rgba(216, 181, 106, 0.2);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(216, 181, 106, 0.42);
  background: rgba(216, 181, 106, 0.08);
}

.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.anchor-pills a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-2);
  font-size: 0.86rem;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.anchor-pills a:hover {
  color: var(--gold-2);
  border-color: rgba(216, 181, 106, 0.36);
  background: rgba(216, 181, 106, 0.06);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 370px);
  padding: 14px;
  border: 1px solid rgba(216, 181, 106, 0.25);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #0d0e10;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(2deg);
}

.phone-topline {
  width: 80px;
  height: 5px;
  margin: 6px auto 14px;
  border-radius: 999px;
  background: rgba(244, 241, 234, 0.28);
}

.phone-content {
  min-height: 590px;
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 30% 8%, rgba(216, 181, 106, 0.28), transparent 34%),
    linear-gradient(180deg, #17191d, #0b0b0d 70%);
}

.mini-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  font-weight: 800;
}

.mini-profile strong,
.mini-profile span {
  display: block;
}

.mini-profile span {
  color: var(--muted-2);
  font-size: 0.85rem;
}

.visual-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(216, 181, 106, 0.24), transparent 44%),
    linear-gradient(25deg, #272118, #121315 64%);
  overflow: hidden;
}

.large-card {
  min-height: 318px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.large-card span {
  color: var(--gold-2);
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.phone-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-stats strong,
.phone-stats span {
  display: block;
}

.phone-stats strong {
  font-size: 1.2rem;
}

.phone-stats span {
  color: var(--muted-2);
  font-size: 0.8rem;
}

.phone-stats-single {
  grid-template-columns: 1fr;
}

.phone-stats-single div {
  text-align: center;
}

.phone-stats-single strong {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1;
  margin-bottom: 4px;
}

.story-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.story-row span {
  height: 82px;
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(216, 181, 106, 0.09));
}

.section {
  position: relative;
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--bg-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 680px;
  font-size: 1.03rem;
}

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

.service-card,
.stat-card,
.pricing-card,
.case-card,
.format-panel,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.16);
}

.service-card {
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-card:hover,
.case-card:hover,
.stat-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 181, 106, 0.36);
  background: linear-gradient(180deg, rgba(216, 181, 106, 0.08), rgba(255, 255, 255, 0.03));
}

.service-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 760;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.audience-tags span {
  padding: 15px 18px;
  border: 1px solid rgba(216, 181, 106, 0.22);
  border-radius: 999px;
  color: var(--text);
  background: rgba(216, 181, 106, 0.065);
}

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

.stat-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -30%;
  bottom: -42%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 181, 106, 0.22), transparent 65%);
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.stat-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
}

.result-note {
  max-width: 780px;
  margin: 28px 0 0;
  font-size: 1.08rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.case-card {
  grid-column: span 2;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.case-card:nth-child(1),
.case-card:nth-child(2) {
  grid-column: span 3;
}

.case-placeholder {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}

.case-placeholder::before,
.case-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
}

.case-placeholder::before {
  background: var(--case-bg);
}

.case-placeholder::after {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.46));
}

.case-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(244, 241, 234, 0.74);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.case-one {
  --case-bg: linear-gradient(135deg, #3b2d1c, #17191d 52%, #d8b56a 160%);
}

.case-two {
  --case-bg: linear-gradient(135deg, #191a1f, #5a4624 80%);
}

.case-three {
  --case-bg: linear-gradient(135deg, #25282e, #121315 55%, #7a6132 130%);
}

.case-four {
  --case-bg: linear-gradient(135deg, #141518, #3d3325 70%, #d8b56a 145%);
}

.case-five {
  --case-bg: linear-gradient(135deg, #101113, #24272e, #5f4a25 140%);
}

.case-content {
  padding: 22px;
}

.case-content p {
  margin-bottom: 0;
}

.format-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 44px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius-xl);
}

.format-panel h2 {
  margin-bottom: 0;
}

.format-text p:last-child {
  margin-bottom: 0;
}

.pricing-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

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

.pricing-top span,
.pricing-top strong,
.pricing-top small {
  display: block;
}

.pricing-top span {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-top strong {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.pricing-top small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 181, 106, 0.1);
}

.contact-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 181, 106, 0.18), transparent 38%),
    #09090a;
}

.contact-panel {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(32px, 6vw, 72px);
  border-radius: var(--radius-xl);
  text-align: center;
}

.contact-panel h2 {
  max-width: 780px;
  margin-inline: auto;
}

.contact-panel p {
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.contact-actions {
  justify-content: center;
  margin-top: 28px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.contact-meta a {
  color: var(--muted);
  transition: color 0.22s ease;
}

.contact-meta a:hover {
  color: var(--gold-2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070708;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .pricing-grid,
  .format-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

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

  .services-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card,
  .case-card:nth-child(1),
  .case-card:nth-child(2) {
    grid-column: span 3;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-padding {
    padding: 78px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(13, 14, 16, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-links a {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .nav-links a:hover {
    background: rgba(216, 181, 106, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 44px;
  }

  h1 {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 340px);
    transform: none;
  }

  .phone-content {
    min-height: 520px;
  }

  .large-card {
    min-height: 250px;
  }

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

  .case-card,
  .case-card:nth-child(1),
  .case-card:nth-child(2) {
    grid-column: auto;
    min-height: auto;
  }

  .case-placeholder {
    min-height: 250px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: min(150px, 48vw);
  }

  .services-grid,
  .stats-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card span {
    margin-bottom: 22px;
  }

  .stat-card {
    min-height: 164px;
  }

  .audience-tags span {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}

/* Optional class for replacing placeholders with real case images. */
.case-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Reels-style case gallery */
.cases-grid-reels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cases-grid-reels .case-card,
.cases-grid-reels .case-card:nth-child(1),
.cases-grid-reels .case-card:nth-child(2) {
  grid-column: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.case-media {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  overflow: hidden;
  background: #0b0b0d;
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 28%, transparent 62%, rgba(0, 0, 0, 0.44)),
    radial-gradient(circle at 78% 12%, rgba(216, 181, 106, 0.22), transparent 28%);
}

.cases-grid-reels .case-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.cases-grid-reels .case-card:hover .case-image {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.case-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(216, 181, 106, 0.42);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.48);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cases-grid-reels .case-content {
  padding: 18px 18px 20px;
  flex: 1;
}

.cases-grid-reels .case-content h3 {
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.cases-grid-reels .case-content p {
  font-size: 0.96rem;
}

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

@media (max-width: 640px) {
  .cases-grid-reels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cases-grid-reels .case-content {
    padding: 13px 12px 15px;
  }

  .cases-grid-reels .case-content h3 {
    font-size: 0.98rem;
  }

  .cases-grid-reels .case-content p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .case-number {
    top: 10px;
    left: 10px;
    min-width: 34px;
    height: 26px;
    padding: 0 8px;
    font-size: 0.68rem;
  }
}


/* Expert content showcase */
.expert-showcase {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 15% 0%, rgba(216, 181, 106, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.expert-copy h3 {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.expert-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.expert-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 181, 106, 0.28);
  color: var(--text);
  background: rgba(8, 8, 8, 0.32);
  font-size: 0.86rem;
}

.expert-media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-large) - 8px);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.expert-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.expert-showcase:hover .expert-media img {
  transform: scale(1.035);
  filter: contrast(1.03);
}

@media (max-width: 900px) {
  .expert-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .expert-showcase {
    margin-top: 18px;
    padding: 16px;
    gap: 16px;
  }

  .expert-copy h3 {
    font-size: 1.45rem;
  }

  .expert-copy p:not(.eyebrow) {
    font-size: 0.94rem;
  }
}


/* Hero phone preview with real HoReCa visual */
.hero-photo-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo-card::before {
  opacity: 0.18;
}

.hero-photo-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.05), rgba(8, 8, 9, 0.72)),
    linear-gradient(90deg, rgba(8, 8, 9, 0.22), rgba(8, 8, 9, 0.02));
}

.hero-photo-card span {
  position: relative;
  z-index: 2;
}

.story-thumb {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  min-height: 78px;
}

.story-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.34));
}

.story-thumb.is-active {
  outline: 2px solid rgba(216, 181, 106, 0.72);
  outline-offset: 2px;
}

.hero-carousel .hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.8s ease;
  pointer-events: none;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-carousel .hero-slide {
    transition: none;
  }
}


/* Results screenshots */
.results-proof {
  margin-top: clamp(28px, 4vw, 46px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(216, 181, 106, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 14, 0.68);
  box-shadow: var(--shadow-soft);
}

.results-proof-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.results-proof-head h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.06;
}

.results-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.result-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.result-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 181, 106, 0.36);
}

.result-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.result-shot figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-align: center;
  background: rgba(8, 8, 9, 0.74);
  border: 1px solid rgba(216, 181, 106, 0.18);
  backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .results-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-proof-head {
    display: block;
  }
}

@media (max-width: 620px) {
  .results-proof {
    padding: 14px;
    border-radius: 24px;
  }

  .results-proof-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .result-shot {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .result-extra {
    display: none;
  }
}




/* Unified results block */
.results-unified {
  margin-top: clamp(28px, 4vw, 46px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(216, 181, 106, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 181, 106, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 14, 0.76);
  box-shadow: var(--shadow-soft);
}

.results-unified-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  gap: 26px;
  align-items: end;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.results-unified-head h3 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.results-unified-head > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.result-large-card {
  margin: 0;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.result-large-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 181, 106, 0.38);
}

.result-large-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.28);
}

.result-large-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.result-large-card strong {
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.result-large-card span {
  color: var(--gold-2);
  font-size: 0.94rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

@media (max-width: 1080px) {
  .results-unified-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .results-all-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .results-unified {
    padding: 14px;
    border-radius: 26px;
  }

  .result-large-card {
    padding: 12px;
    border-radius: 22px;
  }

  .result-large-card img {
    border-radius: 18px;
  }

  .result-large-card figcaption {
    margin-top: 10px;
  }
}


/* Final mobile header + first screen polish */
.brand-logo {
  width: min(118px, 30vw);
  opacity: 0.78;
  filter: none;
}

.brand:hover .brand-logo {
  opacity: 0.92;
}

@media (max-width: 820px) {
  :root {
    --header-height: 56px;
  }

  .site-header {
    background: rgba(8, 8, 9, 0.64);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled {
    background: rgba(8, 8, 9, 0.78);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-logo {
    width: 112px;
    opacity: 0.74;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.035);
  }

  .hero.section-padding {
    padding-top: 34px;
    padding-bottom: 54px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-logo-wrap {
    margin-bottom: 10px;
  }

  .hero-logo {
    width: min(260px, 58vw);
    filter: drop-shadow(0 10px 22px rgba(216, 181, 106, 0.1));
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-lead {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 5.2vw, 1.58rem);
    line-height: 1.08;
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 12px 18px;
  }
}

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

  .brand-logo {
    width: 104px;
  }

  .hero.section-padding {
    padding-top: 26px;
    padding-bottom: 44px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-logo {
    width: min(220px, 54vw);
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }

  .hero-lead {
    font-size: clamp(1.2rem, 5.4vw, 1.42rem);
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.46;
  }
}


/* Video-ready case cards: poster stays visible if video is missing */
.case-media-video {
  background-image: var(--poster);
  background-size: cover;
  background-position: center;
}

.case-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.45s ease, transform 0.5s ease, filter 0.5s ease;
}

.case-video.is-loaded {
  opacity: 1;
}

.case-video.is-video-error {
  display: none;
}

.cases-grid-reels .case-card:hover .case-video,
.cases-grid-reels .case-card:hover .case-media-video {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}


/* Scroll + fixed header fix */
:root {
  --anchor-offset-extra: 28px;
}

.section,
#top,
#services,
#audience,
#results,
#cases,
#format,
#pricing,
#contact {
  scroll-margin-top: calc(var(--header-height) + var(--anchor-offset-extra));
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 14px);
  background: #080809;
  box-shadow: 0 10px 22px rgba(8, 8, 9, 0.94);
  z-index: 69;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: #080809;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: none;
}

.site-header.is-scrolled {
  background: #080809;
  border-color: rgba(255, 255, 255, 0.1);
}

main {
  padding-top: var(--header-height);
}

.result-large-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    background: #080809;
    backdrop-filter: none;
  }

  body::before {
    height: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 10px);
  }
}


/* Final mobile header tune */
@media (max-width: 820px) {
  .header-inner {
    min-height: var(--header-height);
    padding-block: 6px;
  }

  .brand-logo {
    width: 96px;
    opacity: 0.76;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }
}

/* Expert image: no stretching */
.expert-media {
  background: #f4f1eb;
}

.expert-media img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  background: #f4f1eb;
}
