:root {
  --black: #090909;
  --charcoal: #171512;
  --graphite: #24211d;
  --gold: #bd9347;
  --gold-soft: #e0bf72;
  --paper: #f6f0e5;
  --cream: #fffaf0;
  --text: #201c16;
  --muted: #776d5e;
  --muted-dark: #c8bdac;
  --line: rgba(189, 147, 71, 0.32);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 82px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(9, 9, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  width: 292px;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  color: #f0e9dc;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu a:hover {
  color: var(--gold-soft);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 7px auto;
  background: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 72px;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.86) 42%, rgba(9, 9, 9, 0.3) 76%, rgba(9, 9, 9, 0.74) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 1) 0%, rgba(9, 9, 9, 0.12) 52%, rgba(9, 9, 9, 0.2) 100%);
}

.hero-inner {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  max-width: 780px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
}

h2 {
  color: inherit;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

.hero-inner > p:not(.kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #eee6d9;
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.primary {
  color: #15110b;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 42px rgba(189, 147, 71, 0.2);
}

.ghost {
  border-color: var(--line);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.signal-strip {
  width: min(100% - 44px, var(--max));
  margin: -34px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.signal-strip div {
  padding: 26px 30px;
  color: var(--text);
  border-right: 1px solid #e5dac8;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.1;
}

.signal-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.problem {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  color: var(--text);
  background: var(--black);
}

.problem h2 {
  color: var(--paper);
}

.copy-column {
  padding-top: 36px;
}

.copy-column p {
  color: var(--muted-dark);
  font-size: 17px;
}

.rights {
  width: 100%;
  max-width: none;
  padding: 92px max(22px, calc((100vw - var(--max)) / 2));
  color: var(--text);
  background: var(--paper);
}

.section-title {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-title .kicker {
  color: #8a641f;
}

.section-title h2,
.rights h3 {
  color: var(--text);
}

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

.rights-grid article {
  min-height: 255px;
  padding: 28px;
  border: 1px solid #ddcfb8;
  border-radius: 8px;
  background: #fffaf0;
}

.rights-grid span {
  color: #8a641f;
  font-weight: 900;
  font-size: 13px;
}

.rights-grid h3 {
  margin-top: 28px;
}

.rights-grid p {
  color: #635847;
}

.method {
  padding: 110px 0;
}

.method-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.method-intro > p:not(.kicker) {
  color: var(--muted-dark);
  font-size: 17px;
}

.document-box {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.document-box h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.document-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-box li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-dark);
}

.document-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.timeline {
  display: grid;
  gap: 0;
  align-content: start;
}

.timeline article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  background: var(--gold-soft);
  border-radius: 50%;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.timeline p,
.office-copy p,
.contact li,
.footer p {
  color: var(--muted-dark);
}

.office {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 58px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.office-copy p {
  font-size: 17px;
}

.office-photo {
  position: relative;
}

.office-photo::after {
  content: "";
  position: absolute;
  inset: 18px 18px -18px -18px;
  z-index: -1;
  border: 1px solid var(--gold);
}

.office-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.secondary-areas {
  width: min(100% - 44px, var(--max));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
  align-items: start;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 240, 229, 0.08), rgba(255, 255, 255, 0.025)),
    var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.secondary-areas h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.secondary-areas p {
  color: var(--muted-dark);
}

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

.secondary-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.36);
}

.secondary-grid span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.secondary-grid h3 {
  margin-top: 20px;
  font-size: 23px;
}

.secondary-grid p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 92px 0 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-panel ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact a:hover {
  color: var(--gold-soft);
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--text);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d8cbb7;
  border-radius: 6px;
  background: #fffdf8;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
}

.footer {
  padding: 42px 22px 82px;
  text-align: center;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer img {
  width: 260px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 18px;
}

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

.floating {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28), 0 10px 28px rgba(0, 0, 0, 0.32);
}

.floating:hover {
  background: #1ebe5d;
}

.floating svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 960px) {
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .brand {
    width: 238px;
  }

  .menu-button {
    display: block;
  }

  .menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 22px 24px;
    background: rgba(9, 9, 9, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hero {
    min-height: 82vh;
    padding-top: 124px;
  }

  .signal-strip,
  .problem,
  .rights-grid,
  .method-card,
  .office,
  .secondary-areas,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid #e5dac8;
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .copy-column {
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .secondary-grid {
    grid-template-columns: 1fr;
  }

  .secondary-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .header,
  .hero-inner,
  .signal-strip,
  .section,
  .secondary-areas,
  .contact {
    width: auto;
  }

  .header {
    padding-inline: 14px;
  }

  .brand {
    width: 220px;
  }

  .hero {
    min-height: 84vh;
    padding-bottom: 46px;
  }

  .hero > img {
    object-position: 52% top;
  }

  .hero-inner,
  .signal-strip,
  .section,
  .secondary-areas,
  .contact {
    margin-inline: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-inner > p:not(.kicker) {
    font-size: 16px;
  }

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

  .button {
    min-height: 52px;
  }

  .signal-strip {
    margin-top: -26px;
  }

  .signal-strip div,
  .rights-grid article,
  .method-card,
  .document-box,
  .secondary-areas,
  .lead-form {
    padding: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .rights {
    padding: 72px 14px;
  }

  .method {
    padding: 76px 0;
  }

  .office-photo::after {
    inset: 12px 12px -12px -12px;
  }

  .secondary-areas {
    margin-bottom: 70px;
  }

  .contact {
    padding: 72px 0 84px;
  }

  .floating {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
