/* Canine Crusaders — outdoors trail palette */

:root {
  --forest: #10301f;
  --forest-deep: #0a2116;
  --moss: #2f6b3f;
  --clay: #e2622a;
  --clay-dark: #b94a1a;
  --sun: #f2c14e;
  --bone: #f7f2e7;
  --paper: #fffdf8;
  --ink: #17211b;
  --ink-soft: #4d5b52;
  --line: #d9d0bd;
  --radius: 14px;
  --shadow-hard: 6px 6px 0 var(--forest);
  --sans: "Avenir Next", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--sans);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; }

a { color: inherit; }

.wrap { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }

.center { text-align: center; }

.eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.9rem;
}

.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; }

.skip {
  position: absolute;
  left: -9999px;
  background: var(--forest);
  color: var(--bone);
  padding: 0.7rem 1rem;
  z-index: 20;
}
.skip:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--clay);
  color: var(--paper);
  border: 2px solid var(--forest);
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-hard);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--clay-dark); transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--forest); }
.btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--forest); }

.btn-ghost {
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--forest); color: var(--bone); transform: none; box-shadow: none; }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.78rem; box-shadow: 3px 3px 0 var(--forest); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--forest);
  color: var(--bone);
  border-bottom: 3px solid var(--forest-deep);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; fill: currentColor; color: var(--sun); flex: none; }
.brand-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}
.brand-name span { color: var(--sun); }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.site-nav a:not(.btn):hover { color: var(--sun); }

/* Hero */
.hero {
  background: var(--bone);
  padding: clamp(2.5rem, 6vw, 5rem) 0 0;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.6rem 0 1.8rem; }

.hero-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--forest);
}
.hero-facts li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
  margin-right: 0.5rem;
}

.hero-art svg { display: block; width: 100%; height: auto; }
.a-sun { fill: var(--sun); }
.a-hill-3 { fill: #8fb58d; }
.a-hill-2 { fill: var(--moss); }
.a-hill-1 { fill: var(--forest); }
.a-trail { stroke: var(--bone); opacity: 0.85; }
.a-tree { fill: var(--forest-deep); }
.a-dog { fill: var(--ink); stroke: var(--ink); }
.a-eye { fill: var(--bone); stroke: none; }

/* Trail divider */
.trail-divider {
  height: 3px;
  background-image: linear-gradient(90deg, var(--line) 0 14px, transparent 14px 30px);
  background-size: 30px 3px;
  background-repeat: repeat-x;
}

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-dark {
  background: var(--forest);
  color: var(--bone);
  clip-path: polygon(0 0, 100% 2.2rem, 100% 100%, 0 calc(100% - 2.2rem));
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.section-dark .eyebrow { color: var(--sun); }

/* Steps */
.steps {
  list-style: none;
  counter-reset: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.steps li {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  position: relative;
}
.step-num {
  position: absolute;
  top: -0.9rem;
  right: 1rem;
  background: var(--clay);
  color: var(--paper);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.icon { width: 46px; height: 46px; stroke: var(--moss); fill: var(--moss); margin-bottom: 0.8rem; }
.steps p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }

/* Pricing note */
.note {
  max-width: 62ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  background: rgba(242, 193, 78, 0.14);
  border: 2px dashed var(--sun);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
}
.note strong { color: var(--sun); }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  border: 2px solid var(--forest-deep);
  padding: 1.5rem 1.3rem;
  position: relative;
}
.card-feature { background: var(--sun); }
.flag {
  position: absolute;
  top: -0.85rem;
  left: 1.2rem;
  background: var(--clay);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin: 0;
}
.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--forest);
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}
.price span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ticks { list-style: none; margin: 0; padding: 0; font-size: 0.93rem; }
.ticks li { position: relative; padding-left: 1.4rem; margin-bottom: 0.45rem; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 5px -5px 0 -1px var(--clay);
}

/* Demo testimonial */
.demo-quote {
  margin: 3rem auto 0;
  max-width: 46rem;
  text-align: center;
  border-top: 3px dashed rgba(247, 242, 231, 0.3);
  padding-top: 2rem;
}
.demo-quote blockquote { margin: 0; }
.demo-quote p { font-size: 1.25rem; font-weight: 700; }
.demo-quote figcaption {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
}

/* Booking */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}
.details { margin: 1.8rem 0 0.6rem; display: grid; gap: 0.9rem; }
.details div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.5rem;
  border-bottom: 2px dotted var(--line);
  padding-bottom: 0.7rem;
}
.details dt {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}
.details dd { margin: 0; font-weight: 700; }

.fineprint { font-size: 0.8rem; color: var(--ink-soft); }

.booking-form {
  background: var(--bone);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow-hard);
}
.field { margin-bottom: 1rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--forest);
}
input, select, textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
}
textarea { resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible,
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
  border-color: var(--forest);
}

/* Footer */
.site-footer {
  background: var(--forest-deep);
  color: var(--bone);
  padding: 2.5rem 0;
}
.footer-inner { display: grid; gap: 1rem; justify-items: center; text-align: center; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.footer-nav a { text-decoration: none; font-weight: 700; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--sun); }
.copyright { font-size: 0.8rem; opacity: 0.75; margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .book-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

@media (max-width: 620px) {
  .site-nav { gap: 0.8rem; }
  .site-nav a:not(.btn) { display: none; }
  .row { grid-template-columns: 1fr; }
  .section-dark { clip-path: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
