/* ============================================================
 TWO BOOTS RANCH - style.css
 Static cPanel version - twobootsranch.com
 ============================================================ */

:root {
 --leather: #8b4513;
 --leather-dark: #5c2e0a;
 --gold: #c9922a;
 --gold-bright: #e8b84b;
 --gold-dim: rgba(201, 146, 42, 0.15);
 --gold-border: rgba(201, 146, 42, 0.35);
 --cream: #f5edd6;
 --parchment: #d4b483;
 --rust: #9b3a1a;
 --midnight: #1a0f05;
 --bark: #2c1a0a;
 --bark-mid: #3d2410;
 --bark-light: #4e3018;
 --dust: #9e8e78;
 --white: #fffdf8;
 --gold-glow: 0 0 30px rgba(201, 146, 42, 0.2);
 --gold-glow-strong: 0 0 60px rgba(201, 146, 42, 0.4);
 --transition: 0.25s ease;
}

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

html {
 scroll-behavior: smooth;
}

body {
 background-color: var(--midnight);
 color: var(--cream);
 font-family: 'Josefin Sans', Arial, sans-serif;
 font-size: 16px;
 line-height: 1.6;
 overflow-x: hidden;
}

body::before {
 content: '';
 position: fixed;
 inset: 0;
 background-image:
 repeating-linear-gradient(92deg, transparent, transparent 2px, rgba(201,146,42,0.015) 2px, rgba(201,146,42,0.015) 4px),
 repeating-linear-gradient(180deg, transparent, transparent 40px, rgba(0,0,0,0.08) 40px, rgba(0,0,0,0.08) 41px);
 pointer-events: none;
 z-index: 0;
}

a {
 color: inherit;
 text-decoration: none;
}

button,
input,
select,
textarea {
 font: inherit;
}

header {
 position: relative;
 min-height: 680px;
 background:
 linear-gradient(90deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.16) 50%, rgba(0,0,0,0.44) 100%),
 linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(26,15,5,0.52) 100%),
 url('assets/two-boots-hero-night.jpg?v=20260608-hero') center center / cover no-repeat;
 border-bottom: 3px solid var(--gold);
 z-index: 10;
 overflow: hidden;
}

header::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 radial-gradient(ellipse 45% 35% at 18% 45%, rgba(201,146,42,0.16) 0%, transparent 70%),
 linear-gradient(180deg, transparent 68%, rgba(26,15,5,0.72) 100%);
 pointer-events: none;
}

.header-top {
 display: flex;
 align-items: center;
 justify-content: space-between;
 max-width: 1200px;
 margin: 0 auto;
 padding: 10px 24px;
 border-bottom: 1px solid rgba(201,146,42,0.2);
 position: relative;
 z-index: 1;
}

.header-badge {
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 3px;
 color: var(--gold-bright);
 text-transform: uppercase;
 background: var(--gold-dim);
 border: 1px solid var(--gold-border);
 padding: 4px 14px;
 display: flex;
 align-items: center;
 gap: 8px;
}

.header-badge::before {
 content: '✦';
 font-size: 8px;
 animation: startwinkle 2s ease-in-out infinite;
}

@keyframes startwinkle {
 0%, 100% { opacity: 1; transform: scale(1); }
 50% { opacity: 0.3; transform: scale(0.7); }
}

.header-info {
 display: flex;
 gap: 24px;
 align-items: center;
}

.info-pill {
 font-size: 11px;
 color: var(--dust);
 letter-spacing: 1px;
 display: flex;
 align-items: center;
 gap: 6px;
}

.info-pill strong {
 color: var(--gold-bright);
}

.hero {
 max-width: 1200px;
 margin: 0 auto;
 min-height: 600px;
 padding: 96px 24px 72px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 position: relative;
 z-index: 1;
}

.hero-copy {
 max-width: 760px;
 display: flex;
 flex-direction: column;
 align-items: center;
}

.hero-logo-mark {
 width: clamp(86px, 12vw, 132px);
 height: clamp(86px, 12vw, 132px);
 object-fit: cover;
 border-radius: 50%;
 border: 2px solid rgba(232,184,75,0.72);
 box-shadow:
 0 12px 34px rgba(0,0,0,0.55),
 0 0 42px rgba(201,146,42,0.28);
 margin-bottom: 18px;
}

.logo-text {
 font-family: 'Rye', Georgia, serif;
 font-size: clamp(24px, 4vw, 42px);
 font-weight: 400;
 letter-spacing: 3px;
 color: var(--gold-bright);
 display: block;
 margin-bottom: 8px;
 text-shadow:
 2px 2px 0 var(--leather-dark),
 3px 3px 0 rgba(0,0,0,0.45),
 0 0 44px rgba(201,146,42,0.45);
 line-height: 1;
}

.logo-sub {
 font-size: 12px;
 font-weight: 300;
 letter-spacing: 4px;
 color: var(--parchment);
 text-transform: uppercase;
 margin-bottom: 22px;
 opacity: 0.88;
}

.hero-title {
 font-family: 'Rye', Georgia, serif;
 font-size: clamp(38px, 7vw, 82px);
 font-weight: 400;
 line-height: 0.98;
 color: var(--white);
 max-width: 900px;
 margin-bottom: 20px;
 text-shadow:
 2px 2px 0 rgba(0,0,0,0.72),
 0 0 48px rgba(0,0,0,0.55);
}

