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

:root {
  --forest: #162b1f;
  --forest-mid: #234736;
  --forest-light: #2e5c45;
  --cedar: #7a4a2a;
  --cedar-light: #b07040;
  --gold: #c4892e;
  --gold-light: #daa84a;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --cream-darker: #d9cdb8;
  --sage: #8aad8a;
  --text-dark: #141f18;
  --text-mid: #3a5044;
  --text-light: #6b7c70;
  --white: #ffffff;
  --border: rgba(122,74,42,0.15);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--forest-mid);
  border-bottom: 1px solid rgba(196,137,46,0.25);
  padding: 0.6rem 2.5rem;
  position: relative;
  z-index: 501;
}
.announcement-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.8);
  font-weight: 300;
  text-align: center;
}
.announcement-bar-inner strong { font-weight: 600; color: var(--gold); }
.announcement-bar-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(196,137,46,0.4); transition: text-decoration-color 0.2s; }
.announcement-bar-inner a:hover { text-decoration-color: var(--gold); }
.ann-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: ann-pulse 2s infinite;
}
@keyframes ann-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.ann-close {
  background: none; border: none;
  color: rgba(245,240,232,0.35);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer; padding: 0;
  margin-left: 1rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ann-close:hover { color: var(--cream); }

/* BOOKING NOTICE */
.booking-notice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  background: rgba(196,137,46,0.08);
  border: 1px solid rgba(196,137,46,0.2);
  border-radius: 3px;
  padding: 0.7rem 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.booking-notice strong { color: var(--gold); font-weight: 500; }
.booking-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: ann-pulse 2s infinite;
}

/* PACKAGE SLOT LINE */
.pkg-slots {
  text-align: center;
  font-size: 0.7rem;
  color: var(--sage);
  margin-top: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* NAV */
nav {
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(22,43,31,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(196,137,46,0.15);
  transition: box-shadow 0.4s;
}
nav.scrolled {
  box-shadow: 0 1px 0 rgba(196,137,46,0.2);
}
.nav-logo { display: flex; align-items: center; margin-left: 6rem; }
.nav-logo img { height: 38px; width: auto; border-radius: 6px; background: white; padding: 3px 8px; }
.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(196,137,46,0.55);
  padding: 0.5rem 1.35rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}
.nav-cta:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.nav-phone {
  color: rgba(245,240,232,0.65) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.06em !important;
  text-decoration: none;
  border-bottom: none !important;
}
.nav-phone:hover { color: var(--gold) !important; }
.nav-phone::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(22,43,31,0.97);
  backdrop-filter: blur(20px);
  z-index: 499;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(196,137,46,0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child { border-bottom: none; color: var(--gold); font-weight: 500; }

/* HERO */
.hero {
  background: var(--forest);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 2.5rem 3.5rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(95deg, transparent, transparent 18px, rgba(180,130,60,0.03) 18px, rgba(180,130,60,0.03) 19px),
    repeating-linear-gradient(92deg, transparent, transparent 42px, rgba(150,100,40,0.02) 42px, rgba(150,100,40,0.02) 43px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 42%;
  background: linear-gradient(160deg, var(--forest-mid) 0%, #3d1f0a 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
}
.hero-circle {
  position: absolute;
  top: 50%; right: 12%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(196,137,46,0.18);
  z-index: 2;
  pointer-events: none;
}
.hero-circle::before {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(196,137,46,0.1);
}
.hero-circle::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,137,46,0.08) 0%, transparent 70%);
}
.hero-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  text-align: center;
  color: var(--gold);
  pointer-events: none;
  width: 210px; height: 210px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 4px solid var(--gold);
  border-radius: 50%;
  opacity: 0.82;
  mix-blend-mode: overlay;
  filter: url(#stamp-roughen);
}
.hero-stamp::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(196,137,46,0.55);
  border-radius: 50%;
  border-style: dashed;
}
.hero-stamp-top {
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase; margin-bottom: 0.15rem;
}
.hero-stamp-made {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-stamp-state {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.85rem; font-weight: 700;
  letter-spacing: 0.05em; line-height: 1.1;
  margin: 0.25rem 0 0.15rem;
  text-shadow: 0 0 12px rgba(196,137,46,0.4);
}
.hero-stamp-star { font-size: 1.1rem; margin-top: 0.1rem; }
.hero-content { max-width: 720px; position: relative; z-index: 3; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-badge { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.hero h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero > .hero-content > p {
  color: rgba(245,240,232,0.68);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 0.9rem 2.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,137,46,0.3); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.28);
  padding: 0.9rem 2.25rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245,240,232,0.05); }
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245,240,232,0.1);
}
.hero-stat { flex: 1; padding-right: 2rem; border-right: 1px solid rgba(245,240,232,0.1); margin-right: 2rem; }
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num { font-family: 'Cormorant Garant', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 0.35rem; }
.hero-stat-label { font-size: 0.7rem; color: rgba(245,240,232,0.48); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }

