:root {
  --navy: #061522;
  --navy-soft: #0b2031;
  --ivory: #f7f1e7;
  --ivory-deep: #eee5d7;
  --gold: #c4a35e;
  --gold-soft: rgba(196, 163, 94, 0.52);
  --ink: #0a1826;
  --muted: #5f615f;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ivory);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(7, 21, 34, 0.98), rgba(8, 29, 44, 0.98)),
    var(--navy);
  isolation: isolate;
}

.site-shell::before,
.site-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.site-shell::before {
  background-image:
    linear-gradient(45deg, transparent 49.85%, rgba(196, 163, 94, 0.13) 50%, transparent 50.15%),
    linear-gradient(-45deg, transparent 49.85%, rgba(196, 163, 94, 0.09) 50%, transparent 50.15%);
  background-size: 290px 290px;
  background-position: -78px 72px, 67px -74px;
  mask-image: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.7) 48%, transparent 78%);
}

.site-shell::after {
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  margin: 0 clamp(24px, 3.35vw, 54px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 241, 231, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 160px;
  height: 104px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.header-meta,
.social-nav {
  display: flex;
  align-items: center;
}

.header-meta {
  margin-left: auto;
}

.social-nav {
  gap: 9px;
}

.social-nav a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(196, 163, 94, 0.58);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

.social-nav a:hover,
.social-nav a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.94fr);
  gap: clamp(44px, 6vw, 104px);
  align-items: center;
  width: 100%;
  max-width: 1510px;
  min-height: calc(100vh - 188px);
  margin: 0 auto;
  padding: clamp(42px, 6vh, 76px) clamp(24px, 3.35vw, 54px) 44px;
}

.hero {
  max-width: 680px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 30px;
  color: var(--gold);
  font-size: clamp(0.74rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 62px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero h1,
.form-intro h2 {
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(4.8rem, 7.2vw, 7.25rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 540px;
  margin: 38px 0 0;
  color: rgba(247, 241, 231, 0.86);
  font-size: clamp(1.22rem, 1.65vw, 1.62rem);
  line-height: 1.5;
}

.direct-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  color: rgba(247, 241, 231, 0.62);
  font-size: 0.92rem;
}

.direct-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  color: var(--navy);
  font-weight: 750;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: 180ms ease;
}

.direct-email span {
  font-size: 1.18rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.direct-email:hover,
.direct-email:focus-visible {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--navy);
  transform: translateY(-2px);
}

.direct-email:hover span,
.direct-email:focus-visible span {
  transform: translateX(3px);
}

.direct-email:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.form-card {
  position: relative;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  padding: clamp(30px, 3.25vw, 48px);
  border-top: 5px solid var(--gold);
  border-radius: 6px;
  background:
    linear-gradient(rgba(247, 241, 231, 0.97), rgba(247, 241, 231, 0.97)),
    var(--ivory);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.31);
  color: var(--ink);
}

.form-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.form-kicker {
  margin: 0;
  color: #7c673d;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.form-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.65rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--gold-soft);
  border-radius: 5px;
  outline: none;
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  font: inherit;
  transition: 160ms ease;
}

input {
  min-height: 50px;
  padding: 10px 14px;
}

textarea {
  min-height: 106px;
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.5;
}

input:hover,
textarea:hover {
  border-color: rgba(125, 101, 53, 0.8);
}

input:focus-visible,
textarea:focus-visible {
  border-color: #735d33;
  box-shadow: 0 0 0 3px rgba(196, 163, 94, 0.28);
}

button {
  width: 100%;
  min-height: 60px;
  margin-top: 24px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: var(--navy);
  color: var(--ivory);
  cursor: pointer;
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-size: 1.34rem;
  letter-spacing: 0.015em;
  transition: 180ms ease;
}

button:hover,
button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

button:disabled {
  border-color: #7f8790;
  background: #7f8790;
  color: var(--ivory);
  cursor: wait;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.confidentiality-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  color: #4e5356;
  font-size: 0.76rem;
  line-height: 1.5;
}

.confidentiality-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #9b7b3f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.confidentiality-note p,
.form-status {
  margin: 0;
}

.form-status {
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(95, 74, 37, 0.28);
  border-radius: 5px;
  background: rgba(196, 163, 94, 0.13);
  color: #5f4a25;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status.success {
  border-color: #3f825a;
  background: #eaf6ee;
  color: #174f31;
}

.form-status.error {
  border-color: #b94b57;
  background: #fff0f1;
  color: #7b1723;
}

.site-footer {
  display: flex;
  justify-content: center;
  margin: 0 clamp(24px, 3.35vw, 54px);
  padding: 22px 0 26px;
  border-top: 1px solid rgba(247, 241, 231, 0.16);
  color: rgba(247, 241, 231, 0.58);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer p {
  max-width: 1120px;
  margin: 0;
}

@media (max-width: 1080px) {
  .page-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.3vw, 5.7rem);
  }
}

@media (max-width: 900px) {
  .site-shell {
    overflow: visible;
  }

  .site-header {
    min-height: 105px;
  }

  .page-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
  }

  .hero {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(4.2rem, 11.5vw, 6.2rem);
  }

  .form-card {
    max-width: none;
    justify-self: stretch;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    min-height: 102px;
    padding: 12px 0 16px;
  }

  .brand {
    width: 116px;
    height: 78px;
  }

  .header-meta {
    align-items: center;
    padding-top: 5px;
  }

  .social-nav a {
    width: 32px;
    height: 32px;
  }

  .page-grid {
    gap: 48px;
    padding-top: 52px;
    padding-bottom: 34px;
  }

  .eyebrow {
    gap: 13px;
    margin-bottom: 22px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }

  .eyebrow::before {
    width: 34px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 4.8rem);
    line-height: 0.94;
  }

  .hero-copy {
    margin-top: 26px;
    font-size: 1.14rem;
  }

  .direct-contact {
    margin-top: 27px;
    font-size: 0.84rem;
  }

  .form-card {
    padding: 28px 20px 24px;
  }

  .form-intro {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 5px;
  }

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

  .full-width {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .site-header {
    align-items: center;
    gap: 8px;
  }

  .brand {
    width: 108px;
    height: 72px;
  }

  .header-meta {
    align-items: center;
    padding-top: 0;
  }

  .social-nav {
    align-self: center;
  }

  .direct-email {
    max-width: 100%;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
