:root {
  --stage: #11110f;
  --stage-soft: #1b1a17;
  --graphite: #242422;
  --paper: #f4f3ef;
  --white: #ffffff;
  --ink: #171714;
  --muted: #68645f;
  --line: rgba(23, 23, 20, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --studio-orange: #c66a2b;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --max: 1280px;
  --wide: 1440px;
  --header-height: 66px;
  --shadow-soft: 0 20px 60px rgba(17, 17, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  direction: rtl;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Heebo", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--studio-orange);
}

section[id] {
  scroll-margin-top: 86px;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Rubik", "Heebo", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 4.7rem;
  line-height: 0.98;
}

h2 {
  font-size: 3.4rem;
  line-height: 1.04;
}

h3 {
  font-size: 2rem;
  line-height: 1.12;
}

p {
  margin-bottom: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: currentColor;
}

.section-inner {
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
}

.section-pad {
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.story-copy > p:last-child,
.studio-details > p,
.faq details p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.kicker {
  margin-bottom: 15px;
  color: var(--studio-orange);
  font-size: 0.94rem;
  font-weight: 800;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--stage);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 8px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(17, 17, 15, 0.76), rgba(17, 17, 15, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 15, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-lockup {
  display: grid;
  gap: 2px;
  direction: ltr;
}

.brand-lockup strong {
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-lockup span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  direction: rtl;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.brand-lockup img {
  width: 68px;
  height: 16px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--studio-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.btn,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--whatsapp);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--whatsapp-dark);
  box-shadow: 0 14px 34px rgba(18, 140, 74, 0.28);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: max(720px, 94svh);
  overflow: hidden;
  color: var(--white);
  background: var(--stage);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1200ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.08) 0%, rgba(17, 17, 15, 0.28) 44%, rgba(17, 17, 15, 0.86) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, 0.16) 0%, rgba(17, 17, 15, 0.1) 56%, rgba(17, 17, 15, 0.88) 100%);
}

.hero-inner {
  display: grid;
  grid-template-rows: 1fr auto;
  width: min(var(--max), calc(100vw - 48px));
  min-height: max(720px, 94svh);
  margin-inline: auto;
  padding: 130px 0 34px;
}

.hero-content {
  align-self: center;
  max-width: 760px;
  animation: hero-copy-in 700ms 160ms ease both;
}

.hero-copy {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.72;
}

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

.btn {
  min-height: 54px;
  padding: 13px 24px;
  font-size: 1rem;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.hero-link:hover,
.hero-link:focus-visible {
  color: var(--white);
  border-color: var(--studio-orange);
}

.production-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  animation: hero-copy-in 700ms 320ms ease both;
}

.production-rail span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 15px 22px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

.production-rail span:first-child {
  border-inline-start: 0;
}

.production-rail .icon {
  color: #f2a26c;
  font-size: 1.18rem;
}

.production-rail b {
  font-size: 0.94rem;
}

.launch-price {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding: 100px 0 96px;
  border-radius: 28px 28px 0 0;
  background: var(--white);
}

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

.price-label {
  margin-bottom: 13px;
  color: var(--studio-orange);
  font-size: 0.94rem;
  font-weight: 900;
}

.price-includes h2 {
  max-width: 680px;
  font-size: 3.55rem;
}

.price-includes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.price-includes li .icon {
  color: var(--studio-orange);
  font-size: 1.08rem;
}

.price-numbers {
  padding-inline-start: 50px;
  border-inline-start: 1px solid var(--line);
}

.price-primary,
.price-additional {
  display: grid;
  gap: 3px;
}

.price-primary {
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}

.price-additional {
  padding-top: 23px;
}

.price-numbers span {
  color: var(--muted);
  font-weight: 750;
}

.price-numbers strong {
  color: var(--studio-orange);
  font-family: "Rubik", "Heebo", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.price-numbers strong b {
  font-size: clamp(3.6rem, 5.5vw, 5.8rem);
  font-weight: 900;
}

.price-additional strong b {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
}

.price-numbers .btn {
  width: fit-content;
  margin-top: 30px;
}

.price-numbers small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.studio-story {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 112px 0 104px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  grid-template-rows: auto auto;
  gap: 32px 64px;
  align-items: start;
}

.story-copy {
  max-width: 720px;
}

.story-copy h2 {
  margin-bottom: 24px;
}

.control-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--stage);
  box-shadow: var(--shadow-soft);
}

.control-visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.control-visual::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 15, 0.78));
}

