/* ============================================
   Public Site CSS — CampingHosting
   Standalone (no Pico.css dependency)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --pub-primary: #2d5a27;
  --pub-primary-dark: #1f4220;
  --pub-primary-deep: #18301a;
  --pub-primary-light: #e8f0e6;
  --pub-secondary: #1565c0;
  --pub-secondary-dark: #0d47a1;
  --pub-secondary-light: #e3f2fd;
  --pub-text: #1d231c;
  --pub-text-muted: #5f665d;
  --pub-bg: #ffffff;
  --pub-bg-alt: #f5f3ec;
  --pub-cream: #f5f3ec;
  --pub-border: #e7e4da;
  --pub-radius: 14px;
  --pub-radius-sm: 8px;
  --pub-shadow: 0 1px 3px rgba(20, 30, 18, 0.08);
  --pub-shadow-md: 0 8px 24px rgba(20, 30, 18, 0.12);
  --pub-container: 1200px;
  --pub-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--pub-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pub-text);
  background: var(--pub-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--pub-primary-dark);
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  color: var(--pub-text);
  letter-spacing: -0.015em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol {
  list-style: none;
}

.pub-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --- Container --- */
.pub-container {
  width: 100%;
  max-width: var(--pub-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--pub-radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.pub-btn-primary {
  background: var(--pub-primary);
  color: #fff;
  border-color: var(--pub-primary);
}

.pub-btn-primary:hover {
  background: var(--pub-primary-dark);
  border-color: var(--pub-primary-dark);
  color: #fff;
}

.pub-btn-light {
  background: var(--pub-primary);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.pub-btn-light:hover {
  background: var(--pub-primary-dark);
  color: #fff;
}

.pub-btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
}

.pub-btn-outline:hover {
  background: #fff;
  color: var(--pub-text);
}

.pub-btn-outline-dark {
  background: transparent;
  color: var(--pub-text);
  border-color: var(--pub-text);
}

.pub-btn-outline-dark:hover {
  background: var(--pub-text);
  color: #fff;
}

.pub-btn-secondary {
  background: var(--pub-secondary);
  color: #fff;
  border-color: var(--pub-secondary);
}

.pub-btn-secondary:hover {
  background: var(--pub-secondary-dark);
  border-color: var(--pub-secondary-dark);
  color: #fff;
}

.pub-btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

/* --- Header --- */
.pub-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pub-primary-deep);
}

.pub-header-transparent {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(12, 20, 10, 0.6) 0%, rgba(12, 20, 10, 0.25) 70%, rgba(12, 20, 10, 0) 100%);
}

.pub-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

.pub-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.pub-logo:hover {
  color: #fff;
}

.pub-logo img {
  height: 44px;
  width: auto;
}

.pub-logo svg {
  height: 38px;
  width: 38px;
}

.pub-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.pub-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.pub-nav a:hover {
  color: #fff;
}

.pub-nav a.active {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.pub-header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pub-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #fff;
}

.pub-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* --- Hero --- */
.pub-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, var(--pub-primary-deep) 0%, var(--pub-primary-dark) 45%, var(--pub-primary) 100%);
}

.pub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.pub-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 18, 8, 0.62) 0%, rgba(10, 18, 8, 0.25) 60%, rgba(10, 18, 8, 0.1) 100%);
  z-index: 2;
}

.pub-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.pub-hero-content h1,
.pub-hero-content p {
  max-width: 600px;
}

.pub-hero h1 {
  font-size: 3.25rem;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.pub-hero p {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.pub-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- USP bar (overlapping card at hero bottom) --- */
.pub-usps-wrap {
  position: relative;
  z-index: 4;
  margin-top: auto;
  transform: translateY(50%);
}

.pub-usps {
  background: var(--pub-cream);
  border-radius: var(--pub-radius);
  box-shadow: var(--pub-shadow-md);
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.pub-usp {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  text-align: left;
}

.pub-usp-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pub-primary);
  background: transparent;
  border: 1.5px solid color-mix(in srgb, var(--pub-primary) 30%, transparent);
  border-radius: 10px;
}

.pub-usp-icon svg {
  width: 22px;
  height: 22px;
}

.pub-usp h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pub-usp p {
  font-size: 0.8125rem;
  color: var(--pub-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Space below the overlapping USP card */
.pub-hero:has(.pub-usps-wrap) + .pub-announcements,
.pub-hero:has(.pub-usps-wrap) + .pub-section,
.pub-hero:has(.pub-usps-wrap) + .pub-content-blocks {
  padding-top: 8rem;
}

/* --- Announcements --- */
.pub-announcements {
  padding: 2rem 0 0;
}

.pub-announcement {
  padding: 1rem 1.25rem;
  border-radius: var(--pub-radius-sm);
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--pub-primary);
  background: var(--pub-primary-light);
}

.pub-announcement:last-child {
  margin-bottom: 0;
}

.pub-announcement-urgent {
  border-left-color: #c0392b;
  background: #fdf0ef;
}

.pub-announcement-important {
  border-left-color: #e67e22;
  background: #fef9f0;
}

.pub-announcement strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.pub-announcement p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--pub-text-muted);
}

