:root {
  --navy: #e0dede;
  --navy2: #d6d4d4;
  --navy3: #cccccc;
  --gold: #f97316;
  --gold-light: #fb923c;
  --gold-dim: rgba(249, 115, 22, 0.1);
  --gold-border: rgba(249, 115, 22, 0.3);
  --white: #1a1a1a;
  --white2: #333333;
  --muted: rgba(26, 26, 26, 0.75);
  --faint: rgba(26, 26, 26, 0.15);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--navy);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  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: 20px 60px;
  background: rgba(204, 204, 204, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--faint);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  border-radius: 4px;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: #fff;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 65% 50%,
    rgba(196, 150, 58, 0.06) 0%,
    transparent 65%
  );
}
.hero::after {
  content: "";
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border: 1px solid var(--faint);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 44px;
}
.hero-desc strong {
  color: var(--white);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-outline {
  padding: 14px 36px;
  border: 1px solid var(--faint);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold-border);
  color: var(--white);
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 60px;
  display: flex;
  gap: 48px;
}
.stat {
  text-align: right;
}
.stat-n {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SECTION BASE ── */
section {
  padding: 100px 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.85;
}

/* ── ABOUT ── */
.about {
  background: var(--navy2);
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-left {
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.about-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about-point-num {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--gold);
  opacity: 0.6;
  padding-top: 2px;
  flex-shrink: 0;
}
.about-point-txt h4 {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.about-point-txt p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CATEGORIES ── */
.categories {
  max-width: 1100px;
  margin: 0 auto;
}
.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cat-card {
  background: var(--navy2);
  border: 1px solid var(--faint);
  padding: 36px 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.cat-card:hover {
  background: var(--navy3);
  border-color: var(--gold-border);
}
.cat-card:hover::before {
  transform: scaleX(1);
}
.cat-icon {
  font-size: 28px;
  margin-bottom: 18px;
}
.cat-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.cat-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── WHY US ── */
.why {
  background: var(--navy2);
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--faint);
  background: var(--navy);
}
.why-icon {
  font-size: 22px;
  margin-bottom: 16px;
}
.why-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.why-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── PROCESS ── */
.process {
  max-width: 1100px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 60px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.step {
  padding: 0 20px;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  color: var(--gold);
  background: var(--navy);
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── TRUST BADGES ── */
.trust {
  background: var(--navy3);
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
  padding: 48px 60px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item-icon {
  font-size: 18px;
}
.trust-item-txt {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.trust-item-txt strong {
  color: var(--white);
  display: block;
  font-size: 13px;
  font-weight: 500;
}

/* ── CONTACT ── */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 52px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-icon svg {
  color: var(--gold);
}
.contact-item-txt {
  font-size: 13px;
}
.contact-item-txt .label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.contact-item-txt a,
.contact-item-txt span {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}
.contact-item-txt a:hover {
  color: var(--gold);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--navy2);
  border: 1px solid var(--faint);
  color: var(--white);
  padding: 12px 16px;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
}
.form-group textarea {
  height: 100px;
  resize: none;
}
.form-group select option {
  background: var(--navy2);
}
.form-submit {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: #cccccc;
  border-top: 1px solid var(--faint);
  padding: 48px 60px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand {
  max-width: 300px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span {
  color: var(--gold);
}
.footer-tagline {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.75;
}
.footer-links-group h5 {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group ul a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group ul a:hover {
  color: var(--white);
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.footer-contact-list li svg {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--faint);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}
.footer-reg {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(26, 26, 26, 0.3);
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 70px 24px;
  }
  .hero {
    padding: 100px 24px 160px;
  }
  .hero-stats {
    right: 24px;
    bottom: 40px;
    gap: 24px;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .trust {
    padding: 36px 24px;
  }
  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  footer {
    padding: 40px 24px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
