/* Bighorn Builders — Lodge Classic (Palette A) */

:root {
  --charcoal: #2e2e2a;
  --charcoal-2: #232320;
  --sage: #8f8f70;
  --sage-dark: #6b6b52;
  --gold: #a9875e;
  --gold-light: #c7a97e;
  --cream: #efe6d2;
  --cream-2: #f7f2e6;
  --stone: #6b6558;
  --white: #fffdf8;
  --rule: #ddd6c4;

  --font-display: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.eyebrow.on-dark { color: var(--gold-light); }

.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; margin-bottom: 16px; }
.section-lead { color: var(--stone); font-size: 16px; max-width: 560px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255,253,248,0.4); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,253,248,0.08); }
.btn-outline.dark { border-color: var(--sage-dark); color: var(--charcoal); }
.btn-outline.dark:hover { background: var(--charcoal); color: var(--white); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(46,46,42,0.08);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; max-width: 1180px; margin: 0 auto;
  position: relative;
}
.nav-brand-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.01em; }
.nav-brand-text span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 14px; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--charcoal); color: var(--white); padding: 10px 20px; font-weight: 700; font-size: 13.5px; border-radius: 3px; }
.nav-cta:hover { background: var(--sage-dark); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 100%; height: 2px; background: var(--charcoal); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============= HERO (rotating stage, PC&G-style interaction) ============= */
.hero-stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg { position: absolute; inset: 0; background: var(--charcoal); }
.hero-media { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.hero-media.is-active { opacity: 1; }
.hero-img-layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: brightness(0.5) saturate(0.9);
  transform: scale(1.01);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(46,46,42,.88) 0%, rgba(46,46,42,.65) 32%, rgba(46,46,42,.3) 62%, rgba(46,46,42,.12) 100%),
    linear-gradient(180deg, rgba(46,46,42,.2) 0%, rgba(46,46,42,.1) 45%, rgba(46,46,42,.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: 130px 32px 90px;
  transition: opacity .4s ease, transform .4s ease;
}
.hero-content.is-fading { opacity: 0; transform: translateY(6px); }
.hero-content h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.12;
  color: var(--white); max-width: 640px; margin-bottom: 20px;
}
.hero-meta { color: var(--gold-light); font-size: 15px; font-weight: 600; letter-spacing: 0.03em; margin-bottom: 16px; }
.hero-copy { color: rgba(255,253,248,0.82); font-size: 17px; max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-nav-wrap { background: var(--charcoal-2); padding: 0 32px 14px; }
.hero-top-line { position: relative; max-width: 1180px; margin: 0 auto; height: 1px; background: rgba(255,253,248,0.18); }
.hero-indicator { position: absolute; left: 0; top: -1px; height: 3px; width: 100px; background: var(--gold); border-radius: 999px; transition: left .4s ease, width .4s ease; }
.hero-nav { display: flex; align-items: center; gap: 6px; max-width: 1180px; margin: 0 auto; padding-top: 16px; flex-wrap: wrap; }
.hero-item { border: none; background: transparent; color: var(--white); cursor: pointer; padding: 8px 10px; opacity: 0.6; transition: opacity .25s ease, color .25s ease; }
.hero-item:hover, .hero-item.is-active { opacity: 1; }
.hero-item.is-active { color: var(--gold-light); }
.hero-item span { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.25; }
.hero-divider, .hero-equals { color: var(--gold-light); font-size: 22px; opacity: 0.7; padding: 0 2px; }

/* Why choose (image + badge + points) */
.why { background: var(--cream); padding: 96px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-image { position: relative; height: 460px; border-radius: 10px; overflow: hidden; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(46,46,42,0.92); border-radius: 6px; padding: 18px 20px; color: var(--white);
}
.why-badge strong { display: block; font-family: var(--font-display); font-size: 16px; margin-bottom: 4px; }
.why-badge span { font-size: 13px; color: rgba(255,253,248,0.68); }
.why-points { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
  background: var(--charcoal); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.why-point-text h3 { font-family: var(--font-display); font-size: 16.5px; margin-bottom: 5px; }
.why-point-text p { font-size: 14px; color: var(--stone); }

/* Problem / Solution */
.ps { background: var(--white); padding: 96px 0; }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.ps-card { border-radius: 10px; padding: 38px; }
.ps-card-problem { background: var(--charcoal); color: var(--white); }
.ps-card-solution { background: var(--cream); color: var(--charcoal); }
.ps-card-label {
  display: inline-block; margin-bottom: 20px; padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
}
.ps-card-problem .ps-card-label { background: rgba(255,253,248,0.1); color: var(--gold-light); border: 1px solid rgba(199,169,126,0.3); }
.ps-card-solution .ps-card-label { background: rgba(46,46,42,0.08); color: var(--charcoal); border: 1px solid rgba(46,46,42,0.16); }
.ps-card h3 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); line-height: 1.2; margin-bottom: 22px; }
.ps-items { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ps-items li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; }
.ps-card-problem .ps-items li { color: rgba(255,253,248,0.8); }
.ps-card-solution .ps-items li { color: var(--stone); }
.ps-dot { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 1px; }
.ps-card-problem .ps-dot { background: rgba(255,253,248,0.12); color: rgba(255,253,248,0.5); }
.ps-card-solution .ps-dot { background: var(--gold); color: var(--charcoal); }
.ps-cta { margin-top: 26px; }

/* Services image-panel switcher */
.pns { background: var(--charcoal); padding: 96px 0; }
.pns-layout { display: grid; grid-template-columns: 340px 1fr; gap: 48px; margin-top: 44px; align-items: start; }
.pns-list { display: flex; flex-direction: column; }
.pns-list-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 0; border: none; background: transparent; text-align: left; cursor: pointer;
  border-bottom: 1px solid rgba(255,253,248,0.1); transition: padding-left .2s ease;
}
.pns-list-item:last-child { border-bottom: none; }
.pns-list-item:hover { padding-left: 6px; }
.pns-list-name { display: block; font-family: var(--font-display); font-size: 18px; color: rgba(255,253,248,0.5); transition: color .2s ease; }
.pns-list-sub { display: block; font-size: 12.5px; color: rgba(255,253,248,0.32); margin-top: 3px; transition: color .2s ease; }
.pns-list-item.active .pns-list-name, .pns-list-item:hover .pns-list-name { color: var(--white); }
.pns-list-item.active .pns-list-sub, .pns-list-item:hover .pns-list-sub { color: rgba(255,253,248,0.6); }
.pns-list-arrow {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,253,248,0.08);
  color: rgba(255,253,248,0.3); display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: background .2s ease, color .2s ease;
}
.pns-list-item.active .pns-list-arrow { background: var(--gold); color: var(--charcoal); }
.pns-panel { position: relative; height: 460px; border-radius: 10px; overflow: hidden; background: var(--charcoal-2); }
.pns-panel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; }
.pns-panel-slide.active { opacity: 1; }
.pns-panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.pns-panel-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(35,35,32,0.9) 100%); }
.pns-panel-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; }
.pns-panel-content h3 { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 8px; }
.pns-panel-content p { font-size: 14.5px; color: rgba(255,253,248,0.72); max-width: 380px; }

