/* =========================================================
   K Bar Z Guest Ranch & Outfitters — v2 Stylesheet
   Faithful recreation of original rustic western aesthetic.
   Header: wood sign GIF banner. Nav: plank texture.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&family=Oswald:wght@400;600&display=swap');

:root {
  --color-primary:    #5c3d1e;
  --color-secondary:  #8b6635;
  --color-accent:     #c17f3b;
  --color-dark:       #1e1108;
  --color-light:      #f5f0e8;
  --color-green:      #4a6741;
  --color-text:       #2a1a0e;
  --color-text-light: #6b4c2a;
  --font-heading:     'Playfair Display', Georgia, serif;
  --font-nav:         'Oswald', 'Playfair Display', serif;
  --font-body:        'Lato', Arial, sans-serif;
  --nav-height:       56px;
  --site-max:         1080px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #2a1a0e;
  background-image: url('images/wood-background.jpg');
  background-repeat: repeat;
  background-size: contain;
  background-position: center center;
  background-attachment: fixed;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-secondary); text-decoration: none; }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
}

/* ---- Page Wrapper ---- */
.site-wrapper {
  max-width: var(--site-max);
  margin: 0 auto;
  background: transparent;
  box-shadow: 0 0 60px rgba(0,0,0,0.65);
  border-left: 1px solid rgba(0,0,0,0.3);
  border-right: 1px solid rgba(0,0,0,0.3);
}

/* =========================================================
   HEADER — Wood Sign Banner
   ========================================================= */
.site-header {
  width: 100%;
  background: transparent;
}

.header-logo-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 14px;
  background: transparent;
}

.header-logo-bar a {
  display: block;
  line-height: 0;
}

/* The wood sign GIF — hero of the header */
.header-logo-bar img.site-logo-gif {
  max-height: 250px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
  transition: filter 0.2s;
}
.header-logo-bar a:hover img.site-logo-gif {
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.85));
}

/* =========================================================
   NAVIGATION — Plank Texture
   ========================================================= */
.site-nav {
  width: 100%;
  background-image: url('images/nav-plank.jpg');
  background-size: cover;
  background-position: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 12px rgba(0,0,0,0.55);
  border-top: 2px solid rgba(193,127,59,0.5);
  border-bottom: 2px solid rgba(193,127,59,0.35);
}

.nav-inner {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--nav-height);
  flex-wrap: wrap;
  position: relative;
}

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-light);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* nav menu */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a,
.nav-menu > li > span.nav-label {
  display: block;
  padding: 16px 16px;
  color: #f0e8d8;
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9), 0 0 8px rgba(0,0,0,0.6);
  transition: color 0.2s;
  user-select: none;
}
.nav-menu > li > a:hover,
.nav-menu > li > span.nav-label:hover,
.nav-menu > li.active > a,
.nav-menu > li.active > span.nav-label {
  color: var(--color-accent);
}

/* vertical separators */
.nav-menu > li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.nav-menu .dropdown-arrow {
  font-size: 0.55em;
  margin-left: 4px;
  opacity: 0.65;
  vertical-align: middle;
}

/* dropdown submenu */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-image: url('images/nav-plank.jpg');
  background-size: cover;
  background-position: center;
  border-top: 2px solid var(--color-accent);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.55);
  list-style: none;
  min-width: 200px;
  z-index: 1001;
  overflow: hidden;
}
.sub-menu li a {
  display: block;
  padding: 11px 20px;
  color: #f0e8d8;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.35);
  transition: background 0.15s;
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover {
  background: rgba(0,0,0,0.08);
}

.nav-menu > li:hover > .sub-menu,
.nav-menu > li.open > .sub-menu { display: block; }

/* =========================================================
   PAGE BANNER
   ========================================================= */
.page-banner {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--color-primary);
}
.page-banner img,
.page-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,17,8,0.15) 0%, rgba(30,17,8,0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 36px;
}
.page-banner .banner-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 2px 3px 8px rgba(0,0,0,0.75);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.page-banner .banner-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin-top: 8px;
  border-radius: 2px;
}