.control-visual figcaption,
.tour-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.complex-stat {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.complex-stat strong {
  color: var(--studio-orange);
  font-family: "Rubik", "Heebo", sans-serif;
  font-size: 4.5rem;
  line-height: 0.86;
  font-weight: 800;
}

.complex-stat span {
  max-width: 250px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  border-block: 1px solid var(--line);
}

.trust-line span {
  min-height: 92px;
  padding: 22px 20px;
  border-inline-start: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-line span:first-child {
  border-inline-start: 0;
}

.trust-line strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: "Rubik", "Heebo", sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
}

.studio-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 58px;
  align-items: center;
  margin-top: 78px;
  padding-top: 78px;
  border-top: 1px solid var(--line);
}

.studio-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--stage);
}

.studio-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 17, 15, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.image-label .icon {
  color: #f2a26c;
}

.studio-details h3 {
  margin-bottom: 18px;
}

.studio-details ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.studio-details li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.studio-details li .icon {
  margin-top: 0.25em;
  color: var(--studio-orange);
}

.studio-footnote {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--studio-orange);
  color: var(--studio-orange);
  font-weight: 800;
}

.text-link.light {
  color: var(--white);
  border-color: var(--studio-orange);
}

.tour {
  background: var(--white);
}

.tour .section-heading {
  margin-inline: auto;
  text-align: center;
}

.tour .section-heading h2 {
  margin-bottom: 16px;
}

.tour-grid {
  columns: 2;
  column-gap: 16px;
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
}

.tour-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--stage);
  break-inside: avoid;
  vertical-align: top;
}

.tour-card img,
.tour-card video {
  height: auto;
  object-fit: contain;
  transition: transform 500ms ease;
}

.tour-card::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 15, 0.68));
}

.tour-card figcaption {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.tour-card figcaption .icon {
  color: #f2a26c;
}

@media (hover: hover) {
  .tour-card:hover img,
  .tour-card:hover video {
    transform: scale(1.035);
  }
}

.podcast-examples {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--stage-soft);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.podcast-examples::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.examples-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.examples-copy {
  max-width: 480px;
}

.examples-copy h2 {
  max-width: 430px;
  margin-bottom: 18px;
}

.examples-copy p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 290px));
  gap: 20px;
  justify-content: end;
  align-items: start;
}

.example-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0b0b0a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.example-video:nth-child(2) {
  transform: translateY(34px);
}

.example-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0b0b0a;
}

.example-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: #0b0b0a;
  opacity: 0.84;
  transition: opacity 220ms ease, transform 500ms ease;
}

.example-index {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(12, 12, 11, 0.68);
  font-family: Arial, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  direction: ltr;
}

.example-play {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: max-content;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.example-play > span:last-child {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(11, 11, 10, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.example-play-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: var(--studio-orange);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, background 180ms ease;
}

.example-play-icon .icon {
  width: 25px;
  height: 25px;
  transform: translateX(-1px);
}

.example-play:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 6px;
}

.example-video.is-active {
  border-color: rgba(198, 106, 43, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.example-video.is-active video {
  opacity: 1;
}

.example-video.is-active .example-play {
  opacity: 0;
  pointer-events: none;
}

.example-video figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 14px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.example-video figcaption span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--studio-orange);
}

@media (hover: hover) {
  .example-video:not(.is-active):hover {
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
  }

  .example-video:nth-child(2):not(.is-active):hover {
    transform: translateY(30px);
  }

  .example-video:not(.is-active):hover video {
    opacity: 0.96;
    transform: scale(1.025);
  }

  .example-play:hover .example-play-icon {
    background: #dc762f;
    transform: scale(1.06);
  }
}

.feedback {
  background: var(--paper);
}

.feedback-layout {
  display: block;
}

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

.quote-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 174px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quote-main {
  min-height: 174px;
  color: var(--white);
  border-color: transparent;
  background: var(--studio-orange);
}

.quote-icon {
  width: 28px;
  height: 28px;
  fill: var(--studio-orange);
}

.quote-main .quote-icon {
  fill: #f6b17e;
}

.quote-card p {
  align-self: center;
  margin: 0;
  font-family: "Rubik", "Heebo", sans-serif;
  font-size: 1.22rem;
  line-height: 1.45;
  font-weight: 700;
}

.quote-main p {
  font-size: 1.35rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-main span {
  color: rgba(255, 255, 255, 0.72);
}

.faq {
  padding-top: 16px;
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
  padding-top: 88px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
}

.faq details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1.14rem;
  font-weight: 800;
  list-style: none;
}

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

.faq summary::marker {
  content: "";
}

.faq summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--studio-orange);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.faq details[open] summary::after {
  color: var(--white);
  background: var(--studio-orange);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 660px;
  margin-top: 11px;
  font-size: 1rem;
}

.contact-band {
  position: relative;
  isolation: isolate;
  min-height: clamp(580px, 74svh, 760px);
  overflow: hidden;
  color: var(--white);
  background: var(--stage);
}