/* Gallery — swipeable track */
.gallery { background: var(--cream); padding: 96px 0; }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 8px; flex-wrap: wrap; }
.gallery-controls { display: flex; gap: 10px; margin-bottom: 24px; }
.gallery-arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--rule); background: var(--white);
  color: var(--charcoal); font-size: 19px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.gallery-arrow:hover { background: var(--gold-light); border-color: var(--gold-light); }
.gallery-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px;
  scrollbar-width: thin; scrollbar-color: var(--gold) var(--rule);
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.gallery-track::-webkit-scrollbar-track { background: var(--rule); border-radius: 999px; }
.gallery-card { flex: 0 0 380px; height: 300px; border-radius: 8px; overflow: hidden; scroll-snap-align: start; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.gallery-note { margin-top: 18px; font-size: 13.5px; color: var(--stone); font-style: italic; }

/* Booking */
.booking-section { background: var(--charcoal-2); color: var(--white); padding: 96px 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: flex-start; }
.booking-grid h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); color: var(--white); margin: 10px 0 16px; }
.booking-grid p.section-lead { color: rgba(255,253,248,0.75); max-width: 420px; }
.booking-card { background: var(--cream-2); color: var(--charcoal); border-radius: 8px; padding: 28px; }
.bh-dates, .bh-times { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.bh-date-row { display: flex; gap: 8px; flex-wrap: wrap; width: 100%; }
.bh-date-nav { display: flex; gap: 10px; margin-top: 10px; width: 100%; }
.bh-nav-btn {
  padding: 6px 12px; border-radius: 4px; border: 1px solid var(--rule);
  background: transparent; font-size: 12.5px; font-weight: 600; color: var(--charcoal); cursor: pointer;
}
.bh-nav-btn:disabled { opacity: 0.35; cursor: default; }
.bh-nav-btn:not(:disabled):hover { background: var(--white); }
.bh-date-btn, .bh-time-btn {
  padding: 8px 14px; border-radius: 4px; border: 1px solid var(--rule);
  background: var(--white); font-size: 13px; font-weight: 600; cursor: pointer;
}
.bh-date-btn.active, .bh-time-btn.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.booking-card .bh-note { font-size: 14px; color: var(--stone); font-style: italic; }
.booking-card .bh-tz-note { font-size: 12px; color: var(--stone); margin: -8px 0 14px; }
.bh-field { margin-bottom: 14px; }
.bh-field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--stone); }
.bh-field input, .bh-field textarea {
  width: 100%; padding: 10px 12px; border-radius: 4px; border: 1px solid var(--rule);
  font-family: var(--font-body); font-size: 14.5px; background: var(--white);
}
.bh-field input:focus, .bh-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.bh-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#bh-booking-status { margin-top: 12px; font-size: 13.5px; color: var(--stone); min-height: 18px; }

