/* 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: 'Libre Caslon Text', 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); }
.hero-content .eyebrow.on-dark { color: var(--sage); }

.section { padding: 88px 0; }
.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-link { display: flex; align-items: center; }
.nav-logo { height: 34px; width: auto; display: block; }
.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-cta-mobile { display: none; }
.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 (single static hero — Bighorn is the contractor, not a multi-step funnel) ============= */
.hero-stage {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--charcoal);
  padding-bottom: 64px;
}
.hero-bg { position: absolute; inset: 0; background: var(--charcoal); }
.hero-img-layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: brightness(0.62) saturate(0.95);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(46,46,42,.8) 0%, rgba(46,46,42,.58) 32%, rgba(46,46,42,.34) 58%, rgba(46,46,42,.14) 80%, rgba(46,46,42,.05) 100%),
    linear-gradient(180deg, rgba(46,46,42,.12) 0%, rgba(46,46,42,.06) 45%, rgba(46,46,42,.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  padding: 110px 32px 130px;
}

/* Crest medallion pressed across the hero/story boundary */
.hero-seam { position: relative; background: var(--cream); height: 150px; }
.hero-seal {
  position: absolute; left: 50%; transform: translateX(-50%); top: -108px;
  width: 216px; height: 216px; border-radius: 50%; overflow: hidden;
  background: var(--cream-2); border: 3px solid var(--gold); border-left-color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3); z-index: 5;
}
.hero-seal img { width: 194px; height: auto; display: block; }
.hero-content h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.8vw, 60px); line-height: 1.08; letter-spacing: -0.01em;
  color: var(--white); max-width: 660px; margin-bottom: 20px;
}
.hero-copy { color: rgba(255,253,248,0.85); font-size: 17.5px; max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Family story — original to Bighorn, no PC&G equivalent */
.story { background: var(--cream); padding: 40px 0 100px; }
.story-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 64px; align-items: center; }
.story-lead { font-size: 17.5px; font-family: var(--font-display); font-weight: 700; line-height: 1.45; color: var(--charcoal); margin-bottom: 18px; max-width: 500px; }
.story-body { font-size: 15.5px; color: var(--stone); line-height: 1.65; max-width: 500px; margin-bottom: 14px; }
.story-body:last-of-type { margin-bottom: 32px; }
.story-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.story-stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.story-stat span { font-size: 12px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; }
.story-stat .stat-narrow { display: none; }
.story-image { height: 460px; border-radius: 10px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }

/* Services — always-visible hover tiles */
.tiles { background: var(--charcoal); padding: 100px 0; }
.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.tile { position: relative; height: 400px; border-radius: 8px; overflow: hidden; }
.tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); transition: transform .5s ease, filter .3s ease; }
.tile:hover .tile-img { transform: scale(1.06); filter: brightness(0.38); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(35,35,32,0.92) 100%); }
.tile-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; }
.tile-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--gold-light); }
.tile-content h3 { font-family: var(--font-display); font-size: 19px; color: var(--white); margin: 10px 0 8px; }
.tile-content p { font-size: 13.5px; color: rgba(255,253,248,0.68); line-height: 1.5; }

.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 440px; aspect-ratio: 1451 / 1084; 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; }

/* Reviews */
.reviews { background: var(--white); padding: 88px 0; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.review-card { background: var(--cream); border-radius: 10px; padding: 30px; margin: 0; display: flex; flex-direction: column; }
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 15.5px; line-height: 1.7; color: var(--charcoal); font-style: italic; flex: 1; }
.review-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--rule); }
.review-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.review-source { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); font-weight: 600; }

/* Booking */
.booking-section { background: var(--charcoal-2); color: var(--white); padding: 96px 0; }
.booking-grid { display: grid; grid-template-columns: 0.8fr 1.45fr; gap: 44px; 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; position: relative; overflow: hidden; }

