:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: rgba(22, 22, 22, 0.94);
  --line: rgba(212, 175, 55, 0.18);
  --text: #f5f1e6;
  --muted: #b7ab8a;
  --gold: #d4af37;
  --gold-soft: #f1dc93;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0c0c0c 48%, #080808 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 40;
  background: linear-gradient(90deg, #8a6a19, var(--gold), var(--gold-soft));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

.background-orb {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.orb-left {
  top: 6rem;
  left: -8rem;
  background: rgba(212, 175, 55, 0.28);
}

.orb-right {
  top: 35rem;
  right: -10rem;
  background: rgba(212, 175, 55, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.55));
  backdrop-filter: blur(18px);
}

.brand,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  color: var(--text);
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 1.5px;
  background: var(--gold-soft);
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  padding: 4.5rem 0;
}

.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.96;
}

h3 {
  margin: 0 0 0.7rem;
  font-size: 2rem;
}

.tagline {
  margin: 1rem 0;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}

.hero-text,
.about-card p,
.service-card p,
.contact-copy p,
.metric-card p,
.metric-grid article span,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-trust span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-soft);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #c49a2c, #f0d36c);
  color: #101010;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero-panel,
.about-card,
.service-card,
.contact-form,
.section-heading {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.3rem;
}

.metric-card {
  padding: 1.5rem;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.2), rgba(20, 20, 20, 0.88)),
    #131313;
  border: 1px solid rgba(241, 220, 147, 0.22);
}

.metric-card span,
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 1rem 0 0.7rem;
  font-size: 1.6rem;
  color: var(--text);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.metric-grid article,
.about-card,
.service-card {
  padding: 1.5rem;
}

.metric-grid article {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.metric-grid article strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 1.05rem;
}

.signal-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.signal-bar div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.signal-bar small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-bar strong {
  color: var(--text);
  font-size: 1rem;
}

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: -1rem 0 1rem;
}

.impact-band article,
.process-card,
.showcase-panel,
.showcase-points article {
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.impact-band article {
  padding: 1.5rem;
}

.impact-band strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-soft);
}

.impact-band span {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  padding: 1.6rem;
  margin-bottom: 1.25rem;
}

.about-grid,
.services-grid,
.process-grid,
.contact {
  display: grid;
  gap: 1rem;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent 42%);
  pointer-events: none;
}

.service-card,
.process-card,
.showcase-points article {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover,
.process-card:hover,
.showcase-points article:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 220, 147, 0.3);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.process-card {
  padding: 1.5rem;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 68%);
  pointer-events: none;
}

.showcase-copy {
  padding: 0.5rem;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.showcase-points {
  display: grid;
  gap: 1rem;
}

.showcase-points article {
  padding: 1.25rem;
}

.showcase-points strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.05rem;
}

.showcase-points span {
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-copy {
  padding: 1rem 0.25rem 0 0;
}

.contact-form {
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(183, 171, 138, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(241, 220, 147, 0.55);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--gold-soft);
}

.site-footer {
  padding: 0 0 2rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero,
  .about-grid,
  .services-grid,
  .process-grid,
  .contact,
  .metric-grid,
  .impact-band,
  .showcase-panel,
  .signal-bar {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(9, 9, 9, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .site-header {
    position: sticky;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero-panel,
  .about-card,
  .service-card,
  .process-card,
  .contact-form,
  .section-heading,
  .impact-band article,
  .showcase-panel,
  .showcase-points article {
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .impact-band strong {
    font-size: 2.4rem;
  }
}
