:root {
  --ink: #171b22;
  --muted: #5d6673;
  --line: #dce2ea;
  --surface: #ffffff;
  --background: #f5f7fa;
  --primary-dark: #134a60;
  --accent: #e11925;
  --gold: #d2a447;
  --shadow: 0 18px 45px rgba(18, 27, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}

nav a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"] {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 10vw, 118px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: #050608;
}

.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-image: url("../assets/clanton-skyline-hero.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.72;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.83) 42%, rgba(5, 6, 8, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.88) 0%, rgba(5, 6, 8, 0.04) 48%, rgba(5, 6, 8, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-logo {
  display: block;
  width: min(460px, 78vw);
  height: auto;
  margin: 0 0 30px;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 7vw, 5.1rem);
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

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

.intro {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.primary:hover {
  background: #bd141f;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.notice {
  padding: 16px clamp(18px, 5vw, 72px);
  background: #fff8e8;
  border-top: 1px solid #efd8a7;
  border-bottom: 1px solid #efd8a7;
}

.notice p {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #59401a;
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-inner > p,
.split-layout > div > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.band-light {
  background: #ffffff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.action-panel,
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.action-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.action-panel p,
.feature-card p {
  color: var(--muted);
}

.action-panel p {
  margin-bottom: 22px;
  font-size: 1.45rem;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.feature-card {
  padding: 22px;
}

.site-footer {
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .hero {
    min-height: 620px;
  }

  .hero-backdrop {
    background-position: center bottom;
    opacity: 0.54;
  }

  .hero-shade {
    background: rgba(5, 6, 8, 0.78);
  }

  .split-layout,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero {
    min-height: 650px;
    padding-top: 56px;
  }

  .hero-logo {
    width: min(340px, 90vw);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
.hero-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(1500px, 100%);
}

.hero-contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.hero-contact-card label {
  display: grid;
  gap: 6px;
  color: var(--primary-dark);
  font-weight: 800;
}

.hero-contact-card input,
.hero-contact-card select,
.hero-contact-card textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #cbd4df;
  border-radius: 6px;
  background: #ffffff;
}

.hero-contact-card textarea {
  resize: vertical;
}

.hero-contact-card button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1050px) {
  .hero-contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact-card {
    width: min(560px, 100%);
  }
}
.hero-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(1500px, 100%);
  margin: 0 auto;
}
.contact-success {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.contact-success h2 {
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.contact-success p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}