/* Inner page title (replaces banner on non-hero pages) */
h1.page-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-dark);
  text-shadow: 1px 1px 3px rgba(255,255,255,0.6);
  margin: 0;
  padding: 40px 48px 12px;
  border-bottom: 3px solid var(--color-accent);
  display: block;
}

/* Home hero */
.page-banner.hero { height: 460px; }
.page-banner.hero .banner-overlay {
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(to bottom, rgba(30,17,8,0.05) 0%, rgba(30,17,8,0.65) 100%);
}
.page-banner.hero .banner-title { font-size: 3.4rem; letter-spacing: 0.03em; }
.page-banner.hero .banner-title::after { margin: 10px auto 0; width: 80px; }
.page-banner.hero .banner-subtitle {
  color: var(--color-light);
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 300;
  text-shadow: 1px 2px 5px rgba(0,0,0,0.75);
  max-width: 640px;
  line-height: 1.6;
}

/* =========================================================
   MAIN CONTENT
   ========================================================= */
.site-main { padding: 0; background: #f5f0e8; }

.content-section {
  padding: 56px 48px;
  background: #f5f0e8;
}
.content-section.alt-bg { background: #fdfaf4; }
.content-section.tinted { background: rgba(92,61,30,0.06); }

.content-section h1 { font-size: 2.4rem; margin-bottom: 22px; }
.content-section h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
}
.content-section h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--color-secondary); font-style: italic; }
.content-section p { margin-bottom: 16px; font-size: 1.02rem; }
.content-section ul, .content-section ol { margin: 0 0 16px 26px; }
.content-section li { margin-bottom: 6px; }

.section-divider {
  border: none;
  border-top: 1px solid rgba(92,61,30,0.2);
  margin: 0;
}

/* ---- Photo grid ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.photo-grid img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.photo-grid img:hover {
  transform: scale(1.025);
  box-shadow: 5px 5px 18px rgba(0,0,0,0.55);
}

/* ---- Hunt gallery ---- */
.hunt-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.hunt-card {
  margin: 0;
  background: rgba(255,255,255,0.92);
  border-radius: 6px;
  box-shadow: 3px 3px 12px rgba(0,0,0,0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hunt-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 8px 20px rgba(0,0,0,0.55);
}
.hunt-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}
.hunt-card figcaption {
  padding: 8px 12px 10px;
  font-size: 0.82rem;
  color: var(--color-dark);
  text-align: center;
  font-style: italic;
  line-height: 1.3;
}

/* ---- Two/three col ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.two-col img { width: 100%; border-radius: 5px; box-shadow: 3px 3px 10px rgba(0,0,0,0.3); cursor: pointer; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.three-col img { width: 100%; height: 175px; object-fit: cover; border-radius: 5px; box-shadow: 3px 3px 8px rgba(0,0,0,0.3); cursor: pointer; }

/* ---- Pills / callout / labels ---- */
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.amenities-list li {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.87rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.03em;
}

