@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1a5632;
  --primary-light: #2a7a4a;
  --primary-dark: #0f3d22;
  --accent: #c8a84e;
  --accent-light: #d4b96a;
  --accent-dark: #a88a3a;
  --brown: #4a3728;
  --brown-light: #6b5443;
  --white: #ffffff;
  --light-bg: #f8f7f4;
  --text: #333333;
  --text-light: #666666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--brown);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.navbar-public {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar-public.scrolled {
  background: rgba(15, 61, 34, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 0.5rem 0;
}

.navbar-public .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}

.navbar-public .navbar-brand .brand-icon {
  color: var(--accent);
  margin-right: 0.4rem;
}

.navbar-public .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.8rem !important;
  transition: var(--transition);
}

.navbar-public .nav-link:hover,
.navbar-public .nav-link.active {
  color: var(--accent) !important;
}

.navbar-public .navbar-toggler {
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1102;
  background: none;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-public .navbar-toggler:focus { box-shadow: none; }

.hamburger-lines {
  width: 22px;
  height: 16px;
  position: relative;
}

.hamburger-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.hamburger-lines span:nth-child(1) { top: 0; }
.hamburger-lines span:nth-child(2) { top: 7px; }
.hamburger-lines span:nth-child(3) { top: 14px; }

.navbar-toggler.active .hamburger-lines span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.navbar-toggler.active .hamburger-lines span:nth-child(2) { opacity: 0; }

.navbar-toggler.active .hamburger-lines span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  pointer-events: none;
}

.mobile-menu-overlay.open { pointer-events: auto; }

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu-overlay.open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--primary-dark);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-overlay.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  margin-left: auto;
  cursor: pointer;
  padding: 0.25rem;
}

.mobile-menu-nav {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}

.mobile-menu-nav li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-menu-nav li a:hover,
.mobile-menu-nav li a.active { color: var(--accent); background: rgba(255,255,255,0.05); }

.mobile-menu-nav li a i { width: 20px; text-align: center; font-size: 0.9rem; }

.mobile-nav-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 0.5rem 0; }

.mobile-cta-item { padding: 0 1rem; }

.mobile-cta-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.5rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem;
}

.mobile-menu-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.mobile-menu-footer p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 0.5rem; }

.mobile-social { display: flex; gap: 1rem; justify-content: center; }

.mobile-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.mobile-social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.btn-cta {
  background: var(--accent);
  color: var(--white) !important;
  border: 2px solid var(--accent);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200,168,78,0.4);
}

.btn-cta-lg { padding: 0.8rem 2rem; font-size: 0.9rem; }

