:root {
  --ink: #17211c;
  --muted: #667269;
  --paper: #f7f3ea;
  --soft: #e8dfcf;
  --olive: #435b36;
  --olive-dark: #1d3326;
  --gold: #c9953f;
  --clay: #a9583a;
  --white: #fffaf0;
  --shadow: 0 24px 70px rgba(20, 28, 22, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(23, 33, 28, 0.62);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255, 250, 240, 0.95) 49% 52%, transparent 53%),
    linear-gradient(135deg, var(--gold), var(--clay));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 360px);
  align-items: end;
  gap: 36px;
  padding: 150px clamp(20px, 6vw, 72px) 56px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 20, 16, 0.9), rgba(11, 20, 16, 0.44) 46%, rgba(11, 20, 16, 0.2)),
    url("https://images.unsplash.com/photo-1620693654464-7d33c7eac5a3?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=2200") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(247, 243, 234, 1), rgba(247, 243, 234, 0));
  pointer-events: none;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.8vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #1f170d;
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(201, 149, 63, 0.28);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 250, 240, 0.12);
  border-color: rgba(255, 250, 240, 0.28);
}

.hero-panel {
  align-self: end;
  padding: 20px;
  background: rgba(255, 250, 240, 0.13);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin-bottom: 12px;
  color: rgba(255, 250, 240, 0.7);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

dl {
  margin: 0;
}

.hero-panel div {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

dd {
  margin: 4px 0 0;
  font-size: 1rem;
}

.section-pad {
  padding: 96px clamp(20px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}

.intro > p,
.location-copy p,
.inquiry-text p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
}

.stats {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(67, 91, 54, 0.18);
  box-shadow: 0 20px 60px rgba(35, 43, 34, 0.08);
}

.stats div {
  padding: 28px;
  background: var(--white);
}

.stats span,
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--olive-dark);
  background: #efe2c8;
  border-radius: 50%;
  font-weight: 900;
}

.stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.stats p,
.highlight-grid p,
.buyer-types p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

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

.highlight-grid article,
.buyer-types article,
.contact-form {
  border: 1px solid rgba(67, 91, 54, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 54px rgba(32, 42, 34, 0.06);
}

.highlight-grid article {
  padding: 24px;
}

.image-band {
  min-height: 480px;
  display: grid;
  align-items: end;
  padding: 64px clamp(20px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 28, 22, 0.1), rgba(18, 28, 22, 0.86)),
    url("https://images.unsplash.com/photo-1620693654464-7d33c7eac5a3?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=1800") center 46% / cover fixed;
}

.image-band div {
  width: min(840px, 100%);
}

.image-band h2 {
  margin-bottom: 0;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.68), rgba(232, 223, 207, 0.72));
}

.video-frame {
  position: relative;
  justify-self: center;
  width: min(100%, 390px);
  overflow: hidden;
  border: 1px solid rgba(67, 91, 54, 0.18);
  border-radius: 8px;
  background: #111812;
  box-shadow: 0 24px 70px rgba(20, 28, 22, 0.18);
}

.video-frame::before {
  content: "";
  display: block;
  aspect-ratio: 9 / 16;
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(32px, 6vw, 72px);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(67, 91, 54, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.6);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(169, 88, 58, 0.12);
}

.credibility-note {
  margin: 24px 0 0;
  padding: 18px 20px;
  color: var(--olive-dark);
  background: rgba(201, 149, 63, 0.12);
  border: 1px solid rgba(201, 149, 63, 0.28);
  border-radius: 8px;
  font-weight: 750;
}

.map-card {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(67, 91, 54, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(32, 42, 34, 0.08);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(67, 91, 54, 0.14);
}

.map-card-header strong {
  color: var(--olive-dark);
  font-size: 1rem;
}

.map-label {
  margin: 0;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.buyer-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 6vw, 72px) 96px;
}

.buyer-types article {
  padding: 28px;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(29, 51, 38, 0.96), rgba(29, 51, 38, 0.82)),
    radial-gradient(circle at top right, rgba(201, 149, 63, 0.4), transparent 34%);
  color: var(--white);
}

.inquiry h2 {
  color: var(--white);
}

.inquiry-text p {
  color: rgba(255, 250, 240, 0.74);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.1);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
}

label {
  display: grid;
  gap: 7px;
  color: #374338;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f3ea;
  border: 1px solid #dbd0bd;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 149, 63, 0.3);
  border-color: var(--gold);
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 72px);
  color: rgba(255, 250, 240, 0.78);
  background: #101812;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.site-footer a {
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 880px) {
  .site-header {
    top: 12px;
    border-radius: 24px;
  }

  .nav-links a {
    padding: 0 9px;
    font-size: 0.84rem;
  }

  .hero,
  .intro,
  .split-section,
  .video-section,
  .location,
  .inquiry {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 520px;
  }

  .stats,
  .buyer-types {
    grid-template-columns: 1fr;
  }

  .buyer-types {
    padding-bottom: 72px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 24px);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a {
    flex: 1;
  }

  .hero {
    padding: 150px 16px 44px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 3.75rem);
  }

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

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

  .section-pad {
    padding: 72px 18px;
  }

  .stats {
    width: calc(100% - 36px);
  }

  .image-band {
    min-height: 390px;
    background-attachment: scroll;
  }

  .map-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .map-card iframe {
    height: 300px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