.hero-desc {
 color: var(--cream);
 font-size: clamp(17px, 2.2vw, 23px);
 line-height: 1.45;
 max-width: 700px;
 margin-bottom: 30px;
 text-shadow: 0 2px 18px rgba(0,0,0,0.82);
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 14px;
 justify-content: center;
}

.hero-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 48px;
 border: 2px solid var(--gold);
 padding: 13px 24px;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 transition: all var(--transition);
}

.hero-btn-primary {
 background: var(--gold);
 color: var(--midnight);
 box-shadow: 0 8px 34px rgba(0,0,0,0.38);
}

.hero-btn-secondary {
 background: rgba(0,0,0,0.24);
 color: var(--cream);
 border-color: rgba(245,237,214,0.55);
 backdrop-filter: blur(4px);
}

.hero-btn:hover {
 transform: translateY(-2px);
 box-shadow: var(--gold-glow-strong);
}

.hero-btn-primary:hover {
 background: var(--gold-bright);
}

.hero-btn-secondary:hover {
 border-color: var(--gold-bright);
 color: var(--gold-bright);
}

.marquee-strip {
 background: linear-gradient(90deg, var(--leather-dark), var(--leather), var(--leather-dark));
 border-top: 1px solid var(--gold-border);
 border-bottom: 1px solid var(--gold-border);
 padding: 10px 0;
 overflow: hidden;
}

.marquee-inner {
 display: flex;
 gap: 2rem;
 animation: marquee 30s linear infinite;
 white-space: nowrap;
 width: max-content;
}

.marquee-inner span {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--cream);
 flex-shrink: 0;
}

.marquee-inner .dot {
 color: var(--gold-bright);
 font-size: 8px;
}

@keyframes marquee {
 from { transform: translateX(0); }
 to { transform: translateX(-50%); }
}

nav {
 background: rgba(26,15,5,0.97);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-bottom: 2px solid var(--gold-border);
 position: sticky;
 top: 0;
 z-index: 100;
}

.nav-inner {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 24px;
 display: flex;
 overflow-x: auto;
 scrollbar-width: none;
 justify-content: center;
 gap: 0;
}

@media (max-width: 768px) {
 .nav-inner {
 justify-content: flex-start;
 padding: 0 12px;
 }
}

@media (min-width: 769px) {
 .nav-inner {
 justify-content: center;
 }
}

.nav-inner::-webkit-scrollbar {
 display: none;
}

.nav-link {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--dust);
 padding: 16px 22px;
 border-bottom: 2px solid transparent;
 transition: all var(--transition);
 white-space: nowrap;
 display: inline-block;
}

.nav-link:hover,
.nav-link.active {
 color: var(--gold-bright);
 border-bottom-color: var(--gold-bright);
 background: rgba(201,146,42,0.06);
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 48px 24px;
 position: relative;
 z-index: 1;
 display: grid;
 grid-template-columns: 1fr 300px;
 gap: 36px;
}

.main-col {
 min-width: 0;
}

.section-title {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 4px;
 text-transform: uppercase;
 color: var(--gold-bright);
 margin-bottom: 24px;
 display: flex;
 align-items: center;
 gap: 12px;
}

.section-title::before {
 content: '✦';
}

.section-title::after {
 content: '';
 flex: 1;
 height: 1px;
 background: linear-gradient(90deg, var(--gold-border), transparent);
}

.ranch-hero-banner {
 width: 100%;
 background: linear-gradient(135deg, var(--bark-light) 0%, var(--bark) 50%, var(--midnight) 100%);
 border: 1px solid var(--gold-border);
 overflow: hidden;
 margin-bottom: 36px;
 position: relative;
 min-height: 260px;
 display: flex;
 align-items: center;
 box-shadow: var(--gold-glow);
}

.ranch-hero-banner::before {
 content: '';
 position: absolute;
 inset: 0;
 background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(201,146,42,0.12) 0%, transparent 60%);
 pointer-events: none;
}

.banner-content {
 position: relative;
 z-index: 1;
 padding: 40px 48px;
}

.banner-eyebrow {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 4px;
 color: var(--gold);
 text-transform: uppercase;
 margin-bottom: 12px;
}

.banner-title {
 font-family: 'Rye', Georgia, serif;
 font-size: clamp(24px, 4vw, 44px);
 color: var(--cream);
 line-height: 1.15;
 margin-bottom: 14px;
 text-shadow: 2px 2px 0 var(--midnight);
}

.banner-title span {
 color: var(--gold-bright);
}

.banner-desc {
 font-size: 14px;
 font-weight: 300;
 color: var(--parchment);
 max-width: 480px;
 line-height: 1.8;
 margin-bottom: 24px;
}

.banner-btn,
.pricing-btn,
.form-submit,
.floating-book-btn {
 cursor: pointer;
}

.banner-btn {
 display: inline-block;
 background: var(--gold);
 color: var(--midnight);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
 padding: 12px 28px;
 transition: all var(--transition);
 border: 2px solid var(--gold);
 text-decoration: none;
}

.banner-btn:hover {
 background: transparent;
 color: var(--gold-bright);
 box-shadow: var(--gold-glow-strong);
}

