:root {
  color-scheme: light;
  --ink: #172018;
  --muted: #5f665b;
  --paper: #fbfaf5;
  --surface: #f2eee6;
  --line: #ddd6c6;
  --forest: #283d2b;
  --moss: #6c7d3f;
  --accent: #d96330;
  --accent-dark: #a8451e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 32, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(221, 214, 198, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.phone-link,
.phone-detail {
  text-decoration: none;
}

.nav-links a:hover,
.phone-link:hover,
.phone-detail:hover {
  color: var(--accent-dark);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.phone-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 20, 15, 0.86), rgba(14, 20, 15, 0.46) 48%, rgba(14, 20, 15, 0.12)),
    linear-gradient(0deg, rgba(14, 20, 15, 0.72), rgba(14, 20, 15, 0.08) 48%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 9vh 0 12vh;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f0b184;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

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

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-info div {
  min-height: 152px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  color: var(--forest);
  font-size: 1.18rem;
}

.quick-info span {
  max-width: 320px;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.adventure {
  display: block;
}

.section-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.ride-video {
  width: 100%;
  max-width: 920px;
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 32, 24, 0.1);
  object-fit: cover;
}

.visit {
  display: block;
}

.visit-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 24, 0.08);
  padding: clamp(28px, 5vw, 54px);
}

.visit-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.details-list {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
}

.details-list div {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.details-list dt {
  font-weight: 900;
}

.details-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.call-button {
  margin-top: 30px;
}

.site-footer {
  padding: 28px 18px 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

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

  .phone-link {
    position: absolute;
    top: 17px;
    right: 18px;
  }

  .brand {
    max-width: calc(100% - 158px);
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    min-height: calc(100vh - 120px);
  }

  .quick-info,
  .visit {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 132px;
  }

  .phone-link {
    max-width: 148px;
    padding: 8px 10px;
    font-size: 0.9rem;
    text-align: center;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: calc(100vh - 132px);
  }

  .hero-content {
    padding-bottom: 9vh;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.5rem);
  }

  .button {
    width: 100%;
  }
}