/* --- Booking + accommodations --- */
.pub-booking-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

.pub-booking-layout.no-booking {
  grid-template-columns: 1fr;
}

.pub-booking-card {
  background: var(--pub-cream);
  border-radius: var(--pub-radius);
  padding: 2rem 1.75rem;
  position: sticky;
  top: 100px;
}

.pub-booking-card h2 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.pub-booking-card > p {
  font-size: 0.9rem;
  color: var(--pub-text-muted);
  margin-bottom: 1.5rem;
}

.pub-booking-card form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pub-booking-card input[type="date"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--pub-text);
}

.pub-booking-card input[type="date"]:focus {
  outline: 2px solid color-mix(in srgb, var(--pub-primary) 35%, transparent);
  border-color: var(--pub-primary);
}

.pub-booking-card .pub-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.pub-accommodations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pub-accommodation-card {
  background: var(--pub-bg);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pub-accommodation-card:hover {
  box-shadow: var(--pub-shadow-md);
  transform: translateY(-2px);
}

.pub-accommodation-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pub-accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pub-accommodation-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--pub-primary-light) 0%, color-mix(in srgb, var(--pub-primary) 25%, white) 100%);
  color: var(--pub-primary);
}

.pub-accommodation-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.6;
}

.pub-accommodation-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pub-accommodation-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.pub-accommodation-summary {
  font-size: 0.875rem;
  color: var(--pub-text-muted);
  margin-bottom: 0.875rem;
}

.pub-accommodation-amenities {
  display: flex;
  gap: 0.875rem;
  color: var(--pub-text-muted);
  margin-bottom: 1rem;
}

.pub-accommodation-amenities svg {
  width: 18px;
  height: 18px;
}

.pub-accommodation-footer {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--pub-border);
  padding-top: 0.875rem;
}

.pub-accommodation-price {
  font-size: 0.8125rem;
  color: var(--pub-text-muted);
}

.pub-accommodation-price strong {
  font-size: 1rem;
  color: var(--pub-text);
  font-weight: 700;
}

.pub-accommodation-link {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--pub-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Section --- */
.pub-section {
  padding: 4.5rem 0;
}

.pub-section-alt {
  background: var(--pub-bg-alt);
}

.pub-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pub-section-header h2 {
  margin-bottom: 0.75rem;
}

.pub-section-header p {
  color: var(--pub-text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Blocks --- */
.pub-content-blocks {
  padding: 4rem 0;
}

.pub-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  text-align: center;
  align-items: start;
}
.pub-content-grid > section {
  margin-bottom: 0;
  height: 100%;
}

.pub-content-blocks section {
  margin-bottom: 2rem;
}

.pub-content-blocks section:last-child {
  margin-bottom: 0;
}

.pub-content-blocks h2 {
  margin-bottom: 1rem;
}

.pub-content-blocks p {
  color: var(--pub-text);
  line-height: 1.7;
}

.pub-content-blocks figure {
  margin: 2rem 0;
}

.pub-content-blocks figure img {
  border-radius: var(--pub-radius);
  width: 100%;
}

.pub-content-blocks figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--pub-text-muted);
  margin-top: 0.75rem;
}

.pub-content-blocks table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.pub-content-blocks td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--pub-border);
  font-size: 0.9375rem;
}

.pub-content-blocks tr:last-child td {
  border-bottom: none;
}

