/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2C2A26;
  background: #FAF8F4;
  line-height: 1.7;
}

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: #F2EDE5; }
.section-dark { background: #2C2A26; color: #FAF8F4; }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
p { font-size: 1.05rem; font-weight: 300; max-width: 640px; }
.lead { font-size: 1.2rem; font-weight: 400; line-height: 1.8; }
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B6F4E;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #8B6F4E;
  color: #FAF8F4;
  border: 2px solid #8B6F4E;
}
.btn-primary:hover { background: #6D5138; border-color: #6D5138; }
.btn-outline {
  background: transparent;
  color: #2C2A26;
  border: 2px solid #2C2A26;
}
.btn-outline:hover { background: #2C2A26; color: #FAF8F4; }
.btn-outline-light {
  background: transparent;
  color: #FAF8F4;
  border: 2px solid #FAF8F4;
}
.btn-outline-light:hover { background: #FAF8F4; color: #2C2A26; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(139, 111, 78, 0.15);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo-img:hover { opacity: 0.75; }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: #2C2A26; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: #8B6F4E; }
.nav-cta { margin-left: 16px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  overflow: hidden;
  padding: 150px 24px 52px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(44,42,38,0.35) 0%, rgba(44,42,38,0.25) 45%, rgba(44,42,38,0.55) 100%),
    url('images/porumbacu-main.webp') center/cover no-repeat;
}
.hero-titles { position: relative; z-index: 2; max-width: 860px; width: 100%; }
.hero h1 { color: #FAF8F4; margin-bottom: 16px; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.hero h2 {
  color: rgba(250, 248, 244, 0.9);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

/* Booking Bar */
.booking-bar {
  background: rgba(250, 248, 244, 0.97);
  border-radius: 4px;
  padding: 20px 32px;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.18), 0 20px 60px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-bar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8B6F4E;
  margin-bottom: 4px;
}
.booking-bar-info { flex: 1; min-width: 200px; }
.booking-bar-info p { font-size: 0.82rem; color: #8B6F4E; margin: 0; }
.booking-bar-placeholder { display: contents; }

/* ── INTRO ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-image {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-text { }
.intro-text p { margin-bottom: 20px; }
.divider {
  width: 48px;
  height: 2px;
  background: #8B6F4E;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-image { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  #locul .container > div { grid-template-columns: 1fr !important; }
}

/* ── CAMERE ── */
.rooms-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #2C2A26; border-radius: 3px; overflow: hidden; margin-bottom: 48px; }
.room-tab {
  padding: 20px 28px;
  background: #FAF8F4;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
}
.room-tab.active, .room-tab:hover { background: #8B6F4E; }
.room-tab.active h4, .room-tab:hover h4 { color: #FAF8F4; }
.room-tab.active p, .room-tab:hover p { color: rgba(250,248,244,0.8); }
.room-tab h4 { margin-bottom: 4px; font-size: 0.85rem; }
.room-tab p { font-size: 0.8rem; max-width: none; margin: 0; }

.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.room-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,42,38,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,42,38,0.14); }
.room-card-img {
  height: 220px;
  background: #C4A882 center/cover;
}
.room-card-img-1 { background-image: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=600&q=80'); }
.room-card-img-2 { background-image: url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?w=600&q=80'); }
.room-card-img-3 { background-image: url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=600&q=80'); }
.room-card-img-4 { background-image: url('https://images.unsplash.com/photo-1596436889106-be35e843f974?w=600&q=80'); }
.room-card-body { padding: 24px; }
.room-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.room-card-body p { font-size: 0.9rem; color: #5C5750; margin-bottom: 16px; max-width: none; }
.room-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: #F2EDE5;
  color: #8B6F4E;
  margin-bottom: 12px;
}

.rooms-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }

/* ── ROOM CARD V2 ── */
.rooms-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .rooms-grid-v2 { grid-template-columns: 1fr; } }

.room-card-v2 {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,42,38,0.09);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.room-card-v2:hover { box-shadow: 0 12px 40px rgba(44,42,38,0.15); }

.gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #E8E2D9;
  overflow: hidden;
}
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-img.active { opacity: 1; }

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F2EDE5;
  color: #B8A898;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
  gap: 10px;
}
.gallery-placeholder svg { opacity: 0.4; }

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(44,42,38,0.55);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.gallery-nav:hover { background: rgba(44,42,38,0.85); }
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }
.gallery-nav.hidden { display: none; }

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.gallery-dot.active { background: #fff; transform: scale(1.3); }

.gallery-count {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(44,42,38,0.6);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  z-index: 10;
}

.room-card-v2-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.room-card-v2-body h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.room-card-v2-body .desc { font-size: 0.88rem; color: #5C5750; margin-bottom: 16px; max-width: none; }

.amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 12px;
  margin-bottom: 20px;
}
.amenities li {
  font-size: 0.8rem;
  color: #3E3A33;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.amenities li::before {
  content: '✓';
  color: #8B6F4E;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.room-card-v2-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #F2EDE5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── SPAȚII COMUNE ── */
.commons-hero {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
  min-height: 320px;
}
.ch-slides {
  position: absolute;
  inset: 0;
  display: flex;
}
.ch-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.ch-slide.active { opacity: 1; }
.ch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,28,25,0.72) 0%, rgba(44,42,38,0.45) 100%);
}
.ch-content {
  position: relative;
  z-index: 2;
  padding: 60px 48px;
  color: #FAF8F4;
}
.commons-hero h2 { color: #FAF8F4; margin-bottom: 16px; }
.commons-hero p { color: rgba(250,248,244,0.88); max-width: 520px; }
.ch-dots {
  position: absolute;
  bottom: 18px;
  right: 24px;
  z-index: 3;
  display: flex;
  gap: 6px;
}
.ch-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.ch-dot.active { background: #C4A882; }
@media (max-width: 600px) {
  .ch-content { padding: 36px 24px; }
}

.commons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.commons-card {
  border-left: 3px solid #C4A882 !important;
  background: #fff;
  border-radius: 3px;
  padding: 28px;
  border-left: 3px solid #8B6F4E;
  box-shadow: 0 2px 12px rgba(44,42,38,0.06);
}
.commons-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.commons-card p { font-size: 0.88rem; color: #5C5750; max-width: none; }

@media (max-width: 600px) {
  .commons-hero { padding: 36px 24px; }
}

/* ── PACHETE SEZON ── */
.seasons-wrapper {
  background: linear-gradient(135deg, #2C2A26 0%, #3E3A33 100%);
  border-radius: 4px;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: #FAF8F4;
}
.seasons-text h2 { color: #FAF8F4; margin-bottom: 16px; }
.seasons-text p { color: rgba(250,248,244,0.82); max-width: 420px; margin-bottom: 32px; }
.seasons-cards { display: flex; flex-direction: column; gap: 16px; }
.season-card-mini {
  background: rgba(250,248,244,0.08);
  border: 1px solid rgba(250,248,244,0.15);
  border-radius: 3px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.season-card-mini .season-icon { font-size: 1.8rem; }
.season-card-mini h4 { font-size: 0.9rem; color: #FAF8F4; margin-bottom: 2px; font-family: 'Inter', sans-serif; letter-spacing: 0.05em; }
.season-card-mini p { font-size: 0.78rem; color: rgba(250,248,244,0.65); max-width: none; margin: 0; }
.seasons-badge {
  display: inline-block;
  background: #8B6F4E;
  color: #FAF8F4;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .seasons-wrapper { grid-template-columns: 1fr; padding: 36px 24px; }
}

/* ── ATRACȚII FOTO GRID ── */
.attractii-section {
  padding: 80px 0;
  background: #2C2A26;
}
.attractii-header {
  text-align: center;
  margin-bottom: 40px;
}
.attractii-header .label { color: #C4A882; }
.attractii-header h2 { color: #FAF8F4; margin-bottom: 12px; }
.attractii-header p { color: rgba(250,248,244,0.75); max-width: 560px; margin: 0 auto; font-size: 1rem; }

.attractii-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(196,168,130,0.45);
  background: transparent;
  color: rgba(250,248,244,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: #8B6F4E;
  border-color: #8B6F4E;
  color: #FAF8F4;
}

.attractii-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .attractii-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .attractii-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px)  { .attractii-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.att-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
}
.att-card.hiding { opacity: 0; pointer-events: none; }
.att-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.att-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.att-card:hover .att-card-bg { transform: scale(1.06); }
.att-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,28,25,0.88) 0%, rgba(30,28,25,0.2) 55%, transparent 100%);
}
.att-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 14px 14px;
}
.att-card-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: #FAF8F4;
  line-height: 1.3;
  margin-bottom: 5px;
}
.att-card-dist {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C4A882;
}
.att-card-dist::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C4A882'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.att-card[style*="display:none"], .att-card.hidden { display: none !important; }

/* ── FAIN EXPLORE ── */
.explore-hero {
  background:
    linear-gradient(135deg, rgba(30,28,25,0.78) 0%, rgba(109,81,56,0.65) 100%),
    url('images/fain explore.webp') center/cover;
  border-radius: 4px;
  padding: 64px 48px;
  color: #FAF8F4;
  margin-bottom: 40px;
}
.explore-hero .label { color: #C4A882; }
.explore-hero h2 { color: #FAF8F4; margin-bottom: 16px; max-width: 560px; }
.explore-hero p { color: rgba(250,248,244,0.85); max-width: 520px; margin-bottom: 32px; }
@media (max-width: 600px) { .explore-hero { padding: 40px 24px; } }

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .explore-grid { grid-template-columns: 1fr; } }

.explore-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,42,38,0.08);
}
.explore-card-img {
  height: 220px;
  background: #C4A882 center/cover;
}
.explore-card-body { padding: 28px; }
.explore-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.explore-card-body p { font-size: 0.9rem; color: #5C5750; margin-bottom: 20px; max-width: none; }
.explore-fleet {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.fleet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FAF8F4;
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.fleet-item .fleet-icon { font-size: 1.4rem; flex-shrink: 0; }
.fleet-item strong { display: block; font-size: 0.82rem; color: #2C2A26; }
.fleet-item span { font-size: 0.75rem; color: #8B6F4E; }

/* ── TESTIMONIALE ── */
.reviews-carousel { position: relative; }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}
.reviews-controls { display: flex; gap: 8px; }
.reviews-arrow {
  background: #fff;
  border: 1px solid #E5DDD4;
  color: #2C2A26;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
.reviews-arrow:hover { background: #8B6F4E; color: #fff; border-color: #8B6F4E; }
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-slide {
  min-width: calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 4px;
  border: 1px solid #EDE8E0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}
.review-stars { color: #C4A882; font-size: 0.95rem; letter-spacing: 3px; }
.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #3E3A33;
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
  max-width: none;
}
.review-text::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 1.8rem; line-height: 0; vertical-align: -0.4rem; color: #C4A882; margin-right: 2px; }
.review-text::after  { content: '\201D'; font-family: 'Playfair Display', serif; font-size: 1.8rem; line-height: 0; vertical-align: -0.4rem; color: #C4A882; margin-left: 2px; }
.review-author {
  display: flex;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid #F2EDE5;
  margin-top: auto;
}
.review-author strong { font-size: 0.85rem; color: #2C2A26; font-weight: 600; }
.review-author span   { font-size: 0.78rem; color: #6B5035; margin-top: 2px; font-weight: 500; }
.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.reviews-dots { display: flex; gap: 6px; flex-wrap: wrap; }
.reviews-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #C4A882;
  opacity: 0.3;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  padding: 0;
}
.reviews-dot.active { opacity: 1; transform: scale(1.35); background: #8B6F4E; }
.reviews-counter { font-size: 0.75rem; color: #8B6F4E; font-weight: 500; }
@media (max-width: 900px) {
  .review-slide { min-width: calc((100% - 20px) / 2); }
}
@media (max-width: 580px) {
  .review-slide { min-width: 100%; }
  .reviews-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ── CE ÎNSEAMNĂ FAIN ── */
.fain-meaning-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}
.fain-meaning-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.fain-big-letter {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.5px #C4A882;
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.fain-origin {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C4A882;
  opacity: 0.6;
  margin-top: 12px;
  max-width: none;
}
@media (max-width: 768px) {
  .fain-meaning-wrap { grid-template-columns: 1fr; gap: 40px; }
  .fain-meaning-word { flex-direction: row; align-items: baseline; gap: 4px; }
  .fain-big-letter { font-size: 3.5rem; }
  .fain-origin { display: none; }
}

/* ── JURNAL ── */
.journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.journal-card {
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(44,42,38,0.07);
  transition: transform 0.25s;
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card-img {
  height: 200px;
  background: #C4A882 center/cover;
}
.journal-card-img-1 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&q=80'); }
.journal-card-img-2 { background-image: url('https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?w=600&q=80'); }
.journal-card-img-3 { background-image: url('https://images.unsplash.com/photo-1547592180-85f173990554?w=600&q=80'); }
.journal-card-body { padding: 24px; }
.journal-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #8B6F4E; margin-bottom: 8px; }
.journal-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.journal-card-body p { font-size: 0.88rem; color: #5C5750; max-width: none; }

.journal-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.journal-header p { margin: 16px auto 0; }

/* ── SPA BANNER ── */
.spa-banner {
  background:
    linear-gradient(135deg, rgba(44,42,38,0.82) 0%, rgba(109,81,56,0.75) 100%),
    url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?w=1400&q=80') center/cover;
  border-radius: 4px;
  padding: 80px 48px;
  text-align: center;
  color: #FAF8F4;
}
.spa-banner .label { color: #C4A882; }
.spa-banner h2 { color: #FAF8F4; margin-bottom: 20px; max-width: 680px; margin-left: auto; margin-right: auto; }
.spa-banner p { color: rgba(250,248,244,0.85); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.spa-progress { max-width: 400px; margin: 0 auto 36px; }
.spa-progress-bar-bg {
  background: rgba(250,248,244,0.2);
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
.spa-progress-bar-fill {
  background: #C4A882;
  height: 100%;
  width: 38%;
  border-radius: 99px;
}
.spa-progress p { font-size: 0.78rem; color: rgba(250,248,244,0.6); margin: 0; }

@media (max-width: 600px) {
  .spa-banner { padding: 48px 24px; }
}

/* ── FOOTER ── */
footer {
  background: #1E1C19;
  color: rgba(250,248,244,0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: #FAF8F4;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.footer-brand .tagline { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #8B6F4E; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #FAF8F4; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(250,248,244,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #C4A882; }
.footer-contact p { font-size: 0.88rem; margin-bottom: 8px; max-width: none; }
.footer-contact a { color: rgba(250,248,244,0.6); text-decoration: none; }
.footer-contact a:hover { color: #C4A882; }
.footer-bottom {
  border-top: 1px solid rgba(250,248,244,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(250,248,244,0.35);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,248,244,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,248,244,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: #C4A882; color: #C4A882; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Utilities ── */
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