.callout-box {
  background: rgba(92,61,30,0.07);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.callout-box p { margin-bottom: 0; }

.rate-note { font-size: 0.85rem; color: var(--color-text-light); font-style: italic; margin-top: 8px; }
.label-strong { font-weight: 700; color: var(--color-primary); }

/* =========================================================
   RATES TABLES
   ========================================================= */
.rates-page-intro {
  padding: 40px 48px 28px;
  text-align: center;
  background: #f5f0e8;
}
.rates-page-intro h1 { color: var(--color-dark); margin-bottom: 12px; font-size: 2.6rem; }
.rates-page-intro p { max-width: 600px; margin: 0 auto; color: var(--color-text); font-size: 1.05rem; }

.rates-section {
  padding: 36px 48px;
  border-bottom: 1px solid rgba(92,61,30,0.12);
}
.rates-section:last-child { border-bottom: none; }
.rates-section.alt-bg { background: #fdfaf4; }

.rates-section h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}
.rates-table thead tr { background: var(--color-primary); color: var(--color-light); }
.rates-table thead th {
  padding: 11px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.rates-table tbody tr:nth-child(odd) { background: rgba(245,240,232,0.5); }
.rates-table tbody tr:nth-child(even) { background: #fff; }
.rates-table tbody td {
  padding: 10px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: top;
}
.rates-table td.price-col { font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.rates-table tbody tr:hover { background: rgba(193,127,59,0.09); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 44px;
  align-items: start;
}

.contact-info-block {
  background: var(--color-dark);
  background-image: url('images/wood-background.jpg');
  background-size: 200px auto;
  border-radius: 6px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.contact-info-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,0.72);
}
.contact-info-block > * { position: relative; }
.contact-info-block h3 { margin-bottom: 18px; font-size: 1.4rem; color: var(--color-accent); }
.contact-info-block p, .contact-info-block address {
  font-style: normal;
  margin-bottom: 10px;
  line-height: 1.9;
  color: rgba(245,240,232,0.88);
}
.contact-info-block a { font-weight: 700; color: var(--color-accent); }
.contact-info-block a:hover { color: var(--color-light); }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(92,61,30,0.35);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(193,127,59,0.2);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-light);
  padding: 13px 34px;
  border-radius: 4px;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(193,127,59,0.4);
}

.map-embed {
  width: 100%;
  margin-top: 36px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  border: 3px solid var(--color-primary);
}
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* =========================================================
   FRIENDS PAGE
   ========================================================= */
.friends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.friend-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(92,61,30,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.friend-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.22); }
.friend-card img { width: 100%; height: 130px; object-fit: cover; }
.friend-card .friend-name { padding: 12px; font-size: 0.87rem; font-weight: 700; color: var(--color-primary); line-height: 1.3; }

/* =========================================================
   HOME PAGE
   ========================================================= */
.home-intro {
  text-align: center;
  padding: 64px 72px 48px;
  background: #f5f0e8;
}
.home-intro h2 { font-size: 2.2rem; border: none; margin-bottom: 22px; padding-bottom: 0; }
.home-intro p { max-width: 720px; margin: 0 auto 16px; font-size: 1.06rem; }
.home-intro .photo-credit { font-size: 0.8rem; color: var(--color-text-light); margin-top: 10px; }

/* Dark wood ribbon with stats */
.home-ribbon {
  background: var(--color-dark);
  background-image: url('images/wood-background.jpg');
  background-size: 280px auto;
  position: relative;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.home-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,0.72);
}
.home-ribbon > * { position: relative; }
.ribbon-item { text-align: center; color: var(--color-light); }
.ribbon-item .ribbon-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
  display: block;
  line-height: 1.1;
}
.ribbon-item .ribbon-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  font-family: var(--font-nav);
}
.ribbon-divider { color: rgba(193,127,59,0.4); font-size: 1.8rem; }

.home-features {
  padding: 52px 48px;
  background: #fdfaf4;
}
.home-features h2 {
  text-align: center;
  border: none;
  padding-bottom: 0;
  font-size: 2rem;
  margin-bottom: 8px;
}
.features-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 36px;
  font-style: italic;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.13);
  border: 1px solid rgba(92,61,30,0.13);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.feature-card img { width: 100%; height: 190px; object-fit: cover; }
