:root {
  --black: #020202;
  --panel: #0d0b08;
  --panel-soft: #17130d;
  --gold: #d6a02d;
  --gold-light: #f2c45a;
  --text: #f7f1e5;
  --muted: #c9c0ad;
  --line: rgba(214, 160, 45, 0.42);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 78%, rgba(214, 160, 45, 0.15), transparent 20rem),
    radial-gradient(circle at 88% 22%, rgba(214, 160, 45, 0.13), transparent 26rem),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 18px clamp(20px, 4.7vw, 64px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(214, 160, 45, 0.18);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(150px, 17vw, 230px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a.active,
.nav a:hover {
  color: var(--gold-light);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--gold-light);
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.header-button {
  min-width: 132px;
  padding: 12px 18px;
  color: #fff;
  border: 1px solid var(--gold);
  background: rgba(214, 160, 45, 0.08);
}

.button {
  padding: 13px 22px;
  border: 1px solid var(--gold);
  font-size: 0.88rem;
}

.button.gold {
  color: #0b0803;
  background: linear-gradient(135deg, #f2c45a, #b8790a);
  box-shadow: 0 16px 40px rgba(214, 160, 45, 0.24);
}

.button.outline {
  color: var(--text);
  background: rgba(0, 0, 0, 0.26);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.12fr);
  align-items: center;
  min-height: 86vh;
  padding: 120px clamp(20px, 4.7vw, 64px) 58px;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 160, 45, 0.24);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 36%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 43% 34%, rgba(242, 196, 90, 0.18), transparent 20rem);
  pointer-events: none;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.86rem;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.9vw, 6.7rem);
  line-height: 1.02;
}

h1 span,
h2 span {
  color: var(--gold-light);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #efe3c9;
  font-size: 0.92rem;
}

.trust-row span {
  padding-right: 15px;
  border-right: 1px solid rgba(214, 160, 45, 0.44);
}

.trust-row span:last-child {
  border-right: 0;
}

.hero-stage {
  align-self: stretch;
  display: grid;
  align-items: center;
  min-height: 560px;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}

.services,
.about,
.packages,
.contact {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 4.7vw, 64px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.contact-text p,
.service-card p,
.package-grid p {
  color: var(--muted);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(214, 160, 45, 0.06));
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 174px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.service-card h3,
.service-card p {
  padding: 0 18px;
}

.service-card h3 {
  margin-top: 34px;
}

.service-icon {
  position: absolute;
  top: 150px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 50%;
  color: var(--gold-light);
  background: #020202;
  border: 1px solid var(--gold);
  font-weight: 900;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(170px, 0.46fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  background:
    radial-gradient(circle at 40% 82%, rgba(214, 160, 45, 0.24), transparent 20rem),
    #050403;
  border-top: 1px solid rgba(214, 160, 45, 0.18);
  border-bottom: 1px solid rgba(214, 160, 45, 0.18);
}

.about-copy h2 {
  max-width: 620px;
}

.about-mark img {
  width: min(260px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 24px 50px rgba(214, 160, 45, 0.24));
}

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

.stat {
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(214, 160, 45, 0.15), rgba(255, 255, 255, 0.03));
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  color: var(--text);
  font-size: 0.9rem;
}

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

.package-grid article {
  padding: 30px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.package-grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(214, 160, 45, 0.18);
  border-bottom: 1px solid rgba(214, 160, 45, 0.18);
}

.gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(1.08);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: radial-gradient(circle at 16% 42%, rgba(214, 160, 45, 0.18), transparent 18rem), #050403;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border-radius: 7px;
  border: 1px solid rgba(214, 160, 45, 0.38);
  color: var(--text);
  background: rgba(0, 0, 0, 0.54);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

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

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px clamp(20px, 4.7vw, 64px);
  color: var(--text);
  background: #050403;
  border-top: 1px solid rgba(214, 160, 45, 0.24);
}

.footer a,
.footer span {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-weight: 800;
}

.footer a:hover {
  color: var(--gold-light);
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 360px;
    margin-top: 34px;
  }

  .hero-stage img {
    min-height: 360px;
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

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

  .about-mark {
    order: 3;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding: 13px 16px;
  }

  .brand img {
    width: 142px;
  }

  .header-button {
    min-width: auto;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  .hero {
    padding: 98px 16px 42px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row span {
    padding-right: 0;
    border-right: 0;
  }

  .hero-stage,
  .hero-stage img {
    min-height: 300px;
  }

  .services,
  .about,
  .packages,
  .contact {
    padding: 58px 16px;
  }

  .service-grid,
  .package-grid,
  .stats-grid,
  .contact-form,
  .form-actions,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

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

  .gallery-strip img {
    height: 190px;
  }
}