/* SECTIONS */
.section-wrap { padding: 4rem 2.5rem; max-width: 1140px; margin: 0 auto; }
.section-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--cedar); flex-shrink: 0; }
.section-h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
  margin-bottom: 0.85rem;
  font-weight: 600;
  line-height: 1.15;
}
.section-sub { color: var(--text-light); font-size: 0.93rem; line-height: 1.9; max-width: 520px; margin-bottom: 2.25rem; font-weight: 300; }
.divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--cream-darker) 30%, var(--cream-darker) 70%, transparent); }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cedar), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.benefit-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: 0 16px 48px rgba(22,43,31,0.1); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon { width: 48px; height: 48px; background: var(--cream); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 22px; border: 1px solid var(--cream-dark); }
.benefit-card h3 { font-family: 'Cormorant Garant', serif; font-size: 1.2rem; color: var(--forest); margin-bottom: 0.6rem; font-weight: 600; }
.benefit-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; font-weight: 300; }

/* PACKAGES */
.packages-section { background: var(--forest); padding: 4rem 2.5rem; position: relative; overflow: hidden; }
.packages-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(95deg, transparent, transparent 18px, rgba(180,130,60,0.025) 18px, rgba(180,130,60,0.025) 19px);
  pointer-events: none;
}
.packages-inner { max-width: 1140px; margin: 0 auto; position: relative; }
.packages-section .section-h2 { color: var(--cream); }
.packages-section .section-tag { color: var(--gold); }
.packages-section .section-tag::before { background: var(--gold); }
.packages-section .section-sub { color: rgba(245,240,232,0.58); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; align-items: start; }
.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2.25rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.pkg-card:hover { border-color: rgba(196,137,46,0.3); background: rgba(255,255,255,0.07); transform: translateY(-3px); }
.pkg-card.featured { background: rgba(196,137,46,0.1); border: 1px solid rgba(196,137,46,0.4); }
.pkg-card.featured:hover { border-color: var(--gold); }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--forest); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.22rem 1rem; border-radius: 20px; white-space: nowrap; }
.pkg-name { font-family: 'Cormorant Garant', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.2rem; font-weight: 600; }
.pkg-bins { font-size: 0.72rem; color: var(--gold); margin-bottom: 1.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.pkg-price { font-family: 'Cormorant Garant', serif; font-size: 3rem; color: var(--cream); font-weight: 700; margin-bottom: 0.2rem; line-height: 1; }
.pkg-savings { font-size: 0.78rem; color: var(--sage); margin-bottom: 1.75rem; font-weight: 400; }
.pkg-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.pkg-features { list-style: none; margin-bottom: 2rem; }
.pkg-features li {
  font-size: 0.86rem;
  color: rgba(245,240,232,0.72);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 300;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(196,137,46,0.5);
  background: rgba(196,137,46,0.1);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pkg-check::after {
  content: '';
  width: 6px; height: 4px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translateY(-1px);
}
.pkg-btn { width: 100%; padding: 0.9rem; background: var(--gold); color: var(--forest); border: none; border-radius: 2px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: all 0.25s; }
.pkg-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.pkg-btn.outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(245,240,232,0.85); }
.pkg-btn.outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,137,46,0.05); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 1rem; }
.gallery-item { border-radius: 2px; overflow: hidden; position: relative; background: var(--cream-dark); cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-placeholder {
  width: 100%; min-height: 200px;
  background: var(--cream-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-placeholder { background: var(--cream-darker); }
.gallery-frame {
  width: 52px; height: 52px;
  border: 1px solid rgba(122,74,42,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery-frame::before, .gallery-frame::after { content: ''; position: absolute; width: 10px; height: 10px; border-color: var(--cedar); border-style: solid; }
.gallery-frame::before { top: -3px; left: -3px; border-width: 1px 0 0 1px; }
.gallery-frame::after { bottom: -3px; right: -3px; border-width: 0 1px 1px 0; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,43,31,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex; align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-family: 'Cormorant Garant', serif; color: var(--cream); font-size: 1rem; font-weight: 600; }
.gallery-caption-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; font-family: 'Jost', sans-serif; }
.gallery-note { font-size: 0.78rem; color: var(--text-light); margin-top: 1.25rem; font-style: italic; font-weight: 300; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall img { min-height: 400px; }

/* Coming soon placeholders */
.gallery-item.gallery-soon { cursor: default; }
.gallery-soon-inner {
  width: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 2rem;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-darker) 100%);
  transition: background 0.3s;
}
.gallery-item.tall .gallery-soon-inner { min-height: 400px; }
.gallery-item.gallery-soon:hover .gallery-soon-inner {
  background: linear-gradient(135deg, var(--cream-darker) 0%, #ccc0a8 100%);
}
.gallery-soon-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(122,74,42,0.25);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cedar); opacity: 0.55;
}
.gallery-soon-label {
  font-family: 'Cormorant Garant', serif;
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-mid); letter-spacing: 0.02em;
}
.gallery-soon-sub {
  font-size: 0.68rem; font-weight: 400;
  color: var(--text-light); letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
}
.gallery-soon-sub::before {
  content: '';
  display: inline-block; width: 16px; height: 1px;
  background: var(--cedar-light); opacity: 0.5;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(14,22,16,0.92);
  z-index: 1000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.2s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  background: none; border: none; color: var(--cream);
  font-size: 2rem; cursor: pointer; line-height: 1;
  opacity: 0.7; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-content { max-width: 88vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 78vh; object-fit: contain; border-radius: 2px; box-shadow: 0 32px 80px rgba(0,0,0,0.6); }
.lightbox-caption { margin-top: 1rem; text-align: center; }
.lightbox-title { font-family: 'Cormorant Garant', serif; color: var(--cream); font-size: 1.1rem; font-weight: 600; }
.lightbox-loc { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

/* HOW IT WORKS */
.steps-bg { background: var(--cream-dark); padding: 4rem 2.5rem; }
.steps-inner { max-width: 1140px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; }
.steps-connector {
  position: absolute;
  top: 26px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--cedar-light), var(--gold), var(--cedar-light));
  opacity: 0.3;
}
.step { text-align: center; padding: 0 2rem; position: relative; }
.step-num {
  width: 52px; height: 52px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px var(--cream-dark);
  border: 1px solid rgba(196,137,46,0.2);
}
.step h3 { font-family: 'Cormorant Garant', serif; font-size: 1.2rem; color: var(--forest); margin-bottom: 0.6rem; font-weight: 600; }
.step p { font-size: 0.86rem; color: var(--text-light); line-height: 1.85; font-weight: 300; }

/* TESTIMONIALS */
.testimonials-section { background: var(--white); padding: 4rem 2.5rem; }
.testimonials-inner { max-width: 1140px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(22,43,31,0.08); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garant', serif;
  font-size: 6rem;
  color: var(--cedar);
  opacity: 0.1;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}
.stars { color: var(--gold); font-size: 0.82rem; margin-bottom: 1.1rem; letter-spacing: 3px; }
.testimonial-text { font-family: 'Cormorant Garant', serif; font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garant', serif; color: var(--gold); font-size: 0.95rem; font-weight: 600; flex-shrink: 0; border: 2px solid rgba(196,137,46,0.2); }
.author-name { font-weight: 500; font-size: 0.88rem; color: var(--forest); }
.author-loc { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }

/* FAQ */
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.35rem 0;
  font-size: 0.97rem; font-weight: 400;
  color: var(--forest);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Jost', sans-serif;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cedar); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--cream-darker);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--cedar);
  border-radius: 2px;
  transition: all 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-q.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-q.open .faq-icon { border-color: var(--cedar); background: rgba(122,74,42,0.08); }
.faq-q.open { color: var(--cedar); }
.faq-a { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; padding-bottom: 1.35rem; display: none; font-weight: 300; max-width: 620px; }
.faq-a.open { display: block; animation: fadeDown 0.22s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* CONTACT */
.contact-section { background: var(--forest); padding: 4rem 2.5rem; position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(95deg, transparent, transparent 18px, rgba(180,130,60,0.025) 18px, rgba(180,130,60,0.025) 19px);
  pointer-events: none;
}
.contact-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; position: relative; }
.contact-info .section-h2 { color: var(--cream); }
.contact-info .section-tag { color: var(--gold); }
.contact-info .section-tag::before { background: var(--gold); }
.contact-info > p { color: rgba(245,240,232,0.62); font-size: 0.93rem; line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: rgba(245,240,232,0.72); font-size: 0.88rem; font-weight: 300; }
.contact-icon { width: 36px; height: 36px; background: rgba(196,137,46,0.12); border: 1px solid rgba(196,137,46,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.55); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  font-weight: 300;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,240,232,0.28); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(196,137,46,0.6); background: rgba(255,255,255,0.09); }
.form-group select option { background: var(--forest); }
.form-group textarea { height: 110px; resize: vertical; }
.submit-btn { width: 100%; background: var(--gold); color: var(--forest); border: none; padding: 1rem; border-radius: 2px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-family: 'Jost', sans-serif; transition: all 0.25s; margin-top: 0.5rem; }
.submit-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,137,46,0.25); }
.form-success { background: rgba(138,173,138,0.1); border: 1px solid rgba(138,173,138,0.3); border-radius: 4px; padding: 1.1rem; color: var(--sage); font-size: 0.88rem; text-align: center; display: none; font-weight: 400; letter-spacing: 0.04em; }
.form-error { background: rgba(180,60,60,0.1); border: 1px solid rgba(180,60,60,0.3); border-radius: 4px; padding: 1.1rem; color: #e08080; font-size: 0.88rem; text-align: center; display: none; font-weight: 400; letter-spacing: 0.04em; margin-top: 0.75rem; }

/* MADE IN OKLAHOMA BANNER */
.okc-banner {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
  padding: 3.5rem 2.5rem;
  border-top: 1px solid rgba(196,137,46,0.15);
  border-bottom: 1px solid rgba(196,137,46,0.15);
}
.okc-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 5rem;
}
.okc-stamp {
  flex-shrink: 0;
  width: 190px; height: 190px;
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.okc-stamp-ring {
  position: absolute; inset: 7px;
  border: 1.5px dashed rgba(196,137,46,0.45);
  border-radius: 50%;
}
.okc-stamp-inner { text-align: center; color: var(--gold); }
.okc-stamp-top {
  font-size: 0.5rem; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.65; margin-bottom: 0.15rem;
}
.okc-stamp-made {
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; opacity: 0.8;
}
.okc-stamp-state {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.55rem; font-weight: 700;
  letter-spacing: 0.03em; line-height: 1.1;
  margin: 0.25rem 0;
}
.okc-stamp-star { font-size: 1.1rem; opacity: 0.75; }
.okc-banner-text { flex: 1; }
.okc-banner-text .section-h2 { font-size: 2.1rem; margin-bottom: 1rem; }
.okc-banner-text p {
  color: rgba(245,240,232,0.6); font-size: 0.92rem;
  line-height: 1.85; max-width: 560px; margin-bottom: 1.75rem; font-weight: 300;
}
.okc-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.okc-badge-item {
  font-size: 0.72rem; font-weight: 500; color: var(--gold);
  letter-spacing: 0.07em;
  border: 1px solid rgba(196,137,46,0.35);
  padding: 0.45rem 1rem; border-radius: 2rem;
  background: rgba(196,137,46,0.08);
}
.footer-okc-badge {
  display: inline-block; margin-top: 1rem;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}
.footer-socials {
  display: flex; gap: 0.6rem; margin-top: 1.1rem; justify-content: center;
}
.footer-social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social-link:hover { background: rgba(196,137,46,0.15); border-color: rgba(196,137,46,0.4); color: var(--gold); }
.review-source {
  font-size: 0.68rem; color: var(--sage); margin-top: 3px; font-weight: 400; letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .okc-banner-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
  .okc-banner-text p { margin-left: auto; margin-right: auto; }
  .okc-badges { justify-content: center; }
  .footer-okc-badge { display: block; text-align: center; }
}

/* FOOTER */
footer { background: var(--text-dark); padding: 4rem 2.5rem 0; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { margin-bottom: 0.5rem; display: flex; justify-content: center; }
.footer-logo img { height: 55px; width: auto; border-radius: 8px; background: white; padding: 4px 10px; }
.footer-tagline { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; text-align: center; }
.footer-desc { font-size: 0.82rem; color: rgba(245,240,232,0.38); line-height: 1.8; font-weight: 300; max-width: 260px; }
.footer-col-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-detail {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.83rem; color: rgba(245,240,232,0.55);
  margin-bottom: 0.85rem; font-weight: 300; line-height: 1.5;
}
.footer-detail svg { flex-shrink: 0; margin-top: 2px; stroke: var(--cedar-light); }
.footer-detail a { color: rgba(245,240,232,0.55); text-decoration: none; transition: color 0.2s; }
.footer-detail a:hover { color: var(--gold); }
.footer-links-col { display: flex; flex-direction: column; }
.footer-links-col a {
  font-size: 0.83rem; color: rgba(245,240,232,0.5); text-decoration: none;
  font-weight: 300; padding: 0.4rem 0; cursor: pointer;
  transition: color 0.2s; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-links-col a:last-child { border-bottom: none; }
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0;
  font-size: 0.75rem; color: rgba(245,240,232,0.28); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--cedar-light); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* TRUST BAR */
.trust-bar {
  background: var(--forest);
  border-top: 1px solid rgba(196,137,46,0.15);
  border-bottom: 1px solid rgba(196,137,46,0.15);
  padding: 0;
}
.trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  padding: 0 2.5rem;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1rem;
  gap: 0.3rem;
  text-align: center;
  transition: background 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.03); }
