/* ============================================
   Nieuw Spitholt - B&B Website Stylesheet
   ============================================ */

/* --- Design Tokens --- */
:root {
  --color-primary: #8B6F4E;
  --color-primary-light: #A6896A;
  --color-primary-dark: #6B5338;
  --color-accent: #C8956C;
  --color-accent-light: #E0BFA0;
  --color-bg: #FDFAF5;
  --color-bg-alt: #F5EFE6;
  --color-bg-dark: #2C2C2C;
  --color-text: #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-text-inverse: #FDFAF5;
  --color-border: #DDD5C9;
  --color-white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-hero-title: clamp(2.5rem, 6vw, 5rem);
  --fs-hero-subtitle: clamp(1rem, 2vw, 1.5rem);
  --fs-section-title: clamp(1.8rem, 4vw, 3rem);
  --fs-section-subtitle: clamp(1rem, 1.5vw, 1.25rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: 0.875rem;
  --section-padding-y: clamp(4rem, 8vw, 7rem);
  --section-padding-x: clamp(1.5rem, 5vw, 4rem);
  --container-max: 1200px;
  --gap: clamp(1rem, 2vw, 2rem);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Prevent horizontal overflow on any element */
section, footer, main {
  overflow-x: clip;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: var(--fs-section-subtitle);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: #b3804f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
  background: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(253, 250, 245, 0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.header-logo img {
  height: 55px;
  width: auto;
  transition: filter var(--transition);
}

.header:not(.scrolled) .header-logo img {
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: color var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header.scrolled .nav-menu a {
  color: var(--color-text);
}

.header.scrolled .nav-menu a:hover {
  color: var(--color-primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.25rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255,255,255,0.3);
}

.header.scrolled .lang-switcher {
  border-left-color: var(--color-border);
}

.lang-switcher button {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.lang-switcher button.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.lang-switcher button:hover:not(.active) {
  color: var(--color-white);
}

.header.scrolled .lang-switcher button {
  color: var(--color-text-light);
}

.header.scrolled .lang-switcher button.active {
  background: var(--color-accent);
  color: var(--color-white);
}

.header.scrolled .lang-switcher button:hover:not(.active) {
  color: var(--color-text);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}

.header.scrolled .hamburger span {
  background: var(--color-text);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 0 1.5rem;
}

.hero-logo {
  width: clamp(120px, 20vw, 200px);
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-hero-title);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: var(--fs-hero-subtitle);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-white);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-section-title);
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.about-text p:last-of-type {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

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

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.about-stat-label {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================
   COTTAGE
   ============================================ */
.cottage {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg-alt);
}

.cottage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.cottage-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cottage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cottage-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.cottage-card-body {
  padding: 1.25rem 1.5rem;
}

.cottage-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cottage-card-body p {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: 1.6;
}

.cottage-extra {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
}

.cottage-extra img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Price Badge */
.price-badge {
  display: none;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 2rem;
}

.price-badge.visible {
  display: block;
}

.price-badge .price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.price-badge .price-period {
  font-size: var(--fs-small);
  opacity: 0.9;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.15);
}

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

/* ============================================
   SURROUNDINGS
   ============================================ */
.surroundings {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg-alt);
  position: relative;
}

.surroundings-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: 0;
}

.surroundings .container {
  position: relative;
  z-index: 1;
}

.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.activity-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.activity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.activity-card p {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent-light);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #F5A623;
}

.review-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-text);
}

.review-source {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================
   BOOKING
   ============================================ */
.booking {
  padding: var(--section-padding-y) 0;
  background: var(--color-bg-alt);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.booking-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.booking-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px; /* Prevents iOS zoom on focus */
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-bg);
  -webkit-appearance: none;
  appearance: none;
}

/* Date inputs: styled with calendar icon */
.form-group input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%238B6F4E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px 20px;
}

/* Hide default webkit calendar icon and show our own */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-group input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 111, 78, 0.15);
}

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

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: var(--fs-small);
  display: none;
}

.form-feedback.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}

.form-feedback.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
}

.booking-cta {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--color-white);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.booking-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.booking-cta p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.booking-cta .rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.booking-cta .rating-display svg {
  width: 20px;
  height: 20px;
  fill: #F5A623;
}

.booking-cta .rating-display span {
  font-weight: 700;
  font-size: 1.25rem;
}

.pricing-block {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 500px;
  margin: 3rem auto 0;
}

.pricing-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.pricing-block .btn-primary {
  margin-top: 1.5rem;
  background: var(--color-accent);
  color: var(--color-white);
}

.pricing-block .btn-primary:hover {
  background: var(--color-accent-light);
  color: var(--color-text);
}

.pricing-info {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-main .pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.pricing-extra .pricing-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.pricing-label {
  font-size: var(--fs-body);
  color: var(--color-text-light);
}

.pricing-note {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  margin: 0.4rem 0 0.8rem;
  font-style: italic;
}

.booking-phone {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  opacity: 0.9;
}

.booking-phone a {
  color: var(--color-white);
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 3rem);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.footer-contact p {
  margin-bottom: 0.75rem;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-map {
  border-radius: var(--radius);
  overflow: hidden;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
}

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--color-white);
  font-size: 2rem;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 2.5rem;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity var(--transition);
  z-index: 2001;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-small);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .surroundings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-x: clamp(1rem, 4vw, 2rem);
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-bg);
    flex-direction: column;
    padding: calc(var(--header-height) + 2rem) 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    color: var(--color-text);
    font-size: 1rem;
  }

  .lang-switcher {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
  }

  .lang-switcher button {
    color: var(--color-text-light);
  }

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

  .about-image {
    order: -1;
  }

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

  .cottage-extra {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-map iframe {
    height: 200px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
  }

  /* Pricing block mobile */
  .pricing-block {
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 100%;
  }

  .pricing-main .pricing-amount {
    font-size: 1.8rem;
  }

  .pricing-extra .pricing-amount {
    font-size: 1.3rem;
  }

  /* Review cards mobile */
  .review-card {
    padding: 1.5rem;
  }

  /* Hero mobile */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }

  /* Date row stacks on mobile */
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding-x: 1rem;
    --section-padding-y: clamp(3rem, 6vw, 5rem);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .about-stat {
    flex: 0 0 auto;
    min-width: 80px;
  }

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

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

  .activity-card {
    padding: 1.5rem 1rem;
  }

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

  .booking-form {
    padding: 1.25rem;
  }

  .booking-form h3 {
    font-size: 1.25rem;
  }

  .booking-cta {
    padding: 1.5rem;
  }

  /* Section headers mobile */
  .section-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* Cottage cards mobile */
  .cottage-card-body {
    padding: 1rem;
  }

  .cottage-card-body h3 {
    font-size: 1.1rem;
  }

  /* Footer mobile */
  .footer-contact p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 1rem 0;
  }

  /* Buttons full-width on mobile */
  .reviews-cta .btn,
  .pricing-block .btn {
    width: 100%;
    text-align: center;
  }

  /* Lightbox mobile */
  .lightbox-img {
    max-width: 95vw;
    max-height: 75vh;
  }

  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
}

/* Small phones (320px-360px) */
@media (max-width: 360px) {
  :root {
    --section-padding-x: 0.75rem;
  }

  .header-inner {
    padding: 0 0.75rem;
  }

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

  .booking-form {
    padding: 1rem;
  }

  .pricing-block {
    padding: 1.25rem;
  }

  .pricing-info {
    padding: 1rem;
  }

  .pricing-main .pricing-amount {
    font-size: 1.5rem;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
