/* ============================================
   ARCHETYPE 7: Organic / Handcrafted
   Casa Bucovina - Pensiune Bucovina
   OKLCH Color System + Organic Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* OKLCH Forest/Cream Palette */
  --surface-primary: oklch(96% 0.02 80);       /* warm cream */
  --surface-secondary: oklch(92% 0.03 75);     /* light tan */
  --surface-dark: oklch(28% 0.04 50);          /* dark wood */
  --text-primary: oklch(22% 0.03 55);          /* warm dark brown */
  --text-secondary: oklch(50% 0.04 60);        /* muted brown */
  --accent: oklch(62% 0.14 65);                /* warm amber */
  --accent-secondary: oklch(55% 0.1 145);      /* sage green */
  --accent-light: oklch(88% 0.04 75);          /* light warm */
  --forest: oklch(38% 0.08 148);               /* forest green */
  --forest-light: oklch(92% 0.03 148);         /* light green bg */

  /* Typography */
  --font-display: 'Cormorant', 'Playfair Display', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-accent: 'Patrick Hand', 'Caveat', cursive;
  --font-size-base: 1.0625rem;
  --font-size-display: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  --line-height-body: 1.8;
  --line-height-display: 1.15;

  /* Spacing */
  --space-unit: 1.5rem;
  --section-padding: 5rem 2rem;
  --container-max: 1080px;

  /* Shapes */
  --radius: 24px;
  --radius-blob: 40% 60% 55% 45% / 50% 40% 60% 50%;
  --shadow: 0 4px 20px oklch(28% 0.04 50 / 0.1);
  --shadow-hover: 0 8px 30px oklch(28% 0.04 50 / 0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background: var(--surface-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  z-index: 10000;
  font-family: var(--font-body);
  transition: top 0.3s;
}
.skip-link:focus {
  top: 1rem;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--line-height-display);
  font-weight: 600;
  color: var(--text-primary);
}

.font-accent { font-family: var(--font-accent); }
.font-display { font-family: var(--font-display); }

/* Handwritten label above section headers */
.section-label {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.25rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

/* Wavy SVG underline for headings */
.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 6px;
  margin-top: 0.5rem;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 80 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3 Q10 0 20 3 Q30 6 40 3 Q50 0 60 3 Q70 6 80 3' fill='none' stroke='%23c17f3e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
}

/* --- Navigation --- */
.nav-organic {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface-primary);
  transition: box-shadow 0.4s ease;
  border-bottom: 1px solid oklch(88% 0.03 75 / 0.5);
}

.nav-organic.scrolled {
  box-shadow: 0 4px 20px oklch(28% 0.04 50 / 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img { width: 40px; height: 40px; border-radius: 50%; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-primary);
}

.nav-logo-sub {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 Q10 0 20 2 Q30 4 40 2 Q50 0 60 2' fill='none' stroke='%23c17f3e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.nav-cta {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  padding: 0.6rem 1.5rem;
  background: var(--forest);
  color: white;
  border-radius: 50px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: oklch(33% 0.08 148);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface-primary);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  transition: color 0.3s;
  padding: 0.5rem 2rem;
  border-radius: 50px;
}

.nav-mobile a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: block; }
}

/* --- SVG Wave Dividers --- */
.wave-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave-divider.flip { transform: scaleY(-1); }