.trust-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
}
.trust-icon-wrap {
  font-size: 1.1rem;
  line-height: 1;
}
.trust-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.trust-sep {
  width: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.75rem 0;
  flex-shrink: 0;
}

/* TRANSFORMATION SECTION */
.transform-section {
  background: var(--cream);
  padding: 4rem 2.5rem;
}
.transform-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
}
.transform-side {
  padding: 1.75rem 2.5rem 1.75rem 0;
}
.transform-side.solution {
  padding: 1.75rem 0 1.75rem 2.5rem;
  border-left: 1px solid var(--cream-darker);
}
.transform-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar);
  background: rgba(122,74,42,0.07);
  border: 1px solid rgba(122,74,42,0.18);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.transform-tag.solution {
  color: var(--forest-light);
  background: rgba(46,92,69,0.07);
  border-color: rgba(46,92,69,0.2);
}
.transform-h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.transform-h2 em {
  font-style: italic;
  color: var(--cedar);
}
.transform-side.solution .transform-h2 em {
  color: var(--forest-light);
}
.transform-p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.1rem;
  max-width: 420px;
}
.transform-list {
  list-style: none;
  margin-bottom: 2rem;
}
.transform-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-weight: 400;
}
.transform-list li:last-child { border-bottom: none; }
.tl-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.transform-list.pain .tl-icon {
  background: rgba(180,60,60,0.08);
  border: 1px solid rgba(180,60,60,0.2);
  color: #c05050;
}
.transform-list.win .tl-icon {
  background: rgba(46,92,69,0.1);
  border: 1px solid rgba(46,92,69,0.25);
  color: var(--forest-light);
}
.pain-group-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar);
  margin: 1rem 0 0.4rem;
}
.pain-group-label svg { flex-shrink: 0; stroke: var(--cedar); }
.pain-group-label.win { color: var(--forest-light); }
.pain-group-label.win svg { stroke: var(--forest-light); }

