:root {
  --bg: #060606;
  --panel: #101010;
  --panel-strong: #15130e;
  --text: #f7f0df;
  --muted: #b7ad98;
  --faint: #746b5e;
  --gold: #d4af37;
  --gold-soft: #f0d67a;
  --line: rgba(212, 175, 55, 0.22);
  --line-cold: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(212, 175, 55, 0.11), transparent 34rem),
    radial-gradient(circle at 80% 26%, rgba(255, 255, 255, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: 13px;
}

.brand strong {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.3em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 34px);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 86px) 74px;
}

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

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.94) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.88)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.2) 50%, #060606 97%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
}

.eyebrow,
.section-label,
.plan-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: var(--display);
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.8);
}

h1 span {
  display: block;
  font-size: clamp(2.9rem, 8vw, 8.7rem);
  font-weight: 500;
}

h1 strong {
  display: block;
  color: var(--gold);
  font-size: clamp(4.8rem, 15vw, 14rem);
  font-weight: 600;
  letter-spacing: 0.22em;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: #f5ead2;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-style: italic;
}

.hero-actions,
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.cta-pair a,
.cta-pair button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 14px 22px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.cta-pair a:hover,
.cta-pair button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #080806;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.button.outline {
  margin-top: 34px;
}

.section,
.section-panel,
.quote-band,
.contact {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 86px);
}

.section-panel {
  border-block: 1px solid var(--line-cold);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 8vw, 96px);
  align-items: start;
}

.intro {
  padding-top: clamp(86px, 10vw, 126px);
}

.statement {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 1.05;
  font-style: italic;
}

.intro-copy {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  color: var(--muted);
  font-size: 1.35rem;
}

.intro-copy strong {
  color: var(--text);
  font-family: var(--display);
  letter-spacing: 0.12em;
}

.metric-grid,
.service-grid,
.pricing-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid article,
.service-grid article,
.price-card {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line-cold);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.metric-grid article {
  padding: clamp(26px, 4vw, 42px);
}

.metric-grid span {
  display: block;
  margin-bottom: 34px;
  color: rgba(212, 175, 55, 0.42);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.8;
}

.metric-grid p,
.service-grid li,
.price-card p,
.adv-list p {
  color: var(--muted);
}

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

.service-grid article {
  padding: 34px;
}

h3 {
  color: var(--text);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-grid h3 {
  min-height: 64px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 20px;
}

li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.pricing-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.price-card {
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 46%);
  transition: opacity 200ms ease;
}

.price-card:hover::before,
.price-card.featured::before {
  opacity: 1;
}

.price-card > * {
  position: relative;
}