/* --- Hero: Split Organic --- */
.hero-organic {
  padding-top: 80px; /* account for fixed nav */
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-text {
  padding: 4rem 0 4rem 2rem;
}

.hero-handwritten {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--font-size-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: italic;
  color: var(--forest);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-image {
  position: relative;
  padding: 2rem;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-blob);
  box-shadow: var(--shadow);
}

/* Floating leaf decorations */
.leaf-deco {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-organic {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
  }
  .hero-text { padding: 2rem 1.5rem; text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-image { padding: 0 1.5rem 2rem; }
  .hero-image img { height: 300px; }
}

/* --- Story / About Section --- */
.story-section {
  padding: var(--section-padding);
  background: var(--surface-secondary);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.story-images img:first-child {
  grid-column: span 2;
  height: 280px;
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Organic Cards (Services/Rooms) --- */
.organic-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Staggered offset on alternating cards */
.organic-cards > *:nth-child(even) {
  transform: translateY(2rem);
}

.organic-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.organic-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.organic-cards > *:nth-child(even):hover {
  transform: translateY(calc(2rem - 4px));
}

.organic-card-img {
  height: 220px;
  overflow: hidden;
}

.organic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.organic-card:hover .organic-card-img img {
  transform: scale(1.05);
}

.organic-card-body {
  padding: 1.75rem;
}

.organic-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.organic-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.organic-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--accent-light);
}

.organic-card-price .price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
}

.organic-card-price .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.organic-card-price a {
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: 1.1rem;
  transition: color 0.3s;
}

.organic-card-price a:hover { color: var(--forest); }

@media (max-width: 768px) {
  .organic-cards { grid-template-columns: 1fr; }
  .organic-cards > *:nth-child(even) { transform: none; }
  .organic-cards > *:nth-child(even):hover { transform: translateY(-4px); }
}

/* --- Polaroid Gallery --- */
.polaroid-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

.polaroid {
  background: white;
  padding: 0.75rem 0.75rem 2.5rem;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  max-width: 280px;
  flex-shrink: 0;
}

.polaroid:nth-child(odd) { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(1.5deg); }
.polaroid:nth-child(3n) { transform: rotate(-0.5deg); }

.polaroid:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

.polaroid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.polaroid-caption {
  font-family: var(--font-accent);
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .polaroid { max-width: 240px; }
}

/* --- Testimonials --- */
.testimonial-section {
  padding: var(--section-padding);
  background: var(--surface-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-light);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: 1.2rem;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-loc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- CTA Section --- */
.cta-organic {
  padding: 4rem 2rem;
  background: var(--forest);
  color: white;
  text-align: center;
  position: relative;
}

.cta-organic h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-organic p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-warm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-warm.primary {
  background: var(--accent);
  color: white;
}

.btn-warm.secondary {
  background: oklch(100% 0 0 / 0.15);
  color: white;
  border: 1px solid oklch(100% 0 0 / 0.3);
}

.btn-warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px oklch(0% 0 0 / 0.2);
}

/* --- Footer --- */
.footer-organic {
  background: var(--surface-dark);
  color: oklch(85% 0.02 75);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-brand-tagline {
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: 0.95rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: white;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 1;
}

.footer-social a:hover {
  background: var(--accent);
  color: white;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid oklch(100% 0 0 / 0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- WhatsApp: Organic styled --- */
.whatsapp-organic {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: white;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-organic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.whatsapp-organic svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --- DEMO Badge --- */
.demo-badge {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 90;
  background: var(--surface-dark);
  color: oklch(90% 0.02 75);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* Floating decorative animation */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-anim {
  animation: float-gentle 4s ease-in-out infinite;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
  .polaroid, .polaroid:nth-child(odd), .polaroid:nth-child(even), .polaroid:nth-child(3n) {
    transform: none;
  }
  .polaroid:hover { transform: none; }
}

/* --- Page Headers (subpages) --- */
.page-header {
  padding: 8rem 2rem 4rem;
  background: var(--forest);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.page-header .section-label { color: var(--accent); }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
  color: white;
  margin-top: 0.5rem;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 1rem auto 0;
}

/* --- Facilities alternating layout --- */
.facility-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.facility-block:nth-child(even) .facility-img { order: 2; }
.facility-block:nth-child(even) .facility-content { order: 1; }

.facility-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.facility-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.facility-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.facility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.facility-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.facility-list li svg {
  width: 18px;
  height: 18px;
  fill: var(--forest);
  flex-shrink: 0;
}

.facility-icon {
  width: 56px;
  height: 56px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.facility-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--forest);
}

@media (max-width: 768px) {
  .facility-block {
    grid-template-columns: 1fr;
  }
  .facility-block:nth-child(even) .facility-img,
  .facility-block:nth-child(even) .facility-content { order: unset; }
}

/* --- Amenities grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.amenity-item {
  background: white;
  padding: 1.25rem 0.75rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.amenity-item:hover {
  transform: translateY(-3px);
}

.amenity-item svg {
  width: 28px;
  height: 28px;
  fill: var(--forest);
  margin: 0 auto 0.5rem;
}

.amenity-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-organic {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--accent-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface-primary);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--forest);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: oklch(33% 0.08 148);
  transform: translateY(-1px);
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.contact-info-card:hover {
  transform: translateX(4px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--forest);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.contact-info-card a {
  color: var(--forest);
  font-size: 1.05rem;
  transition: color 0.3s;
}

.contact-info-card a:hover { color: var(--accent); }

.contact-info-card p, .contact-info-card .small {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.map-placeholder {
  background: var(--surface-secondary);
  height: 240px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  margin-top: 1.5rem;
}

.guarantee-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: oklch(62% 0.14 65 / 0.08);
  border: 1px solid oklch(62% 0.14 65 / 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guarantee-box svg {
  width: 36px;
  height: 36px;
  fill: var(--accent);
  flex-shrink: 0;
}

.guarantee-box h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.guarantee-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- Gallery page specific --- */
.gallery-masonry {
  columns: 3;
  column-gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-masonry .polaroid {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  max-width: 100%;
  display: inline-block;
}

.gallery-masonry .polaroid img {
  height: auto;
}

@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
}

/* --- Room detail page --- */
.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px dashed var(--accent-light);
}

.room-detail:last-child {
  border-bottom: none;
}

.room-detail:nth-child(even) .room-images { order: 2; }
.room-detail:nth-child(even) .room-info { order: 1; }

.room-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.room-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 180px;
  width: 100%;
}

.room-images img:first-child {
  grid-column: span 2;
  height: 260px;
}

.room-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.room-avail {
  font-family: var(--font-accent);
  color: var(--accent);
  font-size: 0.95rem;
}

.room-info h2 {
  font-size: 2rem;
  margin: 0.5rem 0 0.75rem;
}

.room-info > p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.room-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--forest);
  flex-shrink: 0;
}

.room-price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: var(--forest-light);
  border-radius: 16px;
}

.room-price-box .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
}

.room-price-box .price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.room-price-box .btn-warm {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
  .room-detail {
    grid-template-columns: 1fr;
  }
  .room-detail:nth-child(even) .room-images,
  .room-detail:nth-child(even) .room-info { order: unset; }
}

/* --- Included amenities strip --- */
.included-strip {
  padding: 3rem 2rem;
  background: var(--forest-light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  text-align: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

.included-item svg {
  width: 28px;
  height: 28px;
  fill: var(--forest);
  margin: 0 auto 0.4rem;
}

.included-item span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: block;
}

/* --- Video placeholder --- */
.video-section {
  padding: var(--section-padding);
  background: var(--surface-secondary);
  text-align: center;
}

.video-placeholder {
  max-width: 720px;
  margin: 2rem auto 0;
  aspect-ratio: 16/9;
  background: oklch(85% 0.02 75);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.video-placeholder svg {
  width: 56px;
  height: 56px;
  fill: var(--accent);
  margin-bottom: 0.75rem;
}
