:root {
  --bg: #0e0600;
  --bg2: #1a0a02;
  --bg3: #241108;
  --gold: #c8864a;
  --gold-light: #e8a96a;
  --cream: #f5ead8;
  --cream-muted: #c4b49a;
  --border: rgba(200, 134, 74, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", san  s-serif;
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(14, 6, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: #0e0600;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    #3d1a06 0%,
    #1a0a02 55%,
    #0e0600 100%
  );
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle 400px at 15% 80%,
      rgba(200, 134, 74, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle 300px at 85% 20%,
      rgba(200, 134, 74, 0.05) 0%,
      transparent 70%
    );
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.typewriter-wrap {
  display: inline;
  color: var(--gold);
  font-style: italic;
}
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.8em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-muted);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  background: var(--gold);
  color: #0e0600;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-secondary {
  background: transparent;
  color: var(--cream-muted);
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid rgba(245, 234, 216, 0.25);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  color: var(--cream);
  border-color: var(--gold);
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 3.5rem auto 0;
  opacity: 0.5;
}

/* SOCIAL PROOF BAR */
.proof-bar {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-right: 1rem;
}
.proof-name {
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem;
  border: 0.5px solid var(--border);
  border-radius: 2px;
}

/* SECTION BASE */
section {
  padding: 6rem 4rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-sub {
  color: var(--cream-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 540px;
}
.max-w {
  max-width: 1100px;
  margin: 0 auto;
}

/* USP SECTION */
.usp {
  background: var(--bg2);
}
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.usp-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.usp-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 2px;
  background: rgba(200, 134, 74, 0.12);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.usp-text h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.usp-text p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.usp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.stat-box {
  background: var(--bg3);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
}

/* SERVICES */
.services {
  background: var(--bg);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid var(--border);
}
.pkg {
  padding: 2rem 1.5rem;
  border-right: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
  position: relative;
}
.pkg:last-child {
  border-right: none;
}
.pkg:hover {
  background: var(--bg2);
}
.pkg.highlight {
  background: var(--bg2);
}
.pkg.highlight::before {
  content: "Most Popular";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0e0600;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
}
.pkg-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.pkg-price {
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.pkg-price sub {
  font-size: 0.8rem;
  color: var(--cream-muted);
}
.pkg-desc {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pkg-features li {
  font-size: 0.8rem;
  color: var(--cream-muted);
  display: flex;
  gap: 0.5rem;
}
.pkg-features li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
.pkg-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.pkg-btn:hover,
.pkg.highlight .pkg-btn {
  background: var(--gold);
  color: #0e0600;
}

/* PROCESS */
.process {
  background: var(--bg3);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border-top: 0.5px solid var(--border);
}
.step {
  padding: 2rem 1.5rem 2rem 0;
  position: relative;
}
.step-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200, 134, 74, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* CLIENTS */
.clients {
  background: var(--bg2);
}
.client-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.client-tag {
  font-size: 0.75rem;
  color: var(--cream-muted);
  padding: 0.4rem 1rem;
  border: 0.5px solid var(--border);
  border-radius: 2px;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
}
.result-box {
  background: var(--bg3);
  padding: 1.75rem;
}
.result-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.result-label {
  font-size: 0.78rem;
  color: var(--cream-muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* FORM SECTION */
.form-section {
  background: var(--bg);
}
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.form-side {
  margin-top: 2rem;
}
.form-promise {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.promise-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--cream-muted);
}
.promise-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
input,
select,
textarea {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
select option {
  background: #1a0a02;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.submit-btn {
  background: var(--gold);
  color: #0e0600;
  padding: 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover {
  background: var(--gold-light);
}
.form-note {
  font-size: 0.75rem;
  color: var(--cream-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-logo span {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--cream-muted);
}
.footer-email {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 1.5rem;
  }
  .usp-grid,
  .client-intro,
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-bar {
    padding: 1.5rem;
  }
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
}
