:root {
  --bg: #f5f4f1;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-alt: #ece9e2;
  --text: #131313;
  --muted: #626262;
  --line: rgba(19, 19, 19, 0.1);
  --line-strong: rgba(255, 255, 255, 0.1);
  --dark: #0d0d0d;
  --dark-soft: #151515;
  --gold: #c8b18a;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 24px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.06);
  --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #faf9f6 0%, var(--bg) 55%, #f0ede7 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 244, 241, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: min(330px, 48vw);
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.94;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
}

.nav a {
  color: rgba(19, 19, 19, 0.72);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #000;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(200, 177, 138, 0.18), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(135deg, #0b0b0b 0%, #141414 52%, #1a1a1a 100%);
  padding: 82px 0 88px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  opacity: 0.55;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.14;
}

.hero-grid,
.positioning-grid,
.target-grid,
.contact-shell {
  display: grid;
  gap: 38px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #77736a;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.lead,
.section-intro,
.service-card p,
.experience-card p,
.statement-card p,
.contact-card p {
  font-size: 1.05rem;
}

.lead,
.sublead {
  color: rgba(255, 255, 255, 0.8);
}

.sublead {
  margin-bottom: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 600;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.button-primary {
  background: var(--white);
  color: #111;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.panel-dark {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-deep);
}

.panel-dark.soft {
  background: rgba(255, 255, 255, 0.035);
}

.panel-label {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel h2 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.panel p,
.panel li {
  color: rgba(255, 255, 255, 0.76);
}

.panel ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(236, 233, 226, 0.8) 0%, rgba(236, 233, 226, 0.45) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 30px;
  align-items: end;
}

.section-head.compact {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.section-intro {
  color: var(--muted);
}

.service-grid,
.experience-grid,
.target-cards {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.service-card,
.experience-card,
.statement-card,
.target-card,
.contact-card {
  border-radius: var(--radius-md);
}

.service-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 68px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(250,248,244,0.92) 100%);
}

.positioning-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
}

.statement-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 19, 19, 0.08);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.experience-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: var(--shadow-soft);
  padding: 30px;
}

.experience-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #8d7551;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.credibility-strip > div {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 20px;
  padding: 22px;
}

.metric {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.credibility-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.target-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.target-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.target-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(19, 19, 19, 0.08);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
}

.contact-section {
  background: transparent;
}

.contact-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: stretch;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #151515 65%, #1a1a1a 100%);
  box-shadow: var(--shadow-deep);
}

.contact-copy,
.contact-card.premium {
  padding: 44px;
}

.contact-copy {
  color: var(--white);
}

.light-text {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card.premium {
  background: rgba(255, 255, 255, 0.045);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.contact-card a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .positioning-grid,
  .experience-grid,
  .target-grid,
  .contact-shell,
  .credibility-strip,
  .service-grid,
  .target-cards {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: min(280px, 56vw);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .hero {
    padding: 58px 0 64px;
  }

  .section {
    padding: 68px 0;
  }

  .panel,
  .service-card,
  .experience-card,
  .statement-card,
  .contact-copy,
  .contact-card.premium,
  .target-card {
    padding: 24px;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tags span {
    font-size: 13px;
  }
}