.feature-card .card-body { padding: 18px; flex: 1; }
.feature-card .card-body h3 { margin-bottom: 8px; font-size: 1.1rem; font-style: normal; color: var(--color-primary); }
.feature-card .card-body p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; line-height: 1.55; }
.feature-card .card-link {
  display: block;
  text-align: center;
  padding: 11px;
  background: var(--color-primary);
  color: var(--color-light);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.feature-card .card-link:hover { background: var(--color-accent); color: #fff; }

/* Green CTA band */
.home-location {
  background: var(--color-green);
  padding: 48px;
  text-align: center;
  position: relative;
}
.home-location::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
.home-location > * { position: relative; }
.home-location h2 { color: var(--color-light); border: none; padding: 0; font-size: 1.9rem; margin-bottom: 14px; }
.home-location p { color: rgba(245,240,232,0.88); max-width: 560px; margin: 0 auto 22px; }
.home-location .btn { background: var(--color-accent); color: #fff; }
.home-location .btn:hover { background: var(--color-light); color: var(--color-primary); }

/* Testimonials */
.home-testimonials {
  padding: 52px 48px;
  background: rgba(92,61,30,0.05);
  text-align: center;
}
.home-testimonials h2 { font-size: 1.9rem; border: none; margin-bottom: 32px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.testimonial-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-top: 3px solid var(--color-accent);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}
.testimonial-card p { font-size: 0.93rem; font-style: italic; line-height: 1.7; margin-bottom: 14px; }
.testimonial-card .testimonial-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-secondary);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================
   FOOTER — 3-column layout on wooden plank
   ========================================================= */
.site-footer {
  background-image: url('images/wooden-plank.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
}

.footer-inner {
  background: rgba(20,10,4,0.88);
  padding: 44px 48px 28px;
  color: var(--color-light);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}

.footer-col h4 {
  color: var(--color-accent);
  font-size: 1rem;
  font-family: var(--font-nav);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(193,127,59,0.3);
}

.footer-col p, .footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.8);
  margin-bottom: 6px;
}

.footer-col a { color: rgba(245,240,232,0.75); }
.footer-col a:hover { color: var(--color-accent); }

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(245,240,232,0.75); }
.footer-col ul li a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.7; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox-overlay.active { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
  object-fit: contain;
}
#lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.15s;
}
#lightbox-close:hover { opacity: 1; }
#lightbox-prev, #lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.4rem;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 4px;
  transition: background 0.15s;
  opacity: 0.85;
  line-height: 1;
}
#lightbox-prev { left: 14px; }
#lightbox-next { right: 14px; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(193,127,59,0.65); opacity: 1; }
#lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
  max-width: 600px;
  padding: 0 20px;
}

/* =========================================================
   SCROLL FADE-IN
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .home-intro { padding: 48px 36px; }
  .home-features { padding: 40px 36px; }
  .content-section { padding: 44px 36px; }
}

@media (max-width: 700px) {
  :root { --nav-height: 52px; }

  .nav-toggle { display: block; top: 8px; transform: none; }
  .nav-inner { justify-content: flex-start; padding-left: 16px; flex-wrap: nowrap; position: static; }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: rgba(20,10,4,0.98);
    padding: 6px 0 18px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li + li::before { display: none; }
  .nav-menu > li > a,
  .nav-menu > li > span.nav-label {
    padding: 13px 22px;
    width: 100%;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-menu > li:hover > .sub-menu { display: none; }
  .nav-menu > li.open > .sub-menu { display: block; }
  .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(193,127,59,0.25);
    background: rgba(0,0,0,0.35);
    background-image: none;
    border-radius: 0;
    min-width: unset;
    width: 100%;
  }
  .sub-menu li a { padding: 11px 42px; background: transparent; }

  .page-banner { height: 190px; }
  .page-banner.hero { height: 300px; }
  .page-banner.hero .banner-title { font-size: 2rem; }
  .page-banner .banner-title { font-size: 1.5rem; }

  .content-section { padding: 36px 22px; }
  .home-intro { padding: 36px 22px; }
  .home-features { padding: 32px 22px; }
  .home-ribbon { padding: 16px 22px; gap: 28px; }
  .rates-section { padding: 28px 22px; }
  .rates-page-intro { padding: 32px 22px 18px; }
  .footer-inner { padding: 32px 22px 22px; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .hunt-gallery { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 22px; }
  .home-ribbon .ribbon-divider { display: none; }

  .header-logo-bar img.site-logo-gif { max-height: 130px; }
  .header-logo-bar { padding: 14px 16px 10px; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .hunt-gallery { grid-template-columns: 1fr; }
  .friends-grid { grid-template-columns: 1fr 1fr; }
  #lightbox-prev, #lightbox-next { padding: 10px 14px; font-size: 1.8rem; }
}