.transform-list li div { line-height: 1.55; }
.transform-list li strong { font-weight: 500; color: var(--forest); }
.transform-list.win li strong { color: var(--forest); }

.transform-cta {
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all 0.25s;
}
.transform-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,137,46,0.28); }

/* Arrow column */
.transform-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.transform-arrow-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
.transform-arrow-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
.transform-arrow-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(196,137,46,0.35);
}

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 400;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta-inner {
  background: var(--forest);
  border: 1px solid rgba(196,137,46,0.35);
  border-radius: 50px;
  padding: 0.75rem 0.75rem 0.75rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 12px 40px rgba(14,22,16,0.45), 0 0 0 1px rgba(196,137,46,0.1);
  backdrop-filter: blur(12px);
}
.floating-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.floating-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.floating-cta-sub {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
}
.floating-cta-btn {
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.floating-cta-btn:hover { background: var(--gold-light); }
.floating-cta-close {
  background: none;
  border: none;
  color: rgba(245,240,232,0.4);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 0.25rem;
  transition: color 0.2s;
  flex-shrink: 0;
}
.floating-cta-close:hover { color: var(--cream); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-connector { display: none; }
  .step { padding: 1.5rem 0; border-bottom: 1px solid var(--cream-darker); }
  .step:last-child { border-bottom: none; }
}
@media (max-width: 860px) {
  .transform-inner { grid-template-columns: 1fr; gap: 0; }
  .transform-arrow-col { display: none; }
  .transform-side { padding: 2rem 0; border-left: none; border-top: 1px solid var(--cream-darker); }
  .transform-side:first-child { border-top: none; }
  .trust-bar-inner { flex-wrap: wrap; padding: 0 1.25rem; }
  .trust-item { min-width: 33.33%; }
  .trust-sep { display: none; }
}
@media (max-width: 540px) {
  .trust-item { min-width: 50%; }
  .floating-cta-inner { flex-direction: column; border-radius: 12px; text-align: center; gap: 0.85rem; padding: 1.25rem 1.5rem; }
  .floating-cta { bottom: 1rem; width: calc(100% - 2rem); }
  .floating-cta-btn { width: 100%; }
}
@media (max-width: 680px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .hero-circle { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .hero-stat { padding-right: 1.25rem; margin-right: 1.25rem; }
}
@media (max-width: 900px) and (min-width: 681px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
