:root {
  --black: #050202;
  --panel: #120706;
  --panel-2: #1b0908;
  --red: #d71916;
  --red-deep: #7c0d0b;
  --gold: #e7ad55;
  --gold-soft: #ffe0a3;
  --cream: #fff7e9;
  --paper: #fffaf0;
  --muted: #cbb99c;
  --ink: #1b0806;
  --line: rgba(231, 173, 85, 0.25);
  --radius: 8px;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  background:
    linear-gradient(145deg, rgba(124, 13, 11, 0.56), transparent 38%),
    linear-gradient(180deg, #080202 0%, var(--black) 100%);
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

.hero,
.owner-section {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  padding: 16px 0 30px;
}

.brand-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  margin-bottom: 14px;
}

.logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(231, 173, 85, 0.4), 0 0 18px rgba(215, 25, 22, 0.24);
}

.brand-bar span {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

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

.hero-copy {
  padding: 4px 0 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 12vw, 86px);
  line-height: 0.96;
  overflow-wrap: break-word;
}

.headline {
  max-width: 330px;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.subhead {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 42%, var(--red));
  color: #120302;
  box-shadow: 0 14px 34px rgba(215, 25, 22, 0.25);
}

.button-secondary {
  border: 1px solid rgba(231, 173, 85, 0.5);
  background: rgba(12, 4, 4, 0.78);
  color: var(--gold-soft);
}

.quote-card {
  overflow: hidden;
  border: 1px solid rgba(231, 173, 85, 0.3);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-heading {
  padding: 18px 18px 0;
}

.quote-heading p {
  margin-bottom: 5px;
  color: var(--red-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.lead-form {
  padding: 16px 18px 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7c7ad;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(215, 25, 22, 0.18);
}

.privacy {
  margin: 13px 0;
  color: #6b5138;
  font-size: 12px;
  line-height: 1.4;
}

.privacy a {
  color: var(--red-deep);
  font-weight: 900;
}

.form-button {
  width: 100%;
  min-height: 54px;
}

.form-status {
  min-height: 18px;
  margin: 9px 0 0;
  color: #6b5138;
  font-size: 13px;
}

.confirmation-panel {
  border-top: 1px solid #dfcfb8;
  padding: 18px;
  background: #fff;
}

.confirmation-panel h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.confirmation-panel p:last-child {
  margin: 0;
  color: #6b5138;
  line-height: 1.5;
}

.is-hidden {
  display: none;
}

.owner-section {
  padding: 0 0 44px;
}

.owner-card {
  overflow: hidden;
  border: 1px solid rgba(231, 173, 85, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}

.owner-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.owner-caption {
  border-top: 1px solid var(--line);
  padding: 16px;
}

.owner-caption p {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.owner-caption h2 {
  color: var(--cream);
  font-size: clamp(24px, 6vw, 40px);
}

.site-footer {
  padding: 20px 18px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.official-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(231, 173, 85, 0.38);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:not(.official-link) {
  color: var(--gold-soft);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 430px) {
  .hero,
  .owner-section {
    width: min(100% - 22px, 1120px);
  }

  h1 {
    font-size: 40px;
  }

  .headline {
    max-width: 280px;
    font-size: 18px;
    line-height: 1.18;
  }

  .subhead {
    font-size: 16px;
  }

  h2 {
    font-size: 24px;
  }
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    min-width: 180px;
  }
}

@media (min-width: 700px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quote-heading {
    padding: 22px 24px 0;
  }

  .lead-form {
    padding: 18px 24px 24px;
  }

  .owner-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .owner-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .owner-caption {
    display: grid;
    align-content: center;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 28px;
  }
}

@media (min-width: 920px) {
  .hero {
    padding-top: 18px;
  }

  .brand-bar {
    margin-bottom: 24px;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .brand-bar span {
    font-size: 21px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
    gap: 34px;
    align-items: start;
  }

  .hero-copy {
    position: sticky;
    top: 22px;
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(62px, 7vw, 88px);
  }

  .subhead {
    max-width: 560px;
    font-size: 21px;
  }

  .headline {
    max-width: 560px;
  }

  .owner-section {
    padding-top: 6px;
  }

  .site-footer {
    padding-bottom: 24px;
  }
}
