:root {
  --ink: #171b22;
  --muted: #5d6673;
  --line: #dce2ea;
  --surface: #ffffff;
  --background: #f5f7fa;
  --primary: #1c6e8c;
  --primary-dark: #134a60;
  --accent: #e11925;
  --gold: #d2a447;
  --deep: #0f1720;
  --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 { text-decoration: underline; }

.hero {
  position: relative;
  min-height: 700px;
  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,
.contact-row,
.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); }

.button.light {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--primary-dark);
}

.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,
.contact-row p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.band-light { background: #ffffff; }

.band-dark {
  background: var(--deep);
  color: #ffffff;
}

.band-dark p { color: rgba(255, 255, 255, 0.78); }

.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);
}

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

.feature-card { padding: 22px; }

.contact-row {
  justify-content: space-between;
  gap: 28px;
}

.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: 660px;
  }

  .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;
  }

  .contact-row,
  .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: 680px;
    padding-top: 56px;
  }

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

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

  .button {
    width: 100%;
  }
}
