/* ============================================================
   INDIAN VALLEY OUTFITTERS — MAIN STYLESHEET
   Mobile-first responsive: 375 / 768 / 1024 / 1440
   ============================================================ */

/* === RESET ================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}

/* === TOKENS =============================================== */
:root {
  --gd: #1a2e1e; /* green dark */
  --gm: #2d4a1e; /* green mid */
  --gl: #4a6741; /* green light */
  --gold: #c8922a;
  --gold-l: #e8b84b;
  --cream: #f5f0e8;
  --offwhite: #fafaf7;
  --txt: #1a1a1a;
  --txt-m: #4a4a4a;
  --border: #d4c8b0;
  --max: 1400px;
  --ease: 0.22s ease;
}

/* === CONTAINER ============================================ */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
@media (min-width: 1440px) {
  .container {
    padding: 0 3rem;
  }
}

/* === BUTTONS ============================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition:
    background var(--ease),
    color var(--ease),
    transform 0.15s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold-l);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--gd);
}
.btn-dark {
  background: var(--gd);
  color: #fff;
}
.btn-dark:hover {
  background: var(--gm);
}
.btn-gold-ol {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-gold-ol:hover {
  background: var(--gold);
  color: #fff;
}

/* === TOP BAR ============================================== */
.top-bar {
  background: #0b1710;
  padding: 0.45rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.tb-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}
.tb-contact a,
.tb-contact span {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  color: #999;
}
.tb-contact a:hover {
  color: var(--gold);
}
.tb-contact .sep {
  color: #333;
}
.tb-social {
  display: flex;
  gap: 0.65rem;
}
.tb-social a {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  color: #777;
}
.tb-social a:hover {
  color: var(--gold);
}

/* === HEADER =============================================== */
.site-header {
  background: var(--gd);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 1rem;
  position: relative;
}
.logo img {
  height: 56px;
  width: auto;
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav — mobile hidden */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #162b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 999;
  max-height: calc(100dvh - 90px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.main-nav.open {
  display: block;
}
.main-nav > ul {
  padding: 0.5rem 0;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.main-nav > ul > li > a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.dd-arrow {
  font-size: 0.58rem;
  transition: transform 0.2s;
}
.dropdown.open .dd-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 2.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
}
.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

/* Reservations pill — mobile */
.nav-res > a {
  display: inline-block !important;
  margin: 0.7rem 1.5rem !important;
  padding: 0.55rem 1.4rem !important;
  background: var(--gold) !important;
  color: #fff !important;
  text-align: center;
  border-bottom: none !important;
}
.nav-res > a:hover {
  background: var(--gold-l) !important;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .main-nav {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    align-items: center;
    max-height: none;
    overflow: visible;
  }
  .main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  .main-nav > ul > li > a {
    padding: 0.55rem 0.8rem;
    font-size: 0.72rem;
    border-bottom: none;
    justify-content: center;
    position: relative;
  }
  .main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    right: 0.8rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
  }
  .main-nav > ul > li > a:hover::after {
    transform: scaleX(1);
  }
  .main-nav > ul > li > a:hover {
    background: none;
  }

  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 165px;
    background: var(--gd);
    border-top: 3px solid var(--gold);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
    display: none;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    padding: 0.65rem 1.1rem;
    font-size: 0.72rem;
  }

  .nav-res {
    margin-left: 0.5rem;
  }
  .nav-res > a {
    margin: 0 !important;
    padding: 0.5rem 1.25rem !important;
    display: inline-block !important;
  }
}

/* === HERO ================================================= */
.hero {
  position: relative;
  min-height: 480px;
  background: var(--gd)
    url('https://dygtyjqp7pi0m.cloudfront.net/i/61127/51065040_1m.jpg?v=8DC242AF56EBF30')
    center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 22, 12, 0.9) 0%,
    rgba(18, 42, 22, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
}
.hero-tag {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.72;
  color: #ddd;
  max-width: 640px;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero {
    min-height: 580px;
    padding: 5rem 0;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 680px;
  }
}
@media (min-width: 1440px) {
  .hero {
    min-height: 760px;
  }
}

/* === PAGE BANNER ========================================== */
.page-banner {
  position: relative;
  background: var(--gd)
    url('https://images.pexels.com/photos/2663483/pexels-photo-2663483.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover no-repeat;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 12, 0.82);
}
.page-banner .container {
  position: relative;
  z-index: 1;
}
.page-banner h1 {
  font-size: clamp(1.85rem, 5vw, 3.25rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}
.page-banner .banner-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--gold-l);
  font-style: italic;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}
