* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(213, 170, 72, 0.16), transparent 34rem),
    var(--black);
  color: var(--white);
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: 1.6;
}

.hero,
.section,
.method-strip,
.stats-band {
  position: relative;
  isolation: isolate;
}

.hero::after,
.section::before,
.method-strip::before {
  content: "";
  position: absolute;
  inset: 0 -50vw;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.96)),
    url("assets/textures/art-deco-gold-original.png") center / cover;
}

.section:nth-of-type(even)::before,
.method-strip::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.94)),
    url("assets/textures/gold-texture-original.png") center / cover;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.85)),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: min(100% - 32px, calc(var(--page-max-width) + 80px));
  margin: 18px auto 0;
  padding: 10px 14px;
  border: var(--border-width) solid rgba(243, 211, 123, 0.2);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.48) 50%, rgba(5, 5, 5, 0.26));
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 58px;
}

.brand-mark img {
  width: 72px;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.9));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: var(--letter-space-wide);
  text-transform: uppercase;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold-bright);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 24px;
  border: 1px solid rgba(243, 211, 123, 0.46);
  border-radius: var(--button-radius);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
  color: #090704;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 30%),
    url("assets/textures/gold-texture-original.png") center / cover,
    linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 52px rgba(213, 170, 72, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 211, 123, 0.84);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 92px;
  left: 16px;
  right: 16px;
  z-index: 29;
  display: none;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 22px;
  border: var(--border-width) solid rgba(243, 211, 123, 0.2);
  background: rgba(5, 5, 5, 0.94);
}

.mobile-nav.is-open {
  display: grid;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--hero-min-height);
  width: min(100% - 32px, var(--page-max-width));
  margin: 0 auto;
  padding: clamp(130px, 18vh, 190px) 0 var(--section-padding-tight);
}

.hero::after {
  content: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 42%, rgba(5, 5, 5, 0.04) 66%, rgba(5, 5, 5, 0) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.42) 100%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: var(--letter-space-wide);
  text-transform: uppercase;
}

.hero .eyebrow,
.gold-text {
  color: var(--gold-bright);
  background: linear-gradient(135deg, #fff1aa 0%, #e5bd58 28%, #9a6920 58%, #f6d671 78%, #7e5518 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 16px 38px rgba(213, 170, 72, 0.22);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-title {
  max-width: 820px;
  font-size: min(var(--hero-title-size), clamp(58px, 5.6vw, 86px));
  line-height: 0.92;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-copy {
  margin: 28px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #050505;
  box-shadow: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: clamp(118px, 15vh, 160px) clamp(16px, 4vw, 64px) clamp(24px, 5vw, 58px);
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(243, 211, 123, 0.24);
}

.hero-photo {
  position: absolute;
  top: 66px;
  right: auto;
  bottom: -66px;
  left: 2.4%;
  z-index: 1;
  width: 103%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: brightness(1.3) contrast(1.1) saturate(1.05);
}

.hero-logo {
  display: none;
}

.stats-band {
  border-top: 1px solid rgba(243, 211, 123, 0.18);
  border-bottom: 1px solid rgba(243, 211, 123, 0.18);
  background: linear-gradient(90deg, rgba(213, 170, 72, 0.14), rgba(255, 255, 255, 0.02), rgba(213, 170, 72, 0.1));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100% - 32px, var(--page-max-width));
  margin: 0 auto;
}

.stat {
  min-height: 144px;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-family: var(--display-font);
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  width: min(100% - 32px, var(--page-max-width));
  margin: 0 auto;
  padding: var(--section-padding) 0;
}

.section-tight {
  padding: var(--section-padding-tight) 0;
}

.section-head {
  max-width: 850px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-title {
  font-size: var(--section-title-size);
  text-wrap: balance;
}

.section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.standard-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: var(--grid-gap);
  align-items: stretch;
}

.standard-photo-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 211, 123, 0.22);
  border-radius: var(--image-radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  min-height: var(--standard-photo-height);
  align-self: start;
}

.standard-photo-wrap::after {
  content: none;
}

.standard-photo-wrap img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.standard-panel {
  display: grid;
  align-content: center;
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(243, 211, 123, 0.28);
  background:
    radial-gradient(circle at top right, rgba(213, 170, 72, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 10, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 80px rgba(0, 0, 0, 0.34);
}

.standard-panel::before {
  content: "STANDARD";
  position: absolute;
  right: -10px;
  top: 18px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display-font);
  font-size: clamp(72px, 10vw, 148px);
  line-height: 0.8;
  pointer-events: none;
}

.point-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.point-list li {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 16px 20px;
  border: 1px solid rgba(243, 211, 123, 0.16);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(213, 170, 72, 0.09), transparent 46%),
    rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.point-list li:hover {
  transform: translateX(6px);
  border-color: rgba(243, 211, 123, 0.38);
  background:
    linear-gradient(90deg, rgba(213, 170, 72, 0.16), transparent 54%),
    rgba(255, 255, 255, 0.05);
}

.point-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(243, 211, 123, 0.42);
  color: var(--gold-bright);
  font-family: var(--display-font);
  font-size: 30px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.36);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: var(--grid-gap);
}