/* Stepper */
.bh-stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 26px; }
.bh-step-dot {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1.5px solid var(--rule);
  font-size: 12px; font-weight: 700; color: var(--stone);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.bh-step-dot.active { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.bh-step-dot.done { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.bh-step-dot.done .bh-step-num { font-size: 0; }
.bh-step-dot.done .bh-step-num::before { content: "✓"; font-size: 12px; }
.bh-step-label { font-size: 11.5px; font-weight: 600; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.bh-step-line { flex: 1; height: 1.5px; background: var(--rule); min-width: 12px; }

.bh-form-error {
  background: rgba(163,45,45,0.08); border: 1px solid rgba(163,45,45,0.25); color: #a32d2d;
  font-size: 13.5px; padding: 10px 14px; border-radius: 4px; margin-bottom: 16px;
}

/* Panels */
.bh-panel { display: none; animation: bh-panel-in .3s ease; }
.bh-panel.active { display: block; }
@keyframes bh-panel-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.bh-panel-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
.bh-panel-nav .btn { min-width: 110px; justify-content: center; }

/* Success panel */
.bh-success { text-align: center; padding: 20px 8px 8px; opacity: 0; transform: scale(0.96); transition: opacity .3s ease, transform .3s ease; }
.bh-success-show { opacity: 1; transform: scale(1); }
.bh-success-mark {
  width: 160px; height: auto; margin: 0 auto 24px; display: block;
  animation: bh-mark-pop .62s cubic-bezier(.2, .9, .3, 1.2) both .1s;
}
@keyframes bh-mark-pop {
  0%   { opacity: 0; transform: scale(0.55) translateY(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.bh-success h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-bottom: 10px; }
.bh-success-detail { font-size: 15px; color: var(--charcoal); margin-bottom: 6px; }
.bh-success-sub { font-size: 13.5px; color: var(--stone); }
/* Calendar (step 1) */
.bh-cal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.bh-cal-kicker { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.bh-cal-month { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.bh-cal-nav { display: flex; gap: 8px; }
.bh-cal-arrow {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--rule);
  background: var(--white); color: var(--stone); font-size: 15px; cursor: pointer; line-height: 1;
  transition: border-color .2s ease, color .2s ease;
}
.bh-cal-arrow:not(:disabled):hover { border-color: var(--gold); color: var(--charcoal); }
.bh-cal-arrow:disabled { opacity: 0.3; cursor: default; }

.bh-cal-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: 28px; }
.bh-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 8px; }
.bh-cal-dow span { font-size: 11px; text-align: center; color: var(--stone); font-weight: 600; }
.bh-cal-dow .wknd { color: #c9c2b0; }
.bh-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.bh-cal-grid > .bh-note { grid-column: 1 / -1; }
.booking-card .bh-tz-note { font-size: 12px; color: var(--stone); margin: 16px 0 0; }

.bh-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 13px; color: #c9c2b0;
  background: none; border: 1px solid transparent; border-radius: 50%; padding: 0;
}
.bh-day.blank { visibility: hidden; }
.bh-day.open { color: var(--charcoal); border-color: var(--gold-light); cursor: pointer; transition: background .2s ease, color .2s ease; }
.bh-day.open:hover { background: var(--gold-light); }
.bh-day.selected { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); font-weight: 700; }

.bh-slots { border-left: 1px solid var(--rule); padding-left: 26px; }
.bh-slots-date { font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.bh-times { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-content: start; }
.bh-time-btn {
  padding: 10px 8px; border-radius: 4px; border: 1px solid var(--rule);
  background: var(--white); color: var(--charcoal); font-size: 13px; font-weight: 600; cursor: pointer; text-align: center;
  -webkit-appearance: none; appearance: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.bh-time-btn:hover { border-color: var(--gold); }
.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; }
.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, .bh-field select {
  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); color: var(--charcoal);
}
.bh-field input:focus, .bh-field textarea:focus, .bh-field select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.bh-checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.bh-checkbox-item { display: flex !important; align-items: center; gap: 8px; font-size: 14px; font-weight: 400 !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--charcoal) !important; cursor: pointer; }
.bh-checkbox-item input { width: auto !important; accent-color: var(--gold); cursor: pointer; }
.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://assets.cdn.filesafe.space/WJLDvFxUUcEbO22Jrui3/media/9dfc9e0e-cccd-4113-88fb-9b477b03ea6d.jpeg") 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.5fr 0.85fr 0.9fr 1.15fr 0.9fr; gap: 34px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,253,248,0.1); }
.footer-logo { height: 46px; width: auto; margin-bottom: 16px; }
.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; }
.lic { font-size: 12.5px; color: rgba(255,253,248,0.5); line-height: 1.4; }
.lic span { display: block; font-size: 11px; color: rgba(255,253,248,0.32); }
.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; }
  .nav-cta { display: none; }
  .nav-cta-mobile {
    display: block; margin-top: 10px; text-align: center;
    background: var(--charcoal); color: var(--white);
    padding: 12px 20px; font-weight: 700; font-size: 13.5px; border-radius: 3px;
  }

  .hero-content { padding: 80px 20px 96px; }
  .hero-seam { height: 100px; }
  .hero-seal { width: 150px; height: 150px; top: -75px; transform: translateX(-50%); border-radius: 50%; overflow: hidden; }
  .hero-seal img { width: 134px; }
  .hero-stage { min-height: 0; padding-bottom: 48px; }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-image { height: 320px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-image { height: 300px; order: -1; }
  .story-stats { gap: 12px; flex-wrap: nowrap; }
  .story-stat { flex: 1; min-width: 0; }
  .story-stat b { font-size: 22px; }
  .story-stat span { font-size: 10px; }
  .story-stat .stat-wide { display: none; }
  .story-stat .stat-narrow { display: inline; }
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .tile { height: 260px; }
  .ps-grid { grid-template-columns: 1fr; }
  .pns-layout { grid-template-columns: 1fr; }
  .pns-panel { height: 360px; }
  .booking-grid { grid-template-columns: 1fr; }
  .bh-cal-layout { grid-template-columns: 1fr; gap: 20px; }
  .bh-slots { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 18px; }
  .bh-times { grid-template-columns: repeat(3, 1fr); }
  .bh-time-btn { flex: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .foot-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .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; }
  .tiles-grid { grid-template-columns: 1fr; }
}

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