.breadcrumb a {
  color: #777;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb .sep {
  color: #444;
}

/* === SECTIONS ============================================= */
.section {
  padding: 4.5rem 0;
}
.section-wh {
  background: #fff;
}
.section-lt {
  background: var(--offwhite);
}
.section-cr {
  background: var(--cream);
}
.section-dk {
  background: var(--gd);
  color: #fff;
}
.section-md {
  background: var(--gm);
  color: #fff;
}

.sec-tag {
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.sec-title {
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  color: var(--gd);
  margin-bottom: 0.65rem;
}
.section-dk .sec-title,
.section-md .sec-title {
  color: #fff;
}
.gold-rule {
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 0.7rem 0 1.5rem;
}
.center .gold-rule {
  margin: 0.7rem auto 1.5rem;
}
.sec-intro {
  font-size: clamp(0.93rem, 2vw, 1.04rem);
  line-height: 1.75;
  color: var(--txt-m);
  max-width: 740px;
  margin-bottom: 1.5rem;
}
.section-dk .sec-intro,
.section-md .sec-intro {
  color: #ccc;
}
.center {
  text-align: center;
}
.center .sec-intro {
  margin-left: auto;
  margin-right: auto;
}

/* === GAME CARDS =========================================== */
.game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}
.game-card-img {
  height: 210px;
  overflow: hidden;
  background: #e2dac8;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card-body {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.game-card-tag {
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.game-card-body h3 {
  font-size: 1.2rem;
  color: var(--gd);
  margin-bottom: 0.55rem;
}
.game-card-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--txt-m);
  flex: 1;
  margin-bottom: 1.2rem;
}

/* === STATS BAR ============================================ */
.stats-bar {
  background: var(--gm);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-item .num {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
}
.stat-item .lbl {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8baa8a;
  margin-top: 0.4rem;
}

/* === GUARANTEE ============================================ */
.guarantee-section {
  background: var(--cream);
  padding: 5rem 0;
}
.guarantee-inner {
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-inner blockquote {
  font-size: clamp(0.93rem, 2vw, 1.08rem);
  line-height: 1.85;
  color: var(--txt-m);
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding: 1.1rem 1.5rem;
  background: rgba(200, 146, 42, 0.07);
  margin: 1.5rem 0 2rem;
}

/* === OVERVIEW GRID ======================================== */
.ov-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .ov-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ov-grid.flip > :first-child {
  order: 2;
}
.ov-grid.flip > :last-child {
  order: 1;
}
@media (max-width: 767px) {
  .ov-grid.flip > :first-child,
  .ov-grid.flip > :last-child {
    order: unset;
  }
}
.ov-img img {
  width: 100%;
  border: 4px solid var(--border);
}
.ov-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gd);
  margin-bottom: 0.5rem;
}
.ov-text .gold-rule {
  margin: 0.5rem 0 1rem;
}
.ov-text p {
  font-size: 0.975rem;
  line-height: 1.77;
  color: var(--txt-m);
  margin-bottom: 1rem;
}

/* === PACKAGES ============================================= */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pkg-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 26px rgba(200, 146, 42, 0.2);
}
.pkg-badge {
  background: var(--gold);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.3rem;
}
.pkg-head {
  background: var(--gd);
  padding: 1.5rem;
  text-align: center;
  color: #fff;
}
.pkg-card.featured .pkg-head {
  background: var(--gm);
}
.pkg-tier {
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 0.45rem;
}
.pkg-price {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}
.pkg-dur {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: #bbb;
  margin-top: 0.4rem;
}
.pkg-body {
  padding: 1.5rem;
  flex: 1;
}
.pkg-includes {
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pkg-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pkg-body ul li {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--txt-m);
  padding-left: 1.5rem;
  position: relative;
}
.pkg-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}
.pkg-foot {
  padding: 1.2rem 1.5rem;
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  text-align: center;
}

