/* ============================================
   Wolf Creek Graphics
   Palette pulled from the carved shop sign:
   deep maroon, mustard yellow, teal accent, cream
   ============================================ */

:root {
  --maroon: #7a1f1f;
  --maroon-dark: #5a1414;
  --maroon-deeper: #3d0c0c;
  --yellow: #f4c430;
  --yellow-bright: #ffd84d;
  --teal: #2a8a8a;
  --teal-dark: #1f6b6b;
  --cream: #f6efe1;
  --cream-warm: #ede2c8;
  --paper: #fbf7ee;
  --ink: #1a1410;
  --ink-soft: #3a322a;
  --muted: #6b5e51;
  --line: #d9cdb6;

  --display: 'Playfair Display', Georgia, serif;
  --sign: 'Oswald', 'Arial Narrow', sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 20, 16, 0.08);
  --shadow-md: 0 8px 28px rgba(26, 20, 16, 0.15);
  --shadow-lg: 0 20px 60px rgba(26, 20, 16, 0.25);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background-color: rgba(251, 247, 238, 0.95);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-family: var(--sign);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--maroon);
  color: var(--yellow);
  padding: 12px 22px;
  font-family: var(--sign);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid var(--maroon);
}
.nav-cta:hover {
  background: var(--maroon-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--maroon);
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 196, 48, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(42, 138, 138, 0.08), transparent 50%);
  z-index: 0;
}

/* subtle paper texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(122, 31, 31, 0.015) 2px, rgba(122, 31, 31, 0.015) 4px);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kicker {
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--maroon);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--yellow);
  z-index: -1;
  opacity: 0.7;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sign);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  border-radius: 3px;
  border: 2px solid var(--maroon);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--maroon);
  color: var(--yellow);
}
.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--maroon);
}
.btn-ghost:hover {
  background: var(--maroon);
  color: var(--yellow);
}
.btn-full { width: 100%; padding: 18px; font-size: 15px; }

.hero-badges {
  list-style: none;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-badges li {
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--muted);
  border-left: 3px solid var(--yellow);
  padding-left: 14px;
}
.hero-badges strong {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-image {
  position: relative;
  transform: rotate(1.5deg);
}
.hero-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--paper);
  outline: 1px solid var(--line);
}
.hero-image-caption {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  background: var(--maroon);
  color: var(--yellow);
  padding: 8px 18px;
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   SECTION COMMON
   ============================================ */
section { padding: 100px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-kicker {
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-kicker.light { color: var(--yellow); }

.section-head h2,
section h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--paper);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature:last-child { border-bottom: 1px solid var(--line); }

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--maroon);
  color: var(--yellow);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-body { flex: 1; min-width: 0; }
.feature h3 {
  font-family: var(--sign);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--paper);
  outline: 1px solid var(--line);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-warm);
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service:hover .service-image img {
  transform: scale(1.04);
}

.service-body {
  padding: 26px 28px 32px;
}
.service-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-body ul {
  list-style: none;
}
.service-body li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.service-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 2px;
  background: var(--yellow);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--paper);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--line);
  padding: 10px 20px;
  font-family: var(--sign);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--maroon);
  color: var(--maroon);
}
.filter-btn.is-active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--yellow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  background: var(--cream);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item.is-hidden {
  display: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(122, 31, 31, 0.4));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--maroon-deeper);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(244, 196, 48, 0.08), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(42, 138, 138, 0.06), transparent 40%);
}
.testimonials .section-head h2 { color: var(--cream); }
.testimonials .section-kicker { color: var(--yellow); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(251, 247, 238, 0.04);
  border: 1px solid rgba(244, 196, 48, 0.2);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
}
.stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 20px;
}
.testimonial cite {
  font-family: var(--sign);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--yellow);
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--maroon);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 196, 48, 0.08), transparent 50%);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-text h2 {
  color: var(--cream);
  margin-bottom: 20px;
}
.contact-text p {
  color: rgba(246, 239, 225, 0.85);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-details {
  list-style: none;
}
.contact-details li {
  border-top: 1px solid rgba(244, 196, 48, 0.2);
  padding: 18px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
}
.contact-details li:last-child {
  border-bottom: 1px solid rgba(244, 196, 48, 0.2);
}
.contact-details strong {
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--yellow);
  font-weight: 600;
  padding-top: 4px;
}
.contact-details a,
.contact-details span {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.5;
}
.contact-details a:hover { color: var(--yellow); }

.contact-map {
  margin-top: 28px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(244, 196, 48, 0.2);
  box-shadow: var(--shadow-md);
}
.contact-map iframe {
  display: block;
  filter: saturate(0.85);
}

.contact-form {
  background: var(--paper);
  color: var(--ink);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.hidden-field { display: none; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 3px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(122, 31, 31, 0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--body);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--maroon-deeper);
  color: var(--cream);
  padding: 70px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 88px;
  width: auto;
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(246, 239, 225, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--sign);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(246, 239, 225, 0.8);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-col address {
  font-style: normal;
  color: rgba(246, 239, 225, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-col .hours {
  color: rgba(246, 239, 225, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col p {
  color: rgba(246, 239, 225, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 196, 48, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(246, 239, 225, 0.55);
}
.footer-bottom .credit a {
  color: var(--yellow);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-image { max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-badges { gap: 18px; }
  .hero-badges strong { font-size: 1.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 460px) {
  .nav-logo img { height: 48px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .gallery-filter { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 11px; }
}

/* ============================================
   MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