.upcoming-event {
 background: linear-gradient(135deg, rgba(78,48,24,0.96), rgba(26,15,5,0.98));
 border: 1px solid var(--gold-border);
 border-top: 3px solid var(--gold);
 margin-bottom: 42px;
 overflow: hidden;
 box-shadow: var(--gold-glow);
}

.event-image-wrap {
 position: relative;
 background: var(--midnight);
 border-bottom: 1px solid var(--gold-border);
}

.event-image-wrap::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, transparent 58%, rgba(26,15,5,0.34) 100%);
 pointer-events: none;
}

.event-image {
 display: block;
 width: 100%;
 aspect-ratio: 16 / 9;
 object-fit: cover;
}

.event-content {
 padding: 30px 34px 34px;
}

.event-eyebrow,
.event-date,
.event-detail-title {
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
}

.event-eyebrow {
 color: var(--gold);
 margin-bottom: 10px;
}

.event-title {
 font-family: 'Rye', Georgia, serif;
 font-size: clamp(26px, 4vw, 42px);
 color: var(--cream);
 line-height: 1.12;
 margin-bottom: 10px;
 text-shadow: 2px 2px 0 var(--midnight);
 overflow-wrap: break-word;
}

.event-title span {
 display: block;
}

.event-date {
 color: var(--gold-bright);
 margin-bottom: 16px;
}

.event-desc {
 color: var(--parchment);
 font-size: 15px;
 font-weight: 300;
 line-height: 1.75;
 max-width: 680px;
 margin-bottom: 24px;
}

.event-details {
 display: grid;
 grid-template-columns: 0.9fr 1.1fr;
 gap: 18px;
 margin-bottom: 18px;
}

.event-detail-group {
 background: rgba(0,0,0,0.22);
 border: 1px solid rgba(201,146,42,0.18);
 padding: 18px;
}

.event-detail-title {
 color: var(--gold);
 margin-bottom: 12px;
 padding-bottom: 8px;
 border-bottom: 1px solid rgba(201,146,42,0.18);
}

.event-list {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 9px;
}

.event-list li {
 color: var(--parchment);
 font-size: 13px;
 font-weight: 300;
 line-height: 1.45;
 display: grid;
 grid-template-columns: 92px 1fr;
 gap: 10px;
}

.event-list span {
 color: var(--gold-bright);
 font-weight: 700;
 letter-spacing: 0.5px;
}

.event-note {
 color: var(--dust);
 font-size: 12px;
 font-weight: 300;
 line-height: 1.7;
 margin-bottom: 22px;
}

.event-actions {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 16px;
}

.event-link {
 color: var(--gold-bright);
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 border-bottom: 1px solid rgba(232,184,75,0.5);
 padding-bottom: 4px;
 transition: color var(--transition), border-color var(--transition);
}

.event-link:hover {
 color: var(--cream);
 border-color: var(--cream);
}

.about-section {
 margin-bottom: 42px;
}

.about-layout {
 display: grid;
 grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
 min-height: 420px;
 background: linear-gradient(135deg, rgba(61,36,16,0.98), rgba(26,15,5,0.98));
 border: 1px solid var(--gold-border);
 border-top: 3px solid var(--gold);
 box-shadow: var(--gold-glow);
 overflow: hidden;
}

.about-story {
 padding: 38px;
 position: relative;
}

.about-story::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 radial-gradient(ellipse 60% 70% at 12% 12%, rgba(201,146,42,0.16), transparent 62%),
 repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(201,146,42,0.025) 22px, rgba(201,146,42,0.025) 23px);
 pointer-events: none;
}

.about-kicker,
.about-photo-copy span {
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
}

.about-kicker,
.about-title,
.about-lead,
.about-body,
.about-highlights {
 position: relative;
 z-index: 1;
}

.about-kicker {
 margin-bottom: 12px;
}

.about-title {
 font-family: 'Rye', Georgia, serif;
 font-size: clamp(28px, 4vw, 44px);
 font-weight: 400;
 line-height: 1.14;
 color: var(--cream);
 max-width: 620px;
 margin-bottom: 18px;
 text-shadow: 2px 2px 0 var(--midnight);
}

.about-lead {
 color: var(--parchment);
 font-size: 16px;
 font-weight: 300;
 line-height: 1.75;
 margin-bottom: 16px;
 max-width: 640px;
}

.about-body {
 color: var(--dust);
 font-size: 13px;
 font-weight: 300;
 line-height: 1.8;
 margin-bottom: 24px;
 max-width: 640px;
}

.about-highlights {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
}

.about-highlights span {
 background: rgba(0,0,0,0.24);
 border: 1px solid var(--gold-border);
 color: var(--gold-bright);
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 padding: 8px 12px;
}

.about-photo-panel {
 min-height: 100%;
 background:
 linear-gradient(180deg, rgba(0,0,0,0.08), rgba(26,15,5,0.86)),
 url('assets/two-boots-hero-night.jpg?v=20260608-hero') center center / cover no-repeat;
 border-left: 1px solid var(--gold-border);
 display: flex;
 align-items: flex-end;
 padding: 28px;
}

.about-photo-copy {
 background: rgba(26,15,5,0.78);
 border: 1px solid rgba(201,146,42,0.34);
 padding: 18px;
 backdrop-filter: blur(4px);
 -webkit-backdrop-filter: blur(4px);
}

.about-photo-copy span {
 display: block;
 margin-bottom: 8px;
 color: var(--gold-bright);
}