.btn-outline-green {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-green:hover { background: var(--primary); color: var(--white) !important; }

.btn-outline-white {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,61,34,0.4) 0%, rgba(15,61,34,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.hero-cta {
  font-size: 1rem !important;
  padding: 1rem 2.5rem !important;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.section-clean { padding: 5rem 0; }
.section-alt { background: var(--light-bg); }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--brown);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-badge {
  display: inline-block;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pillar-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.pillar-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.pillar-card:hover .pillar-img { transform: scale(1.03); }

.pillar-body {
  padding: 1.75rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pillar-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pillar-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pillar-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-link { color: var(--accent); }

.gallery-strip {
  padding: 0;
  overflow: hidden;
  background: var(--brown);
}

.gallery-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-track {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}

.gallery-track img {
  height: 280px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  transition: var(--transition);
}

.gallery-track img:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .gallery-track img { height: 200px; }
}

.price-card-clean {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  height: 100%;
  border: 2px solid transparent;
}

.price-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card-featured {
  border-color: var(--accent);
}

.pcc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pcc-season {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.pcc-months {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pcc-prices { border-top: 1px solid #eee; padding-top: 1rem; }

.pcc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.pcc-row + .pcc-row { border-top: 1px solid #f5f5f5; }

.pcc-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.pcc-free {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
}

.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item > i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
}

.contact-item span { font-size: 0.9rem; color: var(--text-light); }
.contact-item a { font-weight: 500; }

.social-row { display: flex; gap: 0.75rem; }

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover { background: var(--primary); color: var(--white); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--primary-dark);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  opacity: 0.95;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-weight: 300;
}

.page-hero-restaurant { background-image: url('/images/restaurant.jpg'); background-size: cover; background-position: center; }
.page-hero-events { background-image: url('/images/events-party.jpg'); background-size: cover; background-position: center; }
.page-hero-booking { background-image: url('/images/camping-area.jpg'); background-size: cover; background-position: center; }

.info-stack { display: flex; flex-direction: column; gap: 1rem; }

.info-stack-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--primary);
}

.info-stack-item > i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-stack-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.info-stack-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

.offer-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.offer-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.offer-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.offer-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.mini-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mini-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.mini-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.mini-card span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brown);
}

.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.service-price {
  display: inline-block;
  background: rgba(200,168,78,0.12);
  color: var(--accent-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.quote-check-card {
  position: relative;
}

.quote-check-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.quote-check-card label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.quote-check-card input:checked + label {
  border-color: var(--primary);
  background: rgba(26,86,50,0.04);
}

.qcc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.qcc-info { display: flex; flex-direction: column; }

.qcc-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.qcc-price {
  font-size: 0.78rem;
  color: var(--text-light);
}

.quote-result {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-top: 1rem;
}

.qr-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}

.qr-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
}

.qr-sub {
  font-size: 0.82rem;
  color: var(--text-light);
}

.sidebar-info { display: flex; flex-direction: column; gap: 1rem; }

.sidebar-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.sidebar-box > i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sidebar-warning > i { background: rgba(255,193,7,0.12); color: #f39c12; }
.sidebar-important > i { background: rgba(231,76,60,0.1); color: #e74c3c; }

.sidebar-box strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.sidebar-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.sidebar-box ol {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
}

.booking-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.price-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 6rem;
  border: 2px solid var(--primary);
}

.price-summary h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.price-total {
  font-weight: 700;
  font-size: 1rem;
  border-top: 1px solid #eee;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.price-deposit {
  background: rgba(26,86,50,0.06);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
}

.price-deposit small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.price-deposit .amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.price-note i { color: var(--accent); margin-right: 0.25rem; }

.btn-book {
  width: 100%;
  padding: 0.85rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-book:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-book:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.booking-conditions {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.booking-conditions h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.bc-content { display: flex; flex-direction: column; gap: 1rem; }

.bc-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  transition: var(--transition);
}

.bc-item:hover { transform: translateX(4px); }

.bc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26,86,50,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bc-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.bc-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.5;
}

.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 0;
}

.footer-brand-pub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand-pub i { color: var(--accent); }

.site-footer p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.8;
}

.site-footer h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  padding: 0.3rem 0;
  font-size: 0.88rem;
}

.site-footer ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.site-footer ul li a:hover { color: var(--accent); }

.site-footer ul li i {
  color: var(--accent);
  width: 20px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.footer-bottom-pub {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom-pub p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.6;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-control {
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,50,0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown);
  margin-bottom: 0.35rem;
}

@media (max-width: 991px) {
  .section-clean { padding: 3.5rem 0; }
  .pillar-img { height: 180px; }
  .map-wrap { height: 300px; }
}

@media (max-width: 768px) {
  .section-clean { padding: 3rem 0; }
  .pillar-body { padding: 1.25rem; }
  .price-summary { position: static; }
  .offer-card { flex-direction: column; align-items: flex-start; }
}

.confirmation-page,
.cancelled-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 2rem;
  background: var(--light-bg);
}

.confirmation-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.check-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(26,86,50,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.cancel-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(231,76,60,0.1);
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.details-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.details-table td {
  padding: 0.65rem 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.details-table tr:last-child td { border-bottom: none; }
.details-table td:last-child { text-align: right; font-weight: 600; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.45);
}

.cookie-banner-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem;
}

.cookie-banner-content h5 {
  margin-bottom: 0.35rem;
}

.cookie-banner-content p {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 1250;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-panel-card {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