/* --- Cards --- */
.pub-card {
  background: var(--pub-bg);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.pub-card:hover {
  box-shadow: var(--pub-shadow-md);
}

.pub-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pub-card-body {
  padding: 1.25rem;
}

.pub-card-body h3 {
  margin-bottom: 0.5rem;
}

/* --- Activities Section --- */
.pub-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pub-activity-card {
  background: var(--pub-bg);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pub-activity-card:hover {
  box-shadow: var(--pub-shadow-md);
  transform: translateY(-2px);
}

.pub-activity-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pub-activity-body {
  padding: 1.25rem;
}

.pub-activity-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pub-activity-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--pub-text-muted);
  margin-bottom: 0.5rem;
}

.pub-activity-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pub-activity-location {
  font-size: 0.8125rem;
  color: var(--pub-text-muted);
  margin-bottom: 0.75rem;
}

.pub-activity-body p {
  font-size: 0.9375rem;
  color: var(--pub-text-muted);
}

.pub-section-footer {
  text-align: center;
  margin-top: 2rem;
}

.pub-section-footer a {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--pub-primary);
}

.pub-section-footer a:hover {
  color: var(--pub-primary-dark);
}

/* --- Page Hero (inner pages) --- */
.pub-page-hero {
  background: var(--pub-primary-deep);
  padding: 3.5rem 0;
}

.pub-page-hero h1 {
  font-size: 2.25rem;
  color: #fff;
}

/* --- FAQ Section --- */
.faq-section h2,
.pub-faq-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.faq-item {
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--pub-bg);
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  font-size: 0.9375rem;
  transition: background 0.2s;
}

.faq-item summary:hover {
  background: var(--pub-bg-alt);
}

.faq-item summary::before {
  content: "▸ ";
  display: inline;
  color: var(--pub-primary);
}

.faq-item[open] summary::before {
  content: "▾ ";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--pub-border);
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--pub-text-muted);
}

.faq-item p:first-of-type {
  padding-top: 1rem;
}

/* --- Activities Page (full listing) --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: var(--pub-bg);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.activity-card:hover {
  box-shadow: var(--pub-shadow-md);
}

.activity-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.activity-content {
  padding: 1.25rem;
}

.activity-content h3 {
  margin: 0 0 0.5rem;
}

.activity-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--pub-text-muted);
  margin-bottom: 0.5rem;
}

.activity-location {
  font-size: 0.8125rem;
  color: var(--pub-text-muted);
  margin-bottom: 0.75rem;
}

.activity-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--pub-text-muted);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  padding: 1.75rem;
  background: var(--pub-bg);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
}

.contact-item h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--pub-text-muted);
}

.contact-item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.contact-item a {
  font-weight: 500;
}

.contact-emergency {
  border-left: 4px solid #c0392b;
  background: #fdf0ef;
}

/* --- Contact Form --- */
.contact-form-wrapper {
  max-width: 640px;
}

.contact-form-wrapper h2 {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pub-text);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-sm, 8px);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--pub-bg);
  color: var(--pub-text);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  outline: none;
  border-color: var(--pub-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--pub-primary) 15%, transparent);
}

.contact-form-field textarea {
  resize: vertical;
}

.contact-form-errors {
  padding: 0.75rem 1rem;
  background: #fdf0ef;
  border: 1px solid #e8c4c0;
  border-radius: var(--pub-radius-sm, 8px);
  color: #c0392b;
  font-size: 0.875rem;
}

.contact-form-errors p {
  margin: 0;
}

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

/* --- Practical Info Section --- */
.practical-info-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.practical-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.practical-info-card {
  padding: 1.5rem;
  background: var(--pub-bg);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius);
}

.practical-info-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.practical-info-card h3 {
  margin: 0 0 0.5rem;
}

.practical-info-body {
  font-size: 0.9375rem;
  color: var(--pub-text-muted);
  line-height: 1.7;
}

.practical-info-body p {
  margin: 0;
}

/* --- Footer --- */
.pub-footer {
  background: var(--pub-cream);
  padding: 4rem 0 0;
  margin-top: 5rem;
}

.pub-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.pub-footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--pub-text);
}