/* CTA — image-backed */
.cta {
  position: relative; padding: 120px 0; text-align: center; overflow: hidden;
  background:
    linear-gradient(rgba(46,46,42,0.84), rgba(46,46,42,0.84)),
    url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1400/u_https://assets.cdn.filesafe.space/Z3TNywJ5u8Wy7NBKro5h/media/69d430ab17d86ef0ca2093fb.png") center/cover no-repeat;
}
.cta-inner { position: relative; z-index: 2; }
.cta h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); color: var(--white); max-width: 620px; margin: 0 auto 16px; line-height: 1.12; }
.cta p { max-width: 480px; margin: 0 auto 32px; font-size: 16px; color: rgba(255,253,248,0.7); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer — expanded, PC&G-style columns */
footer { background: var(--charcoal); color: rgba(255,253,248,0.72); padding: 72px 0 24px; }
.foot-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,253,248,0.1); }
.footer-brand-text { font-family: var(--font-display); color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.foot-tagline { font-size: 14.5px; line-height: 1.7; color: rgba(255,253,248,0.55); max-width: 280px; margin-bottom: 24px; }
.foot-contact-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; font-size: 13.5px; color: rgba(255,253,248,0.62); }
.foot-contact-item a { color: rgba(255,253,248,0.62); transition: color .2s ease; }
.foot-contact-item a:hover { color: var(--gold-light); }
.foot-contact-dot { flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 7px; }
footer h4 { color: var(--white); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
footer a { font-size: 14px; }
footer a:hover { color: var(--gold-light); }
.foot-hours-row { margin-bottom: 10px; }
.foot-hours-day { font-size: 12px; font-weight: 700; color: rgba(255,253,248,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.foot-hours-time { font-size: 14px; color: rgba(255,253,248,0.75); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,253,248,0.5); }

@media (max-width: 920px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--rule);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 32px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: flex; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-nav-wrap { padding: 0 12px 12px; }
  .hero-item span { font-size: 11px; }
  .hero-divider, .hero-equals { display: none; }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-image { height: 320px; }
  .ps-grid { grid-template-columns: 1fr; }
  .pns-layout { grid-template-columns: 1fr; }
  .pns-panel { height: 360px; }
  .booking-grid { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .bh-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .foot-main { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .gallery-card { flex-basis: 82vw; }
}

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