.package-card,
.step-card,
.specialty-card,
.testimonial,
.apply-panel {
  border: 1px solid rgba(243, 211, 123, 0.18);
  border-radius: var(--card-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(12, 12, 12, 0.86);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.package-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: var(--offer-card-min-height);
  padding: clamp(28px, 3.2vw, 42px);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(213, 170, 72, 0.13), transparent 18rem);
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 211, 123, 0.42);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4), 0 0 44px rgba(213, 170, 72, 0.08);
}

.package-card.featured {
  border-color: rgba(243, 211, 123, 0.62);
  background:
    linear-gradient(145deg, rgba(213, 170, 72, 0.2), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 12, 0.9);
}

.package-tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(243, 211, 123, 0.34);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.price {
  margin: 16px 0;
  color: var(--gold-bright);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-button {
  color: #090704;
  border-color: rgba(255, 232, 165, 0.56);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 30%),
    url("assets/textures/gold-texture-original.png") center / cover,
    linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 18px 44px rgba(213, 170, 72, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.package-card p,
.step-card p,
.specialty-card p,
.testimonial p {
  color: var(--muted);
}

.package-card p {
  max-width: 56ch;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
}

.feature-list li::before {
  content: "/";
  margin-right: 10px;
  color: var(--gold);
  font-weight: 950;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.method-strip {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(243, 211, 123, 0.16);
  border-bottom: 1px solid rgba(243, 211, 123, 0.16);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.66)),
    url("assets/textures/gold-texture-original.png") center / cover;
}

.method-inner {
  width: min(100% - 32px, var(--page-max-width));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 104px) 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(243, 211, 123, 0.22);
  border: 1px solid rgba(243, 211, 123, 0.22);
}

.step-card {
  min-height: 230px;
  padding: clamp(24px, 2.6vw, 38px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.step-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.step-card p {
  max-width: 42ch;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
}

.step-number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-family: var(--display-font);
  font-size: clamp(42px, 4vw, 60px);
  line-height: 0.8;
}

.specialist-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.specialist-heading .section-head {
  margin-bottom: 0;
}

.specialist-showcase {
  display: block;
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.specialty-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(16px, 2vw, 32px);
  align-items: center;
  min-height: 124px;
  padding: clamp(18px, 1.8vw, 28px) clamp(18px, 2vw, 32px);
  overflow: hidden;
  border-color: rgba(243, 211, 123, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(243, 211, 123, 0.18), transparent 28%, rgba(255, 255, 255, 0.035) 62%, transparent),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
  opacity: 0.82;
}

.specialty-card::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-bright), rgba(179, 126, 36, 0.2));
}

.specialty-card h3,
.specialty-card p,
.specialty-label {
  position: relative;
  z-index: 1;
}

.specialty-label {
  display: inline-flex;
  width: fit-content;
  padding: 9px 11px;
  border: 1px solid rgba(255, 236, 164, 0.58);
  color: #050505;
  font-family: var(--display-font);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  background:
    linear-gradient(135deg, #f8df86 0%, #c99630 48%, #f3d37b 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.specialty-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(23px, 1.7vw, 34px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.specialty-card p {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.48;
}

.specialty-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 211, 123, 0.5);
  background:
    linear-gradient(145deg, rgba(243, 211, 123, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 12, 0.92);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: var(--image-radius);
  border: 1px solid rgba(243, 211, 123, 0.2);
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.28);
}

.gallery-item::before {
  content: none;
}

.gallery-button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #050505;
  cursor: zoom-in;
}

.gallery-button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: -6px;
}

.gallery-item img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.86)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 54%);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.04);
}

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  pointer-events: none;
  font-family: var(--display-font);
  font-size: clamp(20px, 2.2vw, 36px);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gallery-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vh, 132px) clamp(18px, 4vw, 54px) clamp(24px, 5vh, 56px);
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(10px);
}

.gallery-lightbox img {
  width: auto;
  height: auto;
  max-width: min(1420px, calc(100vw - clamp(36px, 8vw, 108px)));
  max-height: calc(100vh - clamp(132px, 18vh, 210px));
  object-fit: contain;
  border: 1px solid rgba(243, 211, 123, 0.34);
  border-radius: var(--image-radius);
  background: #050505;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.72);
}