.pub-footer p {
  font-size: 0.875rem;
  color: var(--pub-text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.pub-footer a {
  color: var(--pub-text-muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.pub-footer a:hover {
  color: var(--pub-primary);
}

.pub-footer a.pub-btn-primary {
  color: #fff;
  font-size: 0.875rem;
}

.pub-footer a.pub-btn-primary:hover {
  color: #fff;
}

.pub-footer-route {
  margin-top: 0.75rem;
}

.pub-footer a.pub-footer-route {
  color: var(--pub-text);
  font-size: 0.8125rem;
}

.pub-footer a.pub-footer-route:hover {
  color: #fff;
}

.pub-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pub-footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pub-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pub-footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--pub-primary);
}

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

.pub-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pub-primary-deep);
  color: #fff;
  transition: background 0.2s;
}

.pub-footer-social a:hover {
  background: var(--pub-primary);
  color: #fff;
}

.pub-footer-social svg {
  width: 18px;
  height: 18px;
}

.pub-footer-bottom {
  background: var(--pub-primary-deep);
  padding: 1.1rem 0;
}

.pub-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pub-footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.pub-footer-bottom a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.pub-footer-bottom a:hover {
  color: #fff;
}

/* --- Section: public-section (backward compat) --- */
.public-section {
  margin-top: 2.5rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .pub-usps {
    gap: 1.25rem 2rem;
  }

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

  .pub-booking-card {
    position: static;
  }

  .pub-booking-card form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pub-booking-card input[type="date"] {
    width: auto;
    flex: 1;
    min-width: 160px;
  }

  .pub-booking-card .pub-btn {
    width: auto;
    margin-top: 0;
  }

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

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

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

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .pub-header-inner {
    height: 68px;
  }

  .pub-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--pub-primary-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: var(--pub-shadow-md);
  }

  .pub-nav.open {
    display: flex;
  }

  .pub-nav a {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pub-nav a.active {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .pub-nav a:last-child {
    border-bottom: none;
  }

  .pub-mobile-toggle {
    display: block;
  }

  .pub-header-cta .pub-btn {
    display: none;
  }

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

  .pub-hero h1 {
    font-size: 2.25rem;
  }

  .pub-hero p {
    font-size: 1rem;
  }

  .pub-hero-content {
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .pub-usps-wrap {
    transform: none;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .pub-hero:has(.pub-usps-wrap) + .pub-announcements,
  .pub-hero:has(.pub-usps-wrap) + .pub-section,
  .pub-hero:has(.pub-usps-wrap) + .pub-content-blocks {
    padding-top: 2.5rem;
  }

  .pub-usps {
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .pub-usp {
    flex: 1 1 100%;
  }

  .pub-booking-card form {
    flex-direction: column;
  }

  .pub-booking-card input[type="date"],
  .pub-booking-card .pub-btn {
    width: 100%;
  }

  .pub-accommodations-grid {
    grid-template-columns: 1fr;
  }

  .pub-activities-grid {
    grid-template-columns: 1fr;
  }

  .pub-section {
    padding: 2.5rem 0;
  }

  .pub-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pub-footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }

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

  .pub-page-hero {
    padding: 2.5rem 0;
  }

  .pub-page-hero h1 {
    font-size: 1.75rem;
  }
}

/* ── Booking Flow ─────────────────────────────────────────── */
.pub-booking-page {
  max-width: 900px;
  margin: 0 auto;
}
.pub-booking-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.pub-booking-subtitle {
  color: var(--pub-text-muted, #666);
  margin-bottom: 2rem;
}

.pub-booking-search-card {
  background: var(--pub-cream, #faf8f2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pub-booking-search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 100px auto;
  gap: 1rem;
  align-items: end;
}
.pub-field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.pub-field input,
.pub-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.pub-field small {
  display: block;
  color: var(--pub-text-muted, #888);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* Results */
.pub-booking-results-title {
  margin: 2rem 0 1rem;
}
.pub-booking-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pub-booking-result-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.pub-booking-result-card.unavailable {
  opacity: 0.5;
}
.pub-booking-result-image {
  height: 100%;
  min-height: 180px;
}
.pub-booking-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pub-booking-result-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pub-booking-result-body h3 {
  margin: 0;
  font-size: 1.15rem;
}
.pub-booking-result-summary {
  color: var(--pub-text-muted, #666);
  font-size: 0.9rem;
  margin: 0;
}
.pub-booking-result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.75rem;
}
.pub-booking-result-price strong {
  font-size: 1.25rem;
  color: var(--pub-primary-deep, #2d5a27);
}
.pub-booking-result-price small {
  display: block;
  color: var(--pub-text-muted, #888);
  font-size: 0.8rem;
}
.pub-booking-unavailable {
  color: var(--pub-text-muted, #888);
  font-style: italic;
}
.pub-booking-no-rate {
  color: var(--pub-text-muted, #888);
  font-size: 0.9rem;
}
.pub-booking-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--pub-text-muted, #888);
}

/* Step 2: Booking form */
.pub-booking-layout-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.pub-booking-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.pub-booking-card h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.pub-booking-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pub-booking-form input[type="text"],
.pub-booking-form input[type="email"],
.pub-booking-form input[type="tel"],
.pub-booking-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.pub-booking-form label {
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.35rem;
}
.pub-booking-stay-summary {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.pub-booking-stay-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.pub-booking-stay-summary p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--pub-text-muted, #666);
}

/* Extras */
.pub-booking-extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.pub-booking-extra-row:last-child {
  border-bottom: none;
}
.pub-booking-extra-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: normal;
}
.pub-booking-extra-label strong {
  font-weight: 600;
}
.pub-booking-extra-price {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}
.pub-booking-extra-price small {
  display: block;
  font-weight: 400;
  color: var(--pub-text-muted, #888);
  font-size: 0.75rem;
}

/* Terms */
.pub-booking-terms-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal !important;
  cursor: pointer;
}

/* Price sidebar */
.pub-booking-sidebar {
  position: sticky;
  top: 100px;
}
.pub-booking-price-card {
  background: var(--pub-cream, #faf8f2);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.pub-booking-price-card h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
}
.pub-booking-price-line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.pub-booking-price-total {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--pub-primary-deep, #2d5a27);
  font-size: 1.1rem;
  font-weight: 700;
}
.pub-btn-block {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

/* Confirmation */
.pub-booking-confirmation {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 0;
}
.pub-booking-confirmation-icon {
  margin-bottom: 1.5rem;
}
.pub-booking-confirmation h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.pub-booking-confirmation-ref {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pub-primary-deep, #2d5a27);
  margin-bottom: 1rem;
}
.pub-booking-confirmation-summary {
  text-align: left;
  margin: 2rem 0;
}
.pub-booking-confirmation-summary table {
  width: 100%;
}
.pub-booking-confirmation-summary td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.pub-booking-confirmation-summary td:first-child {
  width: 40%;
}

/* Flash */
.pub-flash {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.pub-flash-error {
  background: #f8d7da;
  color: #721c24;
}
.pub-flash-error ul {
  margin: 0;
  padding-left: 1.25rem;
}

@media (max-width: 768px) {
  .pub-booking-search-fields {
    grid-template-columns: 1fr 1fr;
  }
  .pub-booking-result-card {
    grid-template-columns: 1fr;
  }
  .pub-booking-result-image {
    min-height: 160px;
    max-height: 200px;
  }
  .pub-booking-layout-2col {
    grid-template-columns: 1fr;
  }
  .pub-booking-sidebar {
    position: static;
  }
  .pub-booking-fields-grid {
    grid-template-columns: 1fr;
  }
}

/* Locale switcher dropdown */
.pub-locale-switcher {
  position: relative;
}
.pub-locale-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.pub-locale-btn:hover {
  background: rgba(255,255,255,0.22);
}
.pub-locale-flag {
  font-size: 1.1em;
  line-height: 1;
}
.pub-locale-code {
  letter-spacing: 0.02em;
}
.pub-locale-chevron {
  opacity: 0.7;
  transition: transform 0.2s;
}
.pub-locale-menu.open ~ .pub-locale-btn .pub-locale-chevron,
.pub-locale-switcher:has(.pub-locale-menu.open) .pub-locale-chevron {
  transform: rotate(180deg);
}
.pub-locale-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.08);
  padding: 0.35rem;
  z-index: 100;
  animation: pub-locale-fade 0.15s ease;
}
.pub-locale-menu.open {
  display: block;
}
@keyframes pub-locale-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.pub-locale-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  border-radius: 7px;
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.12s;
}
.pub-locale-item:hover {
  background: #f3f3f0;
  color: #333;
}
.pub-locale-item.active {
  background: var(--pub-primary-light);
  color: var(--pub-primary-dark);
  font-weight: 600;
}
.pub-locale-item .pub-locale-flag {
  font-size: 1.25em;
}