.contact-media,
.contact-shade {
  position: absolute;
  inset: 0;
}

.contact-media {
  z-index: -2;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.02);
}

.contact-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.5), rgba(17, 17, 15, 0.82)),
    radial-gradient(circle at 50% 48%, rgba(17, 17, 15, 0.24), rgba(17, 17, 15, 0.7) 72%);
}

.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(580px, 74svh, 760px);
  padding: 92px 0 82px;
  text-align: center;
}

.opening-offer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--studio-orange);
  color: #ffd0ae;
}

.opening-offer span {
  font-size: 0.98rem;
  font-weight: 800;
}

.opening-offer small {
  padding-inline-start: 9px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.contact-copy {
  width: min(820px, 100%);
}

.contact-copy p {
  width: min(620px, 100%);
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.7;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5.2vw, 5rem);
  line-height: 1.02;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}

.contact-button {
  min-width: 220px;
  margin-top: 34px;
  box-shadow: 0 14px 38px rgba(18, 140, 74, 0.3);
}

.contact-meta {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.site-footer {
  padding: 32px 0 90px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--graphite);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 4px;
  direction: ltr;
  justify-content: end;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-brand span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  direction: rtl;
  font-size: 0.68rem;
}

.footer-brand img {
  width: 66px;
  height: 15px;
  object-fit: contain;
}

.footer-inner p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 700;
}

