:root {
  --black: #0b0b0c;
  --charcoal: #191a1d;
  --gray: #666b73;
  --line: #ded8ca;
  --gold: #c99a35;
  --gold-light: #f1d089;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --shadow: 0 22px 60px rgba(11, 11, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(247, 245, 240, 0.92);
  border-bottom: 1px solid rgba(25, 26, 29, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  max-height: 72px;
  object-fit: contain;
}

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

.site-nav a:hover {
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(25, 26, 29, 0.12);
  background: var(--white);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: clamp(32px, 7vw, 80px);
  min-height: calc(100vh - 82px);
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(11, 11, 12, 0.94), rgba(25, 26, 29, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(201, 154, 53, 0.32), transparent 30%),
    var(--black);
  color: var(--white);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  color: var(--black);
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.contact-buttons a,
.quick-contact a,
.quick-contact span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
}

.btn {
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.quick-contact a,
.quick-contact span {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 58px);
  box-shadow: var(--shadow);
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(11, 11, 12, 0.72);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.form-card {
  left: 28px;
  right: 74px;
  top: 44px;
  padding: 24px;
}

.form-card span {
  color: var(--gold-light);
  font-weight: 800;
}

.form-card strong {
  display: block;
  margin: 10px 0;
  font-size: 4.4rem;
  line-height: 1;
}

.form-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.chart-card {
  right: 28px;
  bottom: 42px;
  display: flex;
  align-items: end;
  gap: 14px;
  width: 220px;
  height: 190px;
  padding: 20px;
}

.bar {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
}

.bar-one { height: 38%; }
.bar-two { height: 72%; }
.bar-three { height: 54%; }
.bar-four { height: 88%; }

.torch-lines {
  position: absolute;
  left: 32px;
  bottom: 28px;
  width: min(48%, 260px);
  fill: none;
  stroke: rgba(241, 208, 137, 0.54);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section,
.split-section,
.about-section,
.contact-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

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

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

.service-card,
.price-card,
.about-panel,
.contact-form {
  border: 1px solid rgba(25, 26, 29, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(25, 26, 29, 0.08);
}

.service-card,
.price-card {
  display: block;
  padding: 24px;
}

.service-card {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(201, 154, 53, 0.62);
  box-shadow: 0 18px 44px rgba(25, 26, 29, 0.12);
  transform: translateY(-3px);
}

.service-card p,
.price-card p,
.split-section p,
.about-panel p,
.contact-copy p {
  color: var(--gray);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(25, 26, 29, 0.08);
  border-radius: 8px;
  background: var(--off-white);
}

.feature-list span {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.3rem;
}

.feature-list p {
  margin: 0;
}

.about-section {
  background:
    linear-gradient(rgba(247, 245, 240, 0.86), rgba(247, 245, 240, 0.86)),
    linear-gradient(135deg, rgba(201, 154, 53, 0.3), transparent 42%, rgba(25, 26, 29, 0.12));
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  max-width: 1080px;
  padding: clamp(28px, 5vw, 56px);
}

.owner-card {
  margin: 0;
}

.owner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(25, 26, 29, 0.16);
}

.owner-card figcaption {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.owner-card strong,
.owner-card span {
  display: block;
}

.owner-card strong {
  color: var(--black);
}

.owner-card span {
  color: var(--gray);
  font-size: 0.94rem;
}

.pricing-section {
  background: var(--black);
}

.pricing-section h2,
.pricing-section h3 {
  color: var(--white);
}

.price-card {
  background: #151619;
}

.price-card.featured {
  border-color: rgba(201, 154, 53, 0.72);
  transform: translateY(-8px);
}

.price {
  margin-bottom: 12px;
  color: var(--gold-light) !important;
  font-size: 2rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-buttons a {
  padding: 0 14px;
  color: var(--black);
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 800;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.service-options {
  display: grid;
  gap: 10px;
}

.service-options legend {
  margin-bottom: 7px;
  color: var(--black);
  font-weight: 800;
}

.service-options p {
  margin: 0 0 4px;
  color: var(--gray);
  font-size: 0.94rem;
}

.service-options label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(25, 26, 29, 0.12);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(25, 26, 29, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--black);
  background: #fbfaf7;
  font: inherit;
}

.service-options input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

textarea {
  resize: vertical;
}

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

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--black);
}

.site-footer p {
  margin: 0;
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(24px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(11, 11, 12, 0.94), rgba(25, 26, 29, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(201, 154, 53, 0.32), transparent 30%),
    var(--black);
}

.thank-you-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.thank-you-panel h1 {
  margin-bottom: 12px;
}

.thank-you-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.thank-you-logo {
  display: block;
  width: min(240px, 72vw);
  margin-bottom: 30px;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .contact-section,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .form-card {
    right: 28px;
  }

  .chart-card {
    width: 190px;
    height: 155px;
  }

  .torch-lines {
    width: min(40%, 190px);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(25, 26, 29, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

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

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

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

  .form-card {
    left: 18px;
    right: 18px;
    top: 24px;
    padding: 20px;
  }

  .form-card strong {
    font-size: 3.5rem;
  }

  .chart-card {
    right: 18px;
    bottom: 24px;
    width: 160px;
    height: 130px;
    padding: 16px;
    gap: 10px;
  }

  .torch-lines {
    left: 18px;
    bottom: 24px;
    width: 145px;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 138px;
    max-height: 58px;
  }

  .hero-actions .btn,
  .contact-buttons a {
    width: 100%;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }
}