.about-photo-copy strong {
 display: block;
 color: var(--cream);
 font-family: 'Playfair Display', Georgia, serif;
 font-size: 18px;
 font-weight: 700;
 line-height: 1.45;
}

.services-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 16px;
 margin-bottom: 36px;
}

.service-card,
.pricing-card,
.sidebar-card,
.gallery-item {
 background: var(--bark-mid);
 border: 1px solid var(--gold-border);
}

.service-card {
 border-top: 3px solid var(--gold);
 padding: 22px;
 position: relative;
 overflow: hidden;
 transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.gallery-item:hover,
.pricing-card:hover {
 transform: translateY(-4px);
 box-shadow: var(--gold-glow-strong);
 border-color: var(--gold-bright);
}

.service-icon {
 font-size: 32px;
 display: block;
 margin-bottom: 10px;
}

.service-name {
 font-family: 'Rye', Georgia, serif;
 font-size: 16px;
 color: var(--gold-bright);
 margin-bottom: 6px;
 letter-spacing: 1px;
}

.service-desc,
.about-desc,
.footer-desc {
 font-size: 12px;
 font-weight: 300;
 color: var(--dust);
 line-height: 1.7;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 12px;
 margin-bottom: 12px;
}

.gallery-item {
 aspect-ratio: 1;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 40px;
 position: relative;
 overflow: hidden;
 transition: transform 0.3s, box-shadow 0.3s;
 cursor: pointer;
}

.gallery-item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform 0.35s ease;
}

.gallery-item.has-photo {
 background: var(--midnight);
}

.gallery-item.has-photo::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(26,15,5,0.62) 100%);
 z-index: 1;
 pointer-events: none;
}

.gallery-item.has-photo:hover img {
 transform: scale(1.05);
}

.gallery-item::after {
 content: attr(data-label);
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 background: linear-gradient(transparent, rgba(26,15,5,0.9));
 color: var(--cream);
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 2px;
 text-transform: uppercase;
 padding: 20px 10px 8px;
 text-align: center;
 transform: translateY(100%);
 transition: transform 0.3s;
 z-index: 2;
}

.gallery-item:hover::after {
 transform: translateY(0);
}

.gallery-item.has-photo::after {
 transform: translateY(0);
}

.gallery-note {
 font-size: 11px;
 color: var(--dust);
 text-align: center;
 letter-spacing: 1px;
 margin-bottom: 36px;
}

.pricing-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 margin-bottom: 36px;
}

.pricing-card {
 padding: 28px 20px;
 text-align: center;
 position: relative;
 transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card.featured {
 border-color: var(--gold-bright);
 border-width: 2px;
 box-shadow: var(--gold-glow);
 transform: translateY(-6px);
}

.pricing-card.featured::before {
 content: '★ POPULAR ★';
 position: absolute;
 top: -12px;
 left: 50%;
 transform: translateX(-50%);
 background: var(--gold);
 color: var(--midnight);
 font-size: 9px;
 font-weight: 700;
 letter-spacing: 2px;
 padding: 3px 12px;
 white-space: nowrap;
}

.pricing-card.featured:hover {
 transform: translateY(-12px);
}

.pricing-name {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 16px;
}

.pricing-price {
 font-family: 'Rye', Georgia, serif;
 font-size: 36px;
 color: var(--cream);
 line-height: 1;
 margin-bottom: 4px;
 text-shadow: 0 0 30px rgba(201,146,42,0.3);
}

.pricing-unit {
 font-size: 11px;
 color: var(--dust);
 letter-spacing: 1px;
 margin-bottom: 20px;
}

.pricing-features {
 list-style: none;
 margin-bottom: 24px;
 text-align: left;
}

.pricing-features li {
 font-size: 12px;
 font-weight: 300;
 color: var(--parchment);
 padding: 6px 0;
 border-bottom: 1px solid rgba(201,146,42,0.1);
 display: flex;
 align-items: center;
 gap: 8px;
}

.pricing-features li::before {
 content: '✦';
 color: var(--gold);
 font-size: 8px;
 flex-shrink: 0;
}

.pricing-btn {
 display: block;
 background: transparent;
 border: 1px solid var(--gold-border);
 color: var(--gold-bright);
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 padding: 10px 20px;
 transition: all var(--transition);
 text-align: center;
 width: 100%;
}

.pricing-btn:hover,
.pricing-card.featured .pricing-btn {
 background: var(--gold);
 color: var(--midnight);
 border-color: var(--gold);
}

.sidebar-card {
 border-color: rgba(201,146,42,0.2);
 padding: 24px;
 margin-bottom: 20px;
 position: relative;
 overflow: hidden;
}

.sidebar-card.gold-border {
 border-color: var(--gold-border);
 border-top: 3px solid var(--gold);
 box-shadow: var(--gold-glow);
}

.about-card {
 text-align: center;
}

.sidebar-logo-mark {
 width: 108px;
 height: 108px;
 object-fit: cover;
 border-radius: 50%;
 border: 2px solid var(--gold-border);
 box-shadow: 0 8px 26px rgba(0,0,0,0.42);
 margin: 0 auto 14px;
 display: block;
}

.about-name {
 font-family: 'Rye', Georgia, serif;
 font-size: 22px;
 letter-spacing: 2px;
 color: var(--gold-bright);
 margin-bottom: 6px;
 text-shadow: 1px 1px 0 var(--midnight);
}

.tags-list {
 display: flex;
 flex-wrap: wrap;
 gap: 6px;
 justify-content: center;
}

.tag-pill {
 background: var(--gold-dim);
 border: 1px solid var(--gold-border);
 color: var(--gold-bright);
 padding: 3px 12px;
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 1px;
 text-transform: uppercase;
}

.stats-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 10px;
}

