:root {
  --page: #08090a;
  --paper: #151719;
  --ink: #f6f2e9;
  --muted: #b9b4aa;
  --line: rgba(221, 178, 88, 0.18);
  --steel: #30343a;
  --steel-2: #0f1012;
  --gold: #c7922f;
  --gold-2: #f0c86a;
  --red: #b32323;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 6px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(199, 146, 47, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(180, 185, 190, 0.12), transparent 28%),
    linear-gradient(180deg, #0b0c0e 0%, #121315 42%, #08090a 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.045), transparent 36%);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 9, 10, 0.92);
  border-bottom: 1px solid rgba(240, 200, 106, 0.2);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  text-decoration: none;
}

.brand img {
  width: 390px;
  max-height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(18, 19, 20, 0.24));
}

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

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(246, 242, 233, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:hover {
  background: rgba(240, 200, 106, 0.1);
  color: var(--gold-2);
  box-shadow: inset 0 0 0 1px rgba(240, 200, 106, 0.24);
}

.main-nav a[aria-current="page"] {
  background: rgba(240, 200, 106, 0.14);
  color: var(--gold-2);
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 200, 106, 0.34);
  background: linear-gradient(135deg, #1c1d1f, #0b0c0d);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 0;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 18px;
}

.hero-copy,
.hero-visual {
  border: 1px solid rgba(240, 200, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(21, 23, 25, 0.9);
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(22, 23, 25, 0.98), rgba(9, 10, 11, 0.98)),
    var(--paper);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(240, 200, 106, 0.18), transparent 42%),
    linear-gradient(135deg, #1b1d20, #08090a 70%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(240, 200, 106, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(240, 200, 106, 0.13) 47% 53%, transparent 53%),
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(240, 200, 106, 0.18) 47%, transparent 48%);
  transform: none;
}

.hero-visual img {
  position: relative;
  width: min(92%, 590px);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.62));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6.7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: var(--ink);
}

h2 {
  max-width: 820px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
}

h3 {
  font-size: 21px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 620px;
  margin-top: 22px;
  font-size: 18px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
}

.btn.secondary {
  border: 1px solid rgba(240, 200, 106, 0.25);
  background: #0f1012;
  color: var(--ink);
}

.trust-strip,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.trust-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip div {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(28, 30, 33, 0.96), rgba(13, 14, 16, 0.96));
  box-shadow: var(--shadow);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 19px;
  color: var(--ink);
}

.trust-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 88px 0;
}

.special-offer-section {
  padding-bottom: 0;
}

.special-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.45fr) minmax(220px, 0.55fr) auto;
  align-items: center;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(184, 135, 45, 0.45);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #111214, #2d2519 56%, #08090a),
    var(--steel-2);
  color: white;
  box-shadow: 0 22px 58px rgba(18, 19, 20, 0.2);
}

.special-offer-card h2 {
  color: white;
  font-size: clamp(28px, 3.4vw, 44px);
}

.special-offer-card p,
.special-offer-card li {
  color: rgba(255, 255, 255, 0.74);
}

.special-offer-card ul {
  margin-top: 0;
}

.special-price {
  display: grid;
  gap: 3px;
  padding: 18px;
  border: 1px solid rgba(215, 175, 88, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.special-price span,
.special-price small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.special-price strong {
  color: var(--gold-2);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.section-head {
  margin-bottom: 30px;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-head.split p {
  max-width: 440px;
}

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

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: var(--radius);
  color: white;
  background: var(--steel-2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card:nth-child(1) {
  background: linear-gradient(135deg, #25292d, #0d0e10);
}

.service-card:nth-child(2) {
  background: linear-gradient(135deg, #473719, #0f1012);
}

.service-card:nth-child(3) {
  background: linear-gradient(135deg, #33383d, #101113);
}

.service-card span {
  color: var(--gold-2);
  font-weight: 900;
}

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

.service-card p,
.service-card li {
  color: rgba(255, 255, 255, 0.72);
}

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

.package-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(25, 27, 30, 0.98), rgba(12, 13, 15, 0.98));
  box-shadow: var(--shadow);
}

.package-link {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.package-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(184, 135, 45, 0.24);
}

.package-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.package-top strong {
  color: var(--gold);
  font-size: 20px;
  white-space: nowrap;
}

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

li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

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

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

.gallery-tile {
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84)),
    linear-gradient(135deg, #262a2f, #0d0e10);
  box-shadow: var(--shadow);
}

.gallery-tile span {
  color: white;
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 200, 106, 0.18);
  background: linear-gradient(135deg, #17191c, #08090a);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel .phone-link {
  color: white;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.phone-link {
  display: inline-flex;
  margin-top: 24px;
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  outline: none;
  font: inherit;
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-2);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(240, 200, 106, 0.18);
}

.site-footer img {
  width: 220px;
  filter: drop-shadow(0 8px 14px rgba(18, 19, 20, 0.18));
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 0;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid rgba(240, 200, 106, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 18%, rgba(240, 200, 106, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(22, 23, 25, 0.98), rgba(9, 10, 11, 0.98));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 860px;
}

.pricing-section {
  padding-top: 36px;
}

.pricing-card,
.pricing-note {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(25, 27, 30, 0.98), rgba(12, 13, 15, 0.98));
  box-shadow: var(--shadow);
}

.pricing-card + .pricing-card {
  margin-top: 18px;
}

.pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.pricing-head p {
  max-width: 430px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.compact-table {
  margin-top: 18px;
}

.price-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #111214;
}

.price-table th,
.price-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.price-table th {
  background: #08090a;
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table th:not(:first-child),
.price-table td:not(:first-child) {
  text-align: center;
  white-space: nowrap;
}

.price-table td:first-child {
  width: 44%;
  color: var(--ink);
  font-weight: 700;
}

.price-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.035);
}

.price-table .price-group td {
  background: rgba(240, 200, 106, 0.14);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pricing-disclaimer {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(240, 200, 106, 0.08);
  color: var(--ink);
  font-weight: 800;
}

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

.esthetic-grid.single-offer {
  grid-template-columns: minmax(0, 1fr);
}

.esthetic-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--steel-2);
  color: white;
  box-shadow: var(--shadow);
}

.esthetic-grid.single-offer .esthetic-card {
  min-height: 420px;
}

.esthetic-card.featured {
  background: linear-gradient(135deg, #3a3328, #121314);
}

.esthetic-card span,
.esthetic-card strong {
  color: var(--gold-2);
  font-weight: 900;
}

.esthetic-card h2 {
  color: white;
  font-size: clamp(30px, 4vw, 46px);
}

.esthetic-card p {
  color: rgba(255, 255, 255, 0.72);
}

.esthetic-card li {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-note {
  margin-top: 14px;
}

@media (max-width: 980px) {
  .site-header-inner,
  .hero,
  .contact-panel,
  .section-head.split,
  .special-offer-card {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .header-call {
    width: fit-content;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 440px;
  }

  .trust-strip,
  .service-grid,
  .package-grid,
  .gallery-grid,
  .esthetic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    min-height: 0;
    padding: 12px 0;
  }

  .brand img {
    width: 100%;
  }

  .main-nav a {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero {
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .trust-strip,
  .service-grid,
  .package-grid,
  .gallery-grid,
  .esthetic-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