.gallery-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(243, 211, 123, 0.38);
  border-radius: var(--button-radius);
  color: var(--white);
  background: rgba(5, 5, 5, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-lightbox-open {
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(36px, 5vw, 64px);
}

.testimonial {
  position: relative;
  overflow: hidden;
  display: block;
  align-content: start;
  min-height: 0;
  padding: clamp(24px, 2.6vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(10, 10, 10, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 211, 123, 0.36);
  background:
    linear-gradient(145deg, rgba(243, 211, 123, 0.08), rgba(255, 255, 255, 0.014)),
    rgba(12, 12, 12, 0.94);
}

.review-card-body {
  min-width: 0;
}

.review-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(243, 211, 123, 0.13);
}

.review-meta strong {
  display: block;
  color: var(--white);
  font-family: var(--display-font);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 0.95;
  text-transform: uppercase;
}

.review-meta em {
  display: block;
  max-width: 24ch;
  color: var(--gold-bright);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 14px;
  color: var(--gold-bright);
  font-size: 17px;
  line-height: 1;
}

.review-stars b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.testimonial p {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
}

.review-copy {
  max-width: 62ch;
}

.review-more-button {
  display: inline;
  margin-left: 7px;
  padding: 0;
  border: 0;
  color: var(--gold-bright);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.review-more-button:hover {
  color: var(--white);
  text-decoration: underline;
}

.apply-section {
  position: relative;
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: var(--grid-gap);
  padding: var(--card-padding);
}

.apply-copy {
  align-self: center;
  min-width: 0;
}

.apply-copy .section-title {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.96;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.apply-form {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--card-radius);
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  outline: none;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(243, 211, 123, 0.72);
}

.site-footer {
  padding: 44px 16px 56px;
  border-top: 1px solid rgba(243, 211, 123, 0.14);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
}

.footer-inner img {
  width: 92px;
}

.footer-name {
  margin: 0;
  font-family: var(--display-font);
  font-size: 34px;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-role {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.socials a {
  min-width: 96px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.socials a:hover {
  color: var(--gold-bright);
  border-color: rgba(243, 211, 123, 0.38);
}

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

  .hero,
  .standard-grid,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-media {
    aspect-ratio: auto;
  }

  .package-grid,
  .step-grid,
  .proof-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .specialist-showcase {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  }

  .specialty-card p {
    grid-column: 2;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --hero-title-size: clamp(30px, 8.6vw, 36px);
    --section-title-size: clamp(34px, 11vw, 50px);
    --button-height: 52px;
  }

  .hero-title {
    font-size: var(--hero-title-size);
  }

  .site-header {
    width: calc(100% - 22px);
    margin-top: 10px;
  }

  .brand-mark,
  .brand-mark img {
    width: 64px;
  }

  .mobile-nav {
    top: 92px;
    left: 12px;
    right: 12px;
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 112px 18px 48px;
    gap: 0;
    overflow: hidden;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.82)),
      linear-gradient(180deg, rgba(5, 5, 5, 0.04) 0%, rgba(5, 5, 5, 0.48) 38%, rgba(5, 5, 5, 0.98) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    padding-top: 230px;
  }

  .hero-media::before {
    inset: 96px 10px 18px;
  }

  .hero-photo {
    top: 84px;
    bottom: auto;
    left: 50%;
    width: 124%;
    height: 360px;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: 82% top;
    opacity: 0.96;
    filter: brightness(1.04) contrast(1.1) saturate(1.04);
  }

  .hero .eyebrow {
    max-width: 360px;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.45;
  }

  .eyebrow::before {
    flex: 0 0 42px;
    width: 42px;
  }

  .hero-line {
    width: 100%;
  }

  .hero-copy {
    max-width: 34ch;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-logo {
    right: 12px;
    bottom: 12px;
    width: 150px;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-badges span {
    display: grid;
    min-height: 54px;
    place-items: center;
    padding: 10px;
    text-align: center;
  }

  .stats-grid,
  .package-grid,
  .step-grid,
  .specialty-grid,
  .testimonial-grid,
  .proof-gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .specialty-card p {
    grid-column: auto;
  }

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

  .review-meta {
    display: block;
  }

  .review-meta em {
    margin-top: 5px;
    text-align: left;
  }

  .gallery-lightbox {
    padding: 84px 12px 24px;
  }

  .gallery-lightbox img {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 124px);
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .point-list li {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .point-number {
    width: 46px;
    height: 46px;
    font-size: 25px;
  }

  .stat,
  .stat:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    width: min(100% - 24px, var(--page-max-width));
  }

  .standard-photo-wrap {
    min-height: 560px;
  }

  .socials {
    justify-content: flex-start;
  }
}
