
:root {
  --bg: #0c0b09;
  --bg-soft: #11100d;
  --card: #15130f;
  --card-2: #191712;
  --text: #f5f0e4;
  --muted: #9d978b;
  --gold: #d3ac57;
  --gold-bright: #f0cf80;
  --line: rgba(240, 207, 128, 0.15);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius: 24px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 7%, rgba(211, 172, 87, 0.08), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(211, 172, 87, 0.05), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background: var(--gold);
}

.glow-one {
  top: -250px;
  left: -180px;
}

.glow-two {
  right: -280px;
  top: 36%;
  opacity: 0.08;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(12, 11, 9, 0.92);
}

.nav-bar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, rgba(211, 172, 87, 0.12), rgba(255,255,255,0.01));
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-copy strong {
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.logo-copy small {
  margin-top: 4px;
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.84rem;
  color: #c9c4b9;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-bright);
}

.nav-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(211, 172, 87, 0.04);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--text);
  margin: 7px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  padding: 76px 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #bdb7aa;
  background: rgba(211, 172, 87, 0.035);
  font-size: 0.72rem;
  margin-bottom: 25px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #79d598;
  box-shadow: 0 0 0 5px rgba(121, 213, 152, 0.08);
}

.kicker,
.mini-label {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero h1,
.section-intro h2,
.contact-side h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3.4rem, 7.7vw, 7.2rem);
  margin: 16px 0 26px;
  max-width: 850px;
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0 0 34px;
}

.hero-text strong {
  color: var(--text);
  font-weight: 600;
}

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

.primary-button,
.secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  border-radius: 11px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: var(--gold-bright);
  color: #11100d;
  border: 1px solid var(--gold-bright);
}

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

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

.secondary-button:hover {
  border-color: var(--line);
}

.hero-contact-strip {
  margin-top: 43px;
  padding-top: 23px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.hero-contact-strip a {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  color: #c9c4b9;
}

.hero-contact-strip a span {
  color: #6f6b63;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 4px;
}

.profile-window {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.025), rgba(211,172,87,0.035));
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 5px 12px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #78736b;
}

.window-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.window-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #79d598;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 14px;
  background: #1b1812;
}

.portrait-wrap img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.76) contrast(1.06) brightness(0.88);
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(12,11,9,0.86) 100%),
    linear-gradient(90deg, rgba(211,172,87,0.06), transparent 45%);
}

.portrait-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
}

.portrait-caption span {
  font-weight: 800;
  letter-spacing: 0.07em;
  font-size: 0.9rem;
}

.portrait-caption small {
  color: var(--gold-bright);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.quick-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  background: rgba(255,255,255,0.015);
}

.quick-card > span {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(211,172,87,0.08);
  color: var(--gold);
  font-size: 0.58rem;
}

.quick-card strong {
  font-size: 0.72rem;
}

.quick-card small {
  color: #777269;
  font-size: 0.6rem;
}

.capability-ticker {
  margin-top: 54px;
  min-height: 66px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  white-space: nowrap;
  color: #716d65;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.capability-ticker i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 120px 0;
}

.section + .section {
  border-top: 1px solid var(--line-soft);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 62px;
}

.section-index {
  display: block;
  color: #6e6a62;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.section-intro h2,
.contact-side h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.about-card,
.info-card,
.service-card,
.process-card,
.tool-card,
.contact-shell {
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(255,255,255,0.024), rgba(255,255,255,0.008));
}

.about-card {
  min-height: 480px;
  border-radius: var(--radius);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-tag {
  width: fit-content;
  margin-bottom: auto;
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
}

.about-card h3 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}

.about-card p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 0 15px;
}

.about-stack {
  display: grid;
  gap: 18px;
}

.info-card {
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: start;
}

.info-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--gold-bright);
}

.info-card small {
  color: #6f6a63;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.info-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.02rem;
}

.info-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.services-section {
  background: rgba(255,255,255,0.008);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 340px;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: linear-gradient(145deg, rgba(211,172,87,0.055), rgba(255,255,255,0.012));
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
  color: #6f6a62;
  font-size: 0.7rem;
}

.service-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  color: var(--gold);
}

.service-card h3,
.process-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  margin: 54px 0 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 22px;
  max-width: 580px;
}

.chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.chips span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 9px;
  color: #928c82;
  font-size: 0.61rem;
}

.service-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.service-wide .service-top {
  margin-bottom: 34px;
}

.wide-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.wide-copy h3 {
  margin-top: 0;
}

.process-grid {
  border-top: 1px solid var(--line-soft);
}

.process-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 0.22fr 1fr;
  gap: 30px;
  padding: 30px 0;
  border-width: 0 0 1px;
  background: transparent;
}

.process-number {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.process-card small {
  color: #6d6961;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.process-card h3 {
  margin: 8px 0 10px;
}

.process-card p {
  color: var(--muted);
  margin: 0;
  max-width: 700px;
}

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

.tool-card {
  border-radius: 17px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tool-code {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 0.72rem;
  background: rgba(211,172,87,0.04);
}

.tool-card div {
  display: flex;
  flex-direction: column;
}

.tool-card strong {
  font-size: 0.88rem;
}

.tool-card small {
  margin-top: 3px;
  color: #777269;
  font-size: 0.68rem;
}

.contact-section {
  padding-bottom: 100px;
}

.contact-shell {
  padding: 45px;
  border-color: var(--line);
  border-radius: 26px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  background:
    radial-gradient(circle at 0 0, rgba(211,172,87,0.07), transparent 30%),
    var(--card);
  box-shadow: var(--shadow);
}

.contact-intro {
  color: var(--muted);
  max-width: 500px;
  margin: 21px 0 35px;
}

.contact-direct {
  display: grid;
}

.contact-direct a {
  position: relative;
  padding: 17px 34px 17px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}

.contact-direct a:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.contact-direct small {
  color: #68645d;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.contact-direct strong {
  margin-top: 3px;
  font-size: 0.78rem;
  color: #c9c3b7;
}

.contact-direct a > span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form label > span {
  color: #8f897f;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  outline: none;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  padding: 14px 15px;
  color: var(--text);
  background: #0f0e0b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form select {
  appearance: auto;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(211,172,87,0.07);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555149;
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.honeypot {
  display: none !important;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 42px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr;
  gap: 35px;
  align-items: start;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #817c73;
  font-size: 0.75rem;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--gold);
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  margin: 25px 0 0;
  color: #555149;
  font-size: 0.65rem;
}

.float-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--gold-bright);
  color: #11100d;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  font-size: 0.7rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
    z-index: 120;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 360px);
    height: 100vh;
    padding: 110px 34px 40px;
    background: #0e0d0a;
    border-left: 1px solid var(--line-soft);
    flex-direction: column;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -30px 0 60px rgba(0,0,0,0.35);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 9px 0;
  }

  .nav-button {
    text-align: center;
    margin-top: 7px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-panel {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-grid {
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-wide {
    grid-column: auto;
  }

  .wide-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-bar {
    min-height: 72px;
  }

  .logo-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-contact-strip {
    flex-direction: column;
    gap: 14px;
  }

  .portrait-wrap {
    min-height: 430px;
  }

  .portrait-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .capability-ticker {
    justify-content: flex-start;
    overflow: auto;
    scrollbar-width: none;
  }

  .capability-ticker::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .about-card {
    padding: 27px;
  }

  .service-card {
    min-height: 320px;
    padding: 24px;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-shell {
    padding: 28px 21px;
    gap: 44px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }

  .float-contact {
    right: 14px;
    bottom: 14px;
  }
}