.price {
  margin-bottom: 0;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.price span,
.monthly {
  color: var(--faint);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.extras {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.extras div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line-cold);
  padding-bottom: 10px;
  color: var(--muted);
}

.extras strong {
  color: var(--gold-soft);
  white-space: nowrap;
}

.adv-list {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.adv-list article {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 42px;
  border-bottom: 1px solid var(--line-cold);
  padding-bottom: 28px;
}

.adv-list h3 {
  margin-bottom: 4px;
  color: var(--gold-soft);
}

.adv-list div p {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#adv {
  text-align: center;
}

.quote-band {
  min-height: 540px;
  display: grid;
  place-items: center;
  gap: 42px;
  text-align: center;
  background:
    linear-gradient(rgba(6, 6, 6, 0.74), rgba(6, 6, 6, 0.86)),
    url("/assets/hero-studio.png") center / cover fixed;
}

.quote-band p {
  width: min(980px, 100%);
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 5rem);
  font-style: italic;
  line-height: 1.05;
}

.cta-pair {
  justify-content: center;
}

.contact {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-copy h2 {
  margin-bottom: 32px;
}

address {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-style: normal;
}

address a:hover {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 20px;
  border: 1px solid var(--line-cold);
  background: rgba(0, 0, 0, 0.24);
  padding: clamp(24px, 4vw, 42px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-cold);
  border-radius: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease, background 180ms ease;
}

select option {
  background: #101010;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.085);
}

.contact-form button {
  width: fit-content;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 26px;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}

.form-status[data-type="success"] {
  color: #a8e6b1;
}

.form-status[data-type="error"] {
  color: #ffb0a8;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 36px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line-cold);
  color: var(--faint);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer p,
footer span {
  margin: 0;
}

.video-dialog,
.adv-dialog {
  width: min(1040px, calc(100vw - 28px));
  border: 1px solid var(--line);
  padding: 0;
  background: #050505;
  color: var(--text);
  box-shadow: var(--shadow);
}

.video-dialog::backdrop,
.adv-dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(10px);
}

.dialog-close,
.adv-dialog-bar {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-cold);
  padding: 14px 18px;
  background: #0b0b0b;
  color: var(--gold-soft);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.adv-dialog {
  width: min(1180px, calc(100vw - 28px));
  max-height: min(92vh, 980px);
  overflow: auto;
}

.adv-dialog-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}

.adv-dialog-bar span {
  color: var(--gold-soft);
}

.adv-dialog-bar button {
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: transparent;
  color: var(--gold-soft);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adv-proposal {
  padding: clamp(24px, 5vw, 56px);
}

.adv-proposal-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.adv-proposal-hero h2 {
  font-size: clamp(2.7rem, 8vw, 7rem);
}

.adv-proposal-hero p:not(.eyebrow) {
  width: min(760px, 100%);
  color: var(--muted);
  font-size: 1.25rem;
}

.adv-package-grid,
.adv-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.adv-package-grid article,
.adv-detail-grid article,
.adv-comparison,
.adv-proposal-footer {
  border: 1px solid var(--line-cold);
  background: rgba(255, 255, 255, 0.04);
}

.adv-package-grid article {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
}

.adv-package-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.76;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 56%);
}

.adv-package-grid article > * {
  position: relative;
}

.adv-package-grid .package-pro {
  border-color: rgba(212, 175, 55, 0.58);
}

.package-badge {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.adv-package-grid strong {
  display: block;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
}

.adv-package-grid small {
  display: block;
  margin: 4px 0 26px;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.adv-comparison {
  margin: 18px 0;
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(180px, 2fr) minmax(96px, 1fr) minmax(120px, 1fr);
  align-items: center;
}

.comparison-row:nth-child(odd):not(.comparison-head) {
  background: rgba(255, 255, 255, 0.035);
}

.comparison-row span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line-cold);
  padding: 12px 14px;
  color: var(--muted);
}

.comparison-row span:last-child {
  border-right: 0;
  color: var(--gold-soft);
}

.comparison-head span {
  min-height: 42px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adv-detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.adv-detail-grid article {
  padding: 24px;
}

.adv-detail-grid h3 {
  color: var(--gold-soft);
}

.adv-detail-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.adv-proposal-footer {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 24px;
}

.adv-proposal-footer p {
  margin: 0;
  color: var(--muted);
}

.adv-proposal-footer strong {
  color: var(--gold-soft);
}

.adv-proposal-footer .button {
  width: fit-content;
  margin-top: 10px;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .metric-grid,
  .service-grid,
  .pricing-grid,
  .intro-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid h3 {
    min-height: 0;
  }

  .adv-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .adv-detail-grid {
    grid-template-columns: 1fr;
  }

  .quote-band {
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .site-header {
    position: absolute;
  }

  .hero {
    min-height: 92svh;
    padding-top: 112px;
  }

  h1 strong {
    letter-spacing: 0.12em;
  }

  .button,
  .cta-pair a,
  .cta-pair button {
    width: 100%;
  }

  .intro-copy {
    padding-left: 20px;
  }

  footer {
    flex-direction: column;
  }

  .adv-package-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .comparison-row span {
    min-height: 48px;
    padding: 10px;
    font-size: 0.9rem;
  }

  .adv-proposal-footer .button {
    width: 100%;
  }
}