.footer-inner .footer-credit {
  width: fit-content;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.footer-inner .footer-credit:hover,
.footer-inner .footer-credit:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  min-height: 54px;
  padding: 13px 21px;
  box-shadow: 0 18px 44px rgba(18, 140, 74, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp.is-visible.is-suppressed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 60;
  width: min(370px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--stage);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

:focus-visible {
  outline: 3px solid #f6b17e;
  outline-offset: 4px;
}

@keyframes hero-settle {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .story-shell,
  .studio-offer,
  .faq-layout,
  .price-layout,
  .examples-layout {
    grid-template-columns: 1fr;
  }

  .control-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: 480px;
  }

  .complex-stat {
    grid-row: 2;
  }

  .studio-offer,
  .faq-layout,
  .price-layout,
  .examples-layout {
    gap: 40px;
  }

  .studio-image {
    min-height: 520px;
  }

  .faq .section-heading {
    max-width: 720px;
  }

  .price-numbers {
    padding: 34px 0 0;
    border-top: 1px solid var(--line);
    border-inline-start: 0;
  }

  .examples-grid {
    justify-content: start;
  }

  .contact-layout {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .tour-grid {
    columns: 2;
  }

  .contact-button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  h1 {
    font-size: 2.85rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1.65rem;
  }

  .section-inner {
    width: min(var(--max), calc(100vw - 28px));
  }

  .section-pad {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading p,
  .story-copy > p:last-child,
  .studio-details > p {
    font-size: 1.03rem;
    line-height: 1.68;
  }

  .site-header {
    grid-template-areas:
      "brand cta"
      "location location";
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 5px 14px;
    min-height: var(--header-height);
    padding: 8px 14px 7px;
    background: rgba(17, 17, 15, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .brand-lockup {
    grid-area: brand;
    width: fit-content;
    justify-self: start;
  }

  .brand-lockup strong {
    font-size: 1.02rem;
  }

  .brand-lockup span {
    font-size: 0.58rem;
  }

  .brand-lockup img {
    width: 58px;
    height: 13px;
  }

  .header-location {
    grid-area: location;
    width: 100%;
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .header-cta {
    grid-area: cta;
    width: 42px;
    min-height: 42px;
    padding: 0;
    align-self: center;
  }

  .header-cta span {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-media img {
    object-position: center 44%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(17, 17, 15, 0.18) 0%, rgba(17, 17, 15, 0.36) 28%, rgba(17, 17, 15, 0.84) 68%, rgba(17, 17, 15, 0.98) 100%);
  }

  .hero-inner {
    width: calc(100vw - 28px);
    padding: 132px 0 18px;
  }

  .hero-content {
    align-self: start;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.03rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-link {
    width: fit-content;
    margin-inline: auto;
  }

  .production-rail {
    grid-template-columns: 1fr;
    align-self: end;
  }

  .production-rail span {
    min-height: 45px;
    padding: 9px 4px;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .production-rail span:last-child {
    border-bottom: 0;
  }

  .launch-price {
    margin-top: -18px;
    padding: 72px 0 68px;
    border-radius: 20px 20px 0 0;
  }

  .price-layout {
    gap: 38px;
  }

  .price-includes h2 {
    font-size: 2.45rem;
  }

  .price-includes ul {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .price-includes li {
    min-height: 48px;
  }

  .price-numbers {
    padding-top: 30px;
  }

  .price-numbers strong b {
    font-size: 4rem;
  }

  .price-additional strong b {
    font-size: 3.2rem;
  }

  .price-numbers .btn {
    width: 100%;
  }

  .studio-story {
    margin-top: 0;
    padding: 78px 0 72px;
  }

  .story-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }

  .control-visual {
    min-height: 320px;
    border-radius: 14px;
  }

  .complex-stat {
    grid-row: auto;
    gap: 16px;
  }

  .complex-stat strong {
    font-size: 3.35rem;
  }

  .complex-stat span {
    font-size: 0.9rem;
  }

  .trust-line {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }

  .trust-line span {
    min-height: 96px;
    padding: 16px 12px;
    border-bottom: 1px solid var(--line);
  }

  .trust-line span:nth-child(odd) {
    border-inline-start: 0;
  }

  .trust-line span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .trust-line strong {
    font-size: 1rem;
  }

  .studio-offer {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 54px;
    padding-top: 54px;
  }

  .studio-image {
    min-height: 330px;
    border-radius: 14px;
  }

  .studio-details ul {
    margin-top: 22px;
  }

  .tour-grid {
    columns: 2;
    column-gap: 10px;
    width: calc(100vw - 20px);
  }

  .tour-card {
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .tour-card figcaption {
    right: 10px;
    bottom: 9px;
    font-size: 0.76rem;
  }

  .faq-layout {
    gap: 28px;
  }

  .examples-layout {
    gap: 30px;
  }

  .podcast-examples::before {
    display: none;
  }

  .examples-copy {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  .examples-copy h2,
  .examples-copy p {
    margin-inline: auto;
  }

  .examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .example-video:nth-child(2) {
    transform: none;
  }

  .example-play {
    gap: 7px;
  }

  .example-play-icon {
    width: 52px;
    height: 52px;
  }

  .example-play-icon .icon {
    width: 20px;
    height: 20px;
  }

  .example-play > span:last-child {
    padding: 4px 7px;
    font-size: 0.62rem;
  }

  .example-video figcaption {
    padding: 9px 10px 11px;
    font-size: 0.72rem;
  }

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

  .quote-main {
    min-height: 150px;
  }

  .quote-card {
    min-height: 150px;
    padding: 22px;
  }

  .quote-main p {
    font-size: 1.45rem;
  }

  .faq {
    padding-top: 0;
  }

  .faq-layout {
    padding-top: 66px;
  }

  .faq details {
    padding: 18px 0;
  }

  .contact-layout {
    min-height: clamp(600px, 78svh, 700px);
    padding: 74px 0 72px;
  }

  .contact-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 1.04;
  }

  .contact-button {
    width: 100%;
    max-width: 330px;
  }

  .contact-media img {
    object-position: 55% center;
  }

  .contact-shade {
    background: linear-gradient(180deg, rgba(17, 17, 15, 0.56), rgba(17, 17, 15, 0.86));
  }

  .opening-offer {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
  }

  .opening-offer small {
    font-size: 0.76rem;
  }

  .contact-copy p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .contact-meta {
    gap: 12px 20px;
    flex-wrap: wrap;
    margin-top: 28px;
    font-size: 0.82rem;
  }

  .footer-inner {
    grid-template-areas:
      "brand brand"
      "address top"
      "credit credit";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 15px 18px;
    align-items: center;
  }

  .footer-brand {
    grid-area: brand;
    display: flex;
    width: 100%;
    padding-bottom: 17px;
    direction: rtl;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-inner > p {
    grid-area: address;
    font-size: 0.82rem;
  }

  .footer-inner > a[href="#top"] {
    grid-area: top;
    font-size: 0.8rem;
  }

  .footer-inner .footer-credit {
    grid-area: credit;
    font-size: 0.7rem;
  }

  .floating-whatsapp {
    right: 14px;
    left: auto;
    bottom: 14px;
    width: fit-content;
    max-width: calc(100vw - 28px);
  }

  .floating-whatsapp.is-compact {
    width: 52px;
    min-height: 52px;
    padding: 0;
  }

  .floating-whatsapp.is-compact span {
    display: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.55rem;
  }

  .header-location {
    max-width: none;
  }

  .hero,
  .hero-inner {
    min-height: 740px;
  }

}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.thanks-page {
  min-height: 100svh;
  background: var(--paper);
}

.thanks {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(720px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.thanks-card h1 {
  margin-top: 20px;
  font-size: 3.2rem;
}

.thanks-card p {
  color: var(--muted);
}

.thanks-brand {
  display: grid;
  width: fit-content;
  direction: ltr;
}

.thanks-brand strong {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.thanks-brand span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .thanks-card {
    padding: 26px 22px;
  }

  .thanks-card h1 {
    font-size: 2.35rem;
  }
}