.stat-box {
 background: rgba(201,146,42,0.05);
 border: 1px solid rgba(201,146,42,0.15);
 padding: 14px;
 text-align: center;
}

.stat-val {
 font-family: 'Rye', Georgia, serif;
 font-size: 24px;
 color: var(--gold-bright);
 display: block;
 line-height: 1;
 margin-bottom: 4px;
 text-shadow: 0 0 20px rgba(201,146,42,0.4);
}

.stat-label {
 font-size: 9px;
 font-weight: 600;
 letter-spacing: 2px;
 color: var(--dust);
 text-transform: uppercase;
}

.sidebar-section-title {
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 14px;
 padding-bottom: 10px;
 border-bottom: 1px solid var(--gold-border);
}

.contact-list {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.contact-list li {
 font-size: 13px;
 color: var(--dust);
 font-weight: 300;
 letter-spacing: 0.5px;
}

.contact-list a {
 color: var(--gold-bright);
 transition: color var(--transition);
}

.contact-list a:hover {
 color: var(--cream);
}

.resource-links {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.resource-links a {
 display: inline-block;
 font-size: 13px;
 line-height: 1.5;
 color: var(--gold-bright);
 font-weight: 300;
 transition: color var(--transition);
}

.resource-links a:hover {
 color: var(--cream);
}

.social-links {
 display: flex;
 justify-content: center;
 gap: 10px;
 margin-top: 16px;
}

.footer-social {
 justify-content: flex-start;
}

.social-link {
 width: 32px;
 height: 32px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid rgba(201,146,42,0.35);
 border-radius: 50%;
 color: var(--gold-bright);
 background: rgba(201,146,42,0.08);
 transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-link:hover {
 color: var(--cream);
 border-color: var(--gold-bright);
 background: rgba(201,146,42,0.18);
 transform: translateY(-2px);
}

.social-link svg {
 width: 16px;
 height: 16px;
 fill: currentColor;
 stroke: currentColor;
 stroke-width: 0;
}

.social-link svg rect,
.social-link svg circle {
 fill: none;
 stroke-width: 2;
}

.quote-card {
 text-align: center;
}

.quote-text {
 font-family: 'Playfair Display', Georgia, serif;
 font-size: 15px;
 font-style: italic;
 color: var(--gold-bright);
 line-height: 1.5;
 margin-bottom: 8px;
}

.quote-attr {
 font-size: 11px;
 letter-spacing: 1px;
 color: var(--gold);
}

.floating-book-btn {
 position: fixed;
 bottom: 28px;
 right: 28px;
 z-index: 200;
 background: var(--gold);
 color: var(--midnight);
 border: none;
 font-family: 'Josefin Sans', Arial, sans-serif;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 padding: 14px 24px;
 box-shadow: 0 4px 24px rgba(201,146,42,0.5);
 transition: all var(--transition);
 display: flex;
 align-items: center;
 gap: 8px;
 animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
 0%, 100% { box-shadow: 0 4px 24px rgba(201,146,42,0.5); }
 50% { box-shadow: 0 4px 40px rgba(201,146,42,0.8); }
}

.floating-book-btn:hover {
 background: var(--gold-bright);
 transform: translateY(-3px);
 box-shadow: 0 8px 40px rgba(201,146,42,0.7);
}

.modal-overlay {
 display: none;
 position: fixed;
 inset: 0;
 background: rgba(10,5,0,0.85);
 backdrop-filter: blur(4px);
 -webkit-backdrop-filter: blur(4px);
 z-index: 1000;
 align-items: center;
 justify-content: center;
 padding: 20px;
}

.modal-overlay.open {
 display: flex;
}

.modal-box {
 background: var(--bark);
 border: 2px solid var(--gold);
 max-width: 520px;
 width: 100%;
 position: relative;
 box-shadow: 0 0 80px rgba(201,146,42,0.3), 0 0 200px rgba(201,146,42,0.1);
 max-height: 90vh;
 overflow-y: auto;
 animation: modalIn 0.3s ease;
}

@keyframes modalIn {
 from { transform: translateY(20px) scale(0.97); opacity: 0; }
 to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-box::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.modal-header {
 padding: 28px 28px 20px;
 text-align: center;
 border-bottom: 1px solid rgba(201,146,42,0.2);
}

.modal-icon {
 font-size: 36px;
 display: block;
 margin-bottom: 10px;
}

.modal-title {
 font-family: 'Rye', Georgia, serif;
 font-size: 26px;
 color: var(--gold-bright);
 letter-spacing: 2px;
}

.modal-subtitle {
 font-size: 12px;
 font-weight: 300;
 color: var(--dust);
 letter-spacing: 1px;
 margin-top: 4px;
}

.modal-close {
 position: absolute;
 top: 16px;
 right: 16px;
 background: none;
 border: 1px solid var(--gold-border);
 color: var(--gold-bright);
 font-size: 18px;
 cursor: pointer;
 width: 32px;
 height: 32px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.2s;
 font-family: monospace;
}

.modal-close:hover {
 background: var(--gold-dim);
 border-color: var(--gold-bright);
}

.modal-body {
 padding: 24px 28px 28px;
}

.form-group {
 margin-bottom: 18px;
}

.form-label {
 display: block;
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
 width: 100%;
 background: rgba(0,0,0,0.4);
 border: 1px solid var(--gold-border);
 color: var(--cream);
 font-family: 'Josefin Sans', Arial, sans-serif;
 font-size: 14px;
 font-weight: 300;
 padding: 11px 16px;
 outline: none;
 transition: border-color 0.2s, box-shadow 0.2s;
 appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
 border-color: var(--gold-bright);
 box-shadow: 0 0 0 3px rgba(201,146,42,0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
 color: var(--dust);
 opacity: 0.7;
}

.form-select option {
 background: var(--bark);
 color: var(--cream);
}

.form-textarea {
 min-height: 120px;
 resize: vertical;
}

.form-textarea.compact {
 min-height: 86px;
}

.form-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 14px;
}

.form-submit {
 width: 100%;
 background: var(--gold);
 color: var(--midnight);
 border: none;
 font-family: 'Josefin Sans', Arial, sans-serif;
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
 padding: 15px;
 transition: all var(--transition);
 margin-top: 6px;
}

.form-submit:hover {
 background: var(--gold-bright);
 box-shadow: var(--gold-glow-strong);
 transform: translateY(-1px);
}

.form-note {
 font-size: 11px;
 font-weight: 300;
 color: var(--dust);
 text-align: center;
 margin-top: 14px;
 line-height: 1.6;
}

.form-success {
 text-align: center;
 padding: 20px;
}

.form-success[hidden] {
 display: none;
}

.form-success-icon {
 font-size: 48px;
 display: block;
 margin-bottom: 12px;
}

.form-success-title {
 font-family: 'Rye', Georgia, serif;
 font-size: 22px;
 color: var(--gold-bright);
 margin-bottom: 8px;
}

.form-success-msg {
 font-size: 13px;
 font-weight: 300;
 color: var(--dust);
 line-height: 1.7;
}

.voucher-intro {
 background: linear-gradient(135deg, rgba(78,48,24,0.92), rgba(26,15,5,0.98));
 border: 1px solid var(--gold-border);
 border-top: 3px solid var(--gold);
 padding: 30px 28px;
 margin-bottom: 18px;
 box-shadow: var(--gold-glow);
}

.voucher-kicker {
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 10px;
}

.voucher-title {
 font-family: 'Rye', Georgia, serif;
 font-size: clamp(24px, 4vw, 38px);
 font-weight: 400;
 color: var(--cream);
 line-height: 1.12;
 margin-bottom: 12px;
 text-shadow: 2px 2px 0 var(--midnight);
}

.voucher-copy {
 max-width: 620px;
 font-size: 14px;
 font-weight: 300;
 color: var(--parchment);
 line-height: 1.8;
}

.voucher-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 margin-bottom: 14px;
}

.voucher-card {
 background: linear-gradient(180deg, rgba(78,48,24,0.95), rgba(26,15,5,0.98));
 border: 1px solid var(--gold-border);
 border-top: 3px solid var(--gold);
 box-shadow: var(--gold-glow);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 min-height: 100%;
}

.voucher-image-placeholder {
 min-height: 150px;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 background:
 linear-gradient(135deg, rgba(201,146,42,0.16), rgba(26,15,5,0.8)),
 repeating-linear-gradient(45deg, rgba(201,146,42,0.08), rgba(201,146,42,0.08) 1px, transparent 1px, transparent 12px);
 border-bottom: 1px solid var(--gold-border);
 color: var(--dust);
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
}

.voucher-image {
 display: block;
 width: 100%;
 aspect-ratio: 3 / 2;
 object-fit: cover;
 border-bottom: 1px solid var(--gold-border);
 background: rgba(26,15,5,0.8);
}

.voucher-card-body {
 padding: 22px 18px 20px;
 display: flex;
 flex-direction: column;
 flex: 1;
}

.voucher-eyebrow {
 font-size: 9px;
 font-weight: 700;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 10px;
}

.voucher-name {
 font-family: 'Rye', Georgia, serif;
 font-size: 22px;
 font-weight: 400;
 color: var(--gold-bright);
 line-height: 1.12;
 margin-bottom: 12px;
 text-shadow: 1px 1px 0 var(--midnight);
}

.voucher-price {
 display: inline-flex;
 align-items: center;
 align-self: flex-start;
 min-height: 30px;
 border: 1px solid var(--gold-border);
 background: rgba(201,146,42,0.1);
 color: var(--gold-bright);
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 padding: 6px 10px;
 margin-bottom: 14px;
}

.voucher-desc {
 font-size: 12px;
 font-weight: 300;
 color: var(--dust);
 line-height: 1.7;
 margin-bottom: 20px;
 flex: 1;
}

.voucher-share {
 display: flex;
 align-items: center;
 gap: 8px;
 margin-top: 14px;
 padding-top: 14px;
 border-top: 1px solid rgba(201,146,42,0.14);
}

.voucher-share span {
 color: var(--dust);
 font-size: 9px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 margin-right: auto;
}

.share-btn {
 width: 32px;
 height: 32px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid var(--gold-border);
 background: rgba(0,0,0,0.18);
 color: var(--gold-bright);
 font-size: 10px;
 font-weight: 800;
 letter-spacing: 0;
 transition: all var(--transition);
}

.share-btn:hover {
 background: var(--gold);
 color: var(--midnight);
 border-color: var(--gold);
 transform: translateY(-1px);
}

footer {
 background: var(--midnight);
 border-top: 3px solid var(--gold-border);
 padding: 52px 24px 24px;
 margin-top: 48px;
 position: relative;
 z-index: 1;
}

footer::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.footer-inner {
 max-width: 1200px;
 margin: 0 auto;
}

.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1fr;
 gap: 48px;
 margin-bottom: 40px;
}

.footer-logo {
 font-family: 'Rye', Georgia, serif;
 font-size: 26px;
 letter-spacing: 3px;
 color: var(--gold-bright);
 display: block;
 margin-bottom: 12px;
}

.footer-desc {
 max-width: 280px;
}

.footer-heading {
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 3px;
 color: var(--gold);
 text-transform: uppercase;
 margin-bottom: 18px;
}

.footer-links {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 10px;
}

.footer-links a {
 font-size: 13px;
 color: var(--dust);
 font-weight: 300;
 transition: color var(--transition);
 letter-spacing: 0.5px;
}

.footer-links a:hover {
 color: var(--gold-bright);
}

.footer-bottom {
 border-top: 1px solid rgba(201,146,42,0.12);
 padding-top: 24px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
 flex-wrap: wrap;
}

.footer-copy,
.footer-lumi {
 font-size: 11px;
 font-weight: 300;
 color: var(--dust);
 letter-spacing: 1px;
}

.footer-lumi {
 color: var(--gold);
}

/* ===== INTENT LANDING PAGES ===== */
.landing-header {
 min-height: 640px;
}

.landing-hero {
 min-height: 560px;
}

.landing-hero .hero-copy {
 max-width: 880px;
}

.landing-hero .hero-title {
 font-size: clamp(34px, 5.6vw, 66px);
 line-height: 1.05;
}

.landing-container {
 max-width: 1040px;
 margin: 0 auto;
 padding: 48px 24px;
 position: relative;
 z-index: 1;
}

.landing-panel {
 background: linear-gradient(135deg, rgba(61,36,16,0.98), rgba(26,15,5,0.98));
 border: 1px solid var(--gold-border);
 border-top: 3px solid var(--gold);
 box-shadow: var(--gold-glow);
 padding: 38px;
 margin-bottom: 42px;
 overflow: hidden;
 position: relative;
}

.landing-panel::before,
.landing-booking-band::before {
 content: '';
 position: absolute;
 inset: 0;
 background:
 radial-gradient(ellipse 60% 70% at 12% 12%, rgba(201,146,42,0.12), transparent 62%),
 repeating-linear-gradient(90deg, transparent, transparent 22px, rgba(201,146,42,0.02) 22px, rgba(201,146,42,0.02) 23px);
 pointer-events: none;
}

.landing-panel > *,
.landing-booking-band > * {
 position: relative;
 z-index: 1;
}

.landing-grid {
 margin-top: 26px;
 margin-bottom: 0;
}

.landing-list {
 list-style: none;
 display: grid;
 gap: 10px;
 margin-top: 20px;
}

.landing-list li {
 color: var(--parchment);
 font-size: 14px;
 font-weight: 300;
 line-height: 1.55;
 display: flex;
 gap: 10px;
}

.landing-list li::before {
 content: '✦';
 color: var(--gold-bright);
 font-size: 9px;
 line-height: 2.1;
 flex-shrink: 0;
}

.landing-photo-panel {
 background:
 linear-gradient(180deg, rgba(0,0,0,0.08), rgba(26,15,5,0.86)),
 url('assets/gallery/party-setup.jpg?v=20260608-gallery-party-setup') center center / cover no-repeat;
}

.landing-schedule {
 margin-bottom: 42px;
}

.landing-pricing {
 grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
 margin-bottom: 42px;
}

.landing-faq {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 margin-top: 26px;
}

.landing-booking-band {
 background: linear-gradient(135deg, rgba(78,48,24,0.98), rgba(26,15,5,0.98));
 border: 1px solid var(--gold-border);
 border-top: 3px solid var(--gold);
 box-shadow: var(--gold-glow);
 padding: 34px 38px;
 display: grid;
 grid-template-columns: minmax(0, 1fr) auto;
 align-items: center;
 gap: 28px;
 position: relative;
 overflow: hidden;
}

@media (max-width: 1024px) {
 .container {
 grid-template-columns: 1fr 280px;
 gap: 24px;
 }
}

@media (max-width: 900px) {
 header {
 min-height: 600px;
 background:
 linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 58%, rgba(26,15,5,0.76) 100%),
 url('assets/two-boots-hero-night.jpg?v=20260608-hero') center center / cover no-repeat;
 }

 .container {
 grid-template-columns: 1fr;
 padding: 20px 16px;
 }

 .footer-grid {
 grid-template-columns: 1fr;
 gap: 28px;
 }

 .header-info {
 display: none;
 }

 .hero {
 min-height: 520px;
 padding: 72px 16px 44px;
 align-items: center;
 text-align: center;
 }

 .hero-title {
 font-size: clamp(36px, 12vw, 54px);
 }

 .hero-desc {
 font-size: 17px;
 }

 .hero-actions {
 flex-direction: column;
 align-items: stretch;
 }

 .hero-copy {
 align-items: center;
 }

 .hero-btn {
 width: 100%;
 }

 .services-grid {
 grid-template-columns: 1fr 1fr;
 }

 .pricing-grid {
 grid-template-columns: 1fr;
 }

 .voucher-grid {
 grid-template-columns: 1fr;
 }

 .pricing-card.featured {
 transform: none;
 }

 .gallery-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .nav-link {
 font-size: 10px;
 padding: 13px 14px;
 letter-spacing: 1px;
 }

 .banner-content {
 padding: 24px;
 }

 .event-content {
 padding: 24px;
 }

 .event-details {
 grid-template-columns: 1fr;
 }

 .about-layout {
 grid-template-columns: 1fr;
 }

 .about-story {
 padding: 28px 24px;
 }

 .about-photo-panel {
 min-height: 300px;
 border-left: 0;
 border-top: 1px solid var(--gold-border);
 }

 footer {
 padding: 32px 16px 16px;
 }

 .floating-book-btn {
 bottom: 16px;
 right: 16px;
 padding: 12px 18px;
 }

 .landing-container {
 padding: 32px 16px;
 }

 .landing-panel {
 padding: 28px 24px;
 }

 .landing-pricing,
 .landing-faq,
 .landing-booking-band {
 grid-template-columns: 1fr;
 }

 .landing-booking-band .banner-btn {
 width: 100%;
 text-align: center;
 }

}

@media (max-width: 600px) {
 .services-grid,
 .form-row {
 grid-template-columns: 1fr;
 }

 .gallery-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .footer-bottom {
 flex-direction: column;
 align-items: flex-start;
 }

 .logo-text {
 letter-spacing: 2px;
 }

 .hero-logo-mark {
 width: 88px;
 height: 88px;
 margin-bottom: 14px;
 }

 .stats-grid {
 grid-template-columns: repeat(4, 1fr);
 }

 .stat-val {
 font-size: 16px;
 }

 .event-title {
 font-size: 24px;
 line-height: 1.18;
 }

 .event-list li {
 grid-template-columns: 1fr;
 gap: 2px;
 }

 .event-actions .banner-btn,
 .event-link {
 width: 100%;
 text-align: center;
 }

 .about-story {
 padding: 24px 20px;
 }

 .about-title {
 font-size: 28px;
 }

 .about-lead {
 font-size: 15px;
 }

 .about-photo-panel {
 min-height: 240px;
 padding: 18px;
 }

 .about-highlights span {
 width: 100%;
 text-align: center;
 }

 .landing-header {
 min-height: 600px;
 }

 .landing-hero {
 min-height: 520px;
 }

 .landing-hero .hero-title {
 font-size: 32px;
 }

 .landing-panel {
 padding: 24px 20px;
 }

 .landing-faq {
 grid-template-columns: 1fr;
 }
}

/* ===== LIGHTBOX ===== */
.lightbox {
 display: none;
 position: fixed;
 inset: 0;
 z-index: 9999;
 background: rgba(0,0,0,0.92);
 align-items: center;
 justify-content: center;
 padding: 24px;
}

.lightbox.open {
 display: flex;
}

.lightbox-close {
 position: absolute;
 top: 16px;
 right: 24px;
 background: none;
 border: none;
 color: var(--cream);
 font-size: 36px;
 cursor: pointer;
 z-index: 10000;
 line-height: 1;
 transition: color 0.2s;
}

.lightbox-close:hover {
 color: var(--gold-bright);
}

.lightbox-prev,
.lightbox-next {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 background: none;
 border: none;
 color: var(--cream);
 font-size: 40px;
 cursor: pointer;
 z-index: 10000;
 padding: 12px 6px;
 transition: color 0.2s;
 line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
 color: var(--gold-bright);
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

.lightbox-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 max-width: 90vw;
 max-height: 90vh;
}

.lightbox-img {
 max-width: 100%;
 max-height: 82vh;
 object-fit: contain;
 border-radius: 4px;
 box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-caption {
 margin-top: 12px;
 color: var(--cream);
 font-size: 13px;
 letter-spacing: 2px;
 text-transform: uppercase;
 font-weight: 300;
 opacity: 0.8;
}

@media (max-width: 768px) {
 .lightbox { padding: 12px; }
 .lightbox-prev { left: 4px; font-size: 28px; }
 .lightbox-next { right: 4px; font-size: 28px; }
 .lightbox-close { top: 8px; right: 12px; font-size: 28px; }
 .lightbox-img { max-height: 72vh; }
}

/* ===== BLOG CARD (sidebar) ===== */
.blog-card {
 padding: 0;
}

.blog-card-title {
 font-family: 'Rye', Georgia, serif;
 font-size: 13px;
 color: var(--gold-bright);
 line-height: 1.5;
 margin-bottom: 8px;
}

.blog-card-snippet {
 font-size: 11px;
 font-weight: 300;
 color: var(--dust);
 line-height: 1.6;
 margin-bottom: 10px;
}

.blog-card-link {
 display: inline-block;
 font-size: 10px;
 font-weight: 600;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--gold);
 text-decoration: none;
 transition: color 0.2s;
}

.blog-card-link:hover {
 color: var(--gold-bright);
 text-decoration: underline;
}