/* === INFO BOXES =========================================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
}
.info-box h3 {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 0.7rem;
}
.info-box p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--txt-m);
  margin-bottom: 0.4rem;
}
.info-box ul {
  list-style: disc;
  padding-left: 1.2rem;
}
.info-box ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--txt-m);
  margin-bottom: 0.3rem;
}

/* === COMBO SECTION ======================================== */
.combo-section {
  background: var(--cream);
  padding: 4.5rem 0;
}
.combo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .combo-inner {
    grid-template-columns: 5fr 7fr;
  }
}
.combo-img img {
  width: 100%;
  border: 4px solid var(--border);
}
.combo-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gd);
  margin-bottom: 0.5rem;
}
.combo-text .gold-rule {
  margin: 0.5rem 0 1rem;
}
.combo-text p {
  font-size: 0.975rem;
  line-height: 1.77;
  color: var(--txt-m);
  margin-bottom: 1rem;
}

/* === CTA BANNER =========================================== */
.cta-banner {
  background: var(--gd);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/6111328/pexels-photo-6111328.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover;
  opacity: 0.07;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: clamp(0.93rem, 2vw, 1.05rem);
  color: #bbb;
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === LODGING FEATURES ===================================== */
.feat-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .feat-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feat-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feat-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.feat-text h4 {
  font-size: 0.95rem;
  color: var(--gd);
  margin-bottom: 0.15rem;
}
.feat-text p {
  font-size: 0.85rem;
  color: var(--txt-m);
  line-height: 1.5;
}

/* === CONTACT ============================================== */
.contact-section {
  padding: 5rem 0;
  background: var(--offwhite);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}
.contact-info h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gd);
  margin-bottom: 0.5rem;
}
.contact-info .gold-rule {
  margin: 0.5rem 0 1.25rem;
}
.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.77;
  color: var(--txt-m);
  margin-bottom: 2rem;
}
.cd {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.cd-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.cd-text {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--txt-m);
}
.cd-text strong {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 0.2rem;
}
.cd-text a {
  color: var(--txt-m);
}
.cd-text a:hover {
  color: var(--gold);
}

.cfwrap h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gd);
  margin-bottom: 0.5rem;
}
.cfwrap .gold-rule {
  margin: 0.5rem 0 1.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: Georgia, serif;
  font-size: 0.93rem;
  color: var(--txt);
  width: 100%;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gm);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
#formConfirm {
  display: none;
}
.form-confirm-msg {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  padding: 1.5rem;
  text-align: center;
}
.form-confirm-msg h3 {
  color: var(--gm);
  margin-bottom: 0.5rem;
}
.form-confirm-msg p {
  color: var(--txt-m);
  font-size: 0.95rem;
}

/* === FOOTER =============================================== */
.site-footer {
  background: var(--gd);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}
.footer-brand .footer-logo img {
  height: 65px;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #777;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.2rem;
}
.footer-social a {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  border: 1px solid #333;
  padding: 0.32rem 0.75rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: #777;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #777;
}
.footer-col address a {
  color: #777;
}
.footer-col address a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.footer-copy {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  color: #444;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  color: #444;
}
.footer-legal a:hover {
  color: var(--gold);
}

/* === UTILITIES ============================================ */
.text-gold {
  color: var(--gold);
}
.text-gold-l {
  color: var(--gold-l);
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

/* === PHOTO GALLERY ======================================== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  margin-top: 2rem;
}
@media (min-width: 600px) {
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  background: #111;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.35s ease,
    opacity 0.2s;
}
.gallery-item:hover img {
  transform: scale(1.07);
  opacity: 0.88;
}

/* === LIGHTBOX ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}

.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.9);
  display: block;
}

.lb-close {
  position: fixed;
  top: 0.85rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 9001;
  opacity: 0.75;
  transition: opacity 0.2s;
  padding: 0.25rem 0.5rem;
}
.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  padding: 0.9rem 0.75rem;
  cursor: pointer;
  z-index: 9001;
  transition: background 0.2s;
  line-height: 1;
}
.lb-prev {
  left: 0.5rem;
}
.lb-next {
  right: 0.5rem;
}
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lb-counter {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #888;
}

/* === PRICING TABLE (simple hunts) ========================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.93rem;
}
.price-table th {
  background: var(--gd);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
}
.price-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--txt-m);
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table tr:nth-child(even) td {
  background: var(--offwhite);
}
.price-table .price-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gd);
  white-space: nowrap;
}
.price-note {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--txt-m);
  margin-top: 1rem;
  line-height: 1.6;
}
.price-note strong {
  color: var(--gd);
}
