:root {
  --bg: #000;
  --bg-soft: #0d0d0d;
  --panel: rgba(18, 18, 18, 0.84);
  --border: rgba(212, 175, 55, 0.28);
  --gold: #d4af37;
  --gold-strong: #f3dd87;
  --text: #f8f1dd;
  --muted: rgba(248, 241, 221, 0.72);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: min(1120px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08), transparent 18%),
    linear-gradient(180deg, #020202 0%, #050505 40%, #0b0b0b 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.14;
  z-index: 0;
}

.page-shell::before {
  top: -12rem;
  right: -10rem;
  background: rgba(212, 175, 55, 0.45);
}

.page-shell::after {
  bottom: -14rem;
  left: -10rem;
  background: rgba(212, 175, 55, 0.25);
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.site-nav,
.btn,
.offers-brand strong,
.offer-slide h2,
.offer-kicker,
.hero-metrics span,
.site-footer p,
.info-card h3,
.panel-card h3 {
  font-family: "Montserrat", sans-serif;
}

.brand-text strong {
  letter-spacing: 0.18em;
  font-size: 0.88rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
  scroll-margin-top: 110px;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.8rem;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
.section-heading h2,
.logo-panel p,
.lead,
.info-card p,
.about-note p,
.contact-form label,
.panel-card p,
.offer-copy,
.site-footer span {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.3rem;
}

.lead,
.section-heading p,
.info-card p,
.about-note p,
.contact-form label,
.panel-card p,
.site-footer span {
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  box-shadow: 0 18px 30px rgba(212, 175, 55, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 38px rgba(212, 175, 55, 0.26);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metrics article,
.info-card,
.panel-card,
.contact-form,
.logo-panel,
.about-note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  padding: 20px;
}

.hero-metrics span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

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

.logo-panel {
  position: relative;
  width: min(460px, 100%);
  padding: 36px;
  overflow: hidden;
}

.logo-panel img {
  width: min(220px, 60vw);
  margin: 0 auto;
}

.logo-panel p {
  margin: 26px auto 0;
  max-width: 28ch;
  text-align: center;
  line-height: 1.6;
}

.logo-glow {
  position: absolute;
  inset: 16% auto auto 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
  filter: blur(10px);
}

.offers {
  padding-top: 12px;
}

.offers-frame {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(4, 4, 4, 0.98)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 30%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.offers-frame::before {
  content: "";
  position: absolute;
  inset: 18% -10% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 68%);
  filter: blur(26px);
  pointer-events: none;
}

.offers-header,
.offers-footer {
  position: relative;
  z-index: 2;
}

.offers-header {
  display: flex;
  align-items: center;
}

.offers-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.offers-brand span {
  display: grid;
  gap: 2px;
}

.offers-brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.18em;
}

.offers-brand small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offers-stage {
  position: relative;
  min-height: 360px;
  margin-top: 34px;
}

.offer-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0 94px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.offer-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  animation: carouselFade 700ms ease;
}

.offer-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.offer-slide h2 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.96;
}

.offer-copy {
  max-width: 30ch;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: rgba(248, 241, 221, 0.9);
}

.btn-offer {
  min-width: 170px;
  color: #fff;
  background: linear-gradient(135deg, #b88b12 0%, var(--gold) 50%, #f0d778 100%);
  border-color: rgba(212, 175, 55, 0.6);
}

.btn-offer:hover,
.btn-offer:focus-visible {
  box-shadow: 0 18px 36px rgba(212, 175, 55, 0.22);
}

.offers-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.offers-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.offer-dot:hover,
.offer-dot:focus-visible {
  transform: scale(1.1);
}

.offer-dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
}

.offers-cta {
  min-width: 160px;
}

.section-heading {
  max-width: 700px;
}

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

.section-heading p {
  margin: 0;
  line-height: 1.8;
}

.about-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  padding: 28px;
}

.icon-box {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}

.icon-box svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  margin-top: 18px;
}

.info-card p {
  margin: 14px 0 0;
  line-height: 1.7;
  font-size: 1rem;
}

.about-note {
  margin-top: 26px;
  padding: 26px 28px;
}

.about-note p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.02rem;
}

.contact-layout {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.testimonials {
  padding-top: 20px;
}

.testimonials-carousel {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.96), rgba(10, 10, 10, 0.92)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 28%);
  box-shadow: var(--shadow);
}

.testimonials-topbar,
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.testimonials-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.summary-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(212, 175, 55, 0.08);
}

.testimonials-summary p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}

.testimonial-arrow:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
}

.testimonials-viewport {
  margin-top: 28px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 420ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.testimonial-header {
  justify-content: flex-start;
  align-items: center;
}

.testimonial-header h3 {
  margin: 0 0 6px;
}

.testimonial-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-text {
  margin: 20px 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.testimonial-stars {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 15px 18px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.contact-toggle {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-toggle legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Playfair Display", serif;
}

.toggle-option {
  position: relative;
  flex: 1 1 220px;
}

.toggle-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.toggle-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.toggle-option span:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.45);
}

.toggle-option input:checked + span {
  color: #111;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  box-shadow: 0 16px 28px rgba(212, 175, 55, 0.18);
}

.toggle-option input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.contact-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  padding: 24px;
}

.panel-card h3 {
  margin-bottom: 14px;
}

.panel-card p {
  margin: 0;
  line-height: 1.8;
  font-size: 1rem;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.site-footer p,
.site-footer span {
  margin: 24px 0 0;
}

.site-footer p {
  letter-spacing: 0.16em;
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@keyframes carouselFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .contact-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .offers-frame {
    min-height: 520px;
  }

  .offer-slide h2,
  .offer-copy {
    max-width: none;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  h1 {
    font-size: 2.15rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .site-header {
    padding-top: 18px;
  }

  .site-header > .btn {
    width: auto;
    min-width: 180px;
  }

  .section {
    padding: 56px 0;
  }

  .offers {
    padding-top: 8px;
  }

  .offers-frame {
    min-height: 500px;
    padding: 22px;
    border-radius: 24px;
  }

  .offers-stage {
    min-height: 330px;
    margin-top: 26px;
  }

  .offer-slide {
    gap: 14px;
    padding-bottom: 52px;
  }

  .offer-slide h2 {
    font-size: 2.1rem;
  }

  .offer-copy {
    font-size: 1.12rem;
  }

  .offers-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonials-carousel,
  .testimonial-card {
    border-radius: 22px;
  }

  .testimonials-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonials-summary {
    align-items: flex-start;
  }

  .testimonial-controls {
    justify-content: flex-end;
  }

  .offers-dots {
    justify-content: center;
  }

  .offers-cta {
    width: 100%;
  }

  .logo-panel,
  .hero-metrics article,
  .info-card,
  .contact-form,
  .panel-card,
  .about-note,
  .offers-frame,
  .testimonials-carousel,
  .testimonial-card {
    border-radius: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .logo-panel {
    padding: 24px;
  }

  .logo-panel img {
    width: min(170px, 48vw);
  }

  .site-footer {
    flex-direction: column;
  }
}
