:root {
  --bg: #11100d;
  --ink: #f7f1e3;
  --muted: #c8bc9c;
  --line: rgba(247, 241, 227, 0.16);
  --panel: #1b1914;
  --panel-soft: #eee7d5;
  --panel-ink: #18150f;
  --gold: #d6b569;
  --teal: #63d4c5;
  --shadow: rgba(0, 0, 0, 0.24);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(247, 241, 227, 0.1);
  background: rgba(17, 16, 13, 0.74);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  font-weight: 700;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214, 181, 105, 0.54);
  border-radius: 6px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
}

.wordmark-name {
  font-size: 15px;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(247, 241, 227, 0.78);
  font-size: 14px;
}

.nav-links a {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 64px) 76px;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.72;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.98) 0%, rgba(17, 16, 13, 0.82) 42%, rgba(17, 16, 13, 0.36) 100%),
    linear-gradient(0deg, rgba(17, 16, 13, 0.98) 0%, rgba(17, 16, 13, 0.06) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family:
    Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(64px, 13vw, 154px);
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(247, 241, 227, 0.82);
  font-size: clamp(19px, 2.4vw, 30px);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  border: 1px solid var(--gold);
  color: #15120b;
  background: var(--gold);
}

.button-secondary {
  border: 1px solid rgba(247, 241, 227, 0.28);
  color: var(--ink);
  background: rgba(247, 241, 227, 0.08);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px);
}

.split-layout,
.section-heading,
.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro {
  background: #171511;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 78px);
}

.copy-stack,
.section-heading p,
.audience-panel p,
.contact-actions p,
.site-footer p {
  color: rgba(247, 241, 227, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.copy-stack p,
.section-heading p,
.audience-panel p,
.contact-actions p {
  margin: 0;
}

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

.section-heading {
  align-items: end;
}

.section-heading p {
  max-width: 540px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 46px auto 0;
}

.service-card {
  min-height: 264px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px var(--shadow);
}

.service-number {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.service-card h3 {
  margin: 64px 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: rgba(247, 241, 227, 0.68);
  font-size: 15px;
  line-height: 1.62;
}

.audience-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.audience-panel {
  min-height: 420px;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 64px);
  background: var(--panel-soft);
  color: var(--panel-ink);
}

.audience-panel .section-kicker {
  color: #8a6b20;
}

.audience-panel h2 {
  max-width: 620px;
  color: var(--panel-ink);
  font-size: clamp(34px, 5vw, 64px);
}

.audience-panel p {
  max-width: 560px;
  margin-top: 26px;
  color: rgba(24, 21, 15, 0.72);
}

.dark-panel {
  background: #1b1914;
  color: var(--ink);
}

.dark-panel .section-kicker {
  color: var(--gold);
}

.dark-panel h2 {
  color: var(--ink);
}

.dark-panel p {
  color: rgba(247, 241, 227, 0.72);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(99, 212, 197, 0.08), rgba(214, 181, 105, 0.12)),
    #11100d;
}

.contact-box {
  align-items: center;
  padding: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(214, 181, 105, 0.28);
  border-radius: 8px;
  background: rgba(27, 25, 20, 0.78);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.email-link {
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(247, 241, 227, 0.24);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(247, 241, 227, 0.08);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #0d0c0a;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .section-heading,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    padding: 16px 18px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 84vh;
    padding: 116px 18px 56px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(17, 16, 13, 0.98) 0%, rgba(17, 16, 13, 0.8) 100%),
      linear-gradient(0deg, rgba(17, 16, 13, 0.98) 0%, rgba(17, 16, 13, 0.24) 56%);
  }

  .hero-actions,
  .button,
  .email-link {
    width: 100%;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .service-card {
    min-height: 220px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .contact-box {
    padding: 28px 20px;
  }
}
