:root {
  --gold: #f4be69;
  --grey: #454043;
  --cream: #f8f7f2;
  --ink: #201f20;
  --muted: #706a6c;
  --line: rgba(69, 64, 67, 0.18);
  --dark-line: rgba(248, 247, 242, 0.18);
  --paper: #ffffff;
  --soft: #edeae3;
  --steel: #60707a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(69, 64, 67, 0.96);
  color: var(--cream);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(248, 247, 242, 0.24);
  background: var(--gold);
  color: #1f1c16;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand span:last-child {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
}

nav a {
  color: rgba(248, 247, 242, 0.82);
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(86svh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  overflow: hidden;
  padding: clamp(34px, 7vw, 88px);
  background: var(--grey);
  color: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(32, 31, 32, 0.98), rgba(32, 31, 32, 0.86) 55%, rgba(69, 64, 67, 0.94)),
    radial-gradient(circle at 84% 24%, rgba(244, 190, 105, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(96, 112, 122, 0.28), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(-84px, -3vw, -24px);
  bottom: -18%;
  width: clamp(120px, 16vw, 240px);
  height: 118%;
  background: linear-gradient(180deg, rgba(244, 190, 105, 0.92), rgba(96, 112, 122, 0.28));
  transform: rotate(34deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding-bottom: min(8vh, 72px);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  margin: 0;
  width: min(100%, 520px);
  border: 1px solid rgba(248, 247, 242, 0.22);
  background: rgba(248, 247, 242, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.hero-portrait img {
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.9vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.7vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 790px;
  margin-bottom: 30px;
  color: rgba(248, 247, 242, 0.86);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #1f1c16;
}

.button.secondary {
  border: 1px solid rgba(248, 247, 242, 0.55);
  color: var(--cream);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.proof-band div {
  min-height: 132px;
  padding: 28px;
  border-right: 1px solid var(--dark-line);
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.proof-band span {
  color: rgba(248, 247, 242, 0.76);
}

.section,
.split-section,
.contact-section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

.panel,
.link-panel {
  background: var(--paper);
  padding: clamp(24px, 3vw, 36px);
}

.panel .num {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  font-weight: 900;
  line-height: 1;
}

.link-panel {
  display: block;
  text-decoration: none;
}

.link-panel:hover h3 {
  color: var(--gold);
}

.link-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.body-copy {
  max-width: 780px;
  color: #403b3d;
  font-size: 1.08rem;
}

.body-copy p {
  margin-bottom: 18px;
}

.muted {
  background: var(--soft);
}

.dark {
  background: var(--grey);
  color: var(--cream);
}

.dark .section-intro {
  color: rgba(248, 247, 242, 0.78);
}

.dark-grid,
.dark .grid-3 {
  background: var(--dark-line);
  border-color: var(--dark-line);
}

.dark .panel {
  background: rgba(248, 247, 242, 0.08);
  border: 1px solid var(--dark-line);
}

.dark .link-panel {
  background: rgba(248, 247, 242, 0.08);
  border: 1px solid var(--dark-line);
  color: var(--cream);
}

.dark .link-panel span,
.dark .link-panel p {
  color: rgba(248, 247, 242, 0.74);
}

.text-link {
  color: var(--ink);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: start;
  background: var(--ink);
  color: var(--cream);
}

.contact-section h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.contact-copy p:last-child {
  max-width: 680px;
  color: rgba(248, 247, 242, 0.72);
}

.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--dark-line);
  background: rgba(248, 247, 242, 0.07);
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(248, 247, 242, 0.72);
  font-size: 0.86rem;
}

.form-status {
  min-height: 22px;
}

.form-status[data-state="error"] {
  color: #ffd19a;
}

.form-status[data-state="success"] {
  color: var(--gold);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.trap {
  display: none !important;
}

.contact-form span {
  color: rgba(248, 247, 242, 0.78);
  font-size: 0.86rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 247, 242, 0.22);
  border-radius: 6px;
  background: rgba(248, 247, 242, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.section-action {
  margin-top: 28px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: var(--grey);
  color: rgba(248, 247, 242, 0.78);
  border-top: 1px solid var(--dark-line);
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .proof-band,
  .grid-4,
  .grid-3,
  .split-section,
  .hero {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: auto;
  }

  .contact-section {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

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

  .hero::before {
    background:
      linear-gradient(110deg, rgba(32, 31, 32, 0.98), rgba(32, 31, 32, 0.9)),
      radial-gradient(circle at 80% 20%, rgba(244, 190, 105, 0.16), transparent 38%);
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .hero-portrait img {
    min-height: 360px;
    object-position: 78% 50%;
  }
}
