/* ============================================================
   Leśna Ostoja Rewal — Custom New Styles
   Uzupełnienie Tailwind CDN o specyficzne elementy designu
   ============================================================ */

:root {
  --forest:      #1a4a2e;
  --forest-dark: #0f2e1c;
  --forest-mid:  #2d6b44;
  --ocean:       #1e6b8c;
  --amber:       #d4821a;
  --amber-hover: #b86d14;
  --sand:        #f5e6c8;
  --sand-light:  #fdf6ea;
  --off-white:   #fafaf7;
  --text-dark:   #1a2218;
  --text-mid:    #3a4a38;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* ---- Promo Bar ---- */
#promo-bar {
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 7px 16px;
  overflow: hidden;
  position: relative;
  z-index: 60;
}
#promo-bar .promo-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: promo-scroll 18s linear infinite;
}
@media (min-width: 900px) {
  #promo-bar .promo-track { animation: none; justify-content: center; gap: 48px; }
}
@keyframes promo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#promo-bar .promo-item { display: flex; align-items: center; gap: 6px; }
#promo-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; cursor: pointer;
  font-size: 18px; line-height: 1; opacity: .7;
}
#promo-close:hover { opacity: 1; }

/* ---- Navbar ---- */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--forest);
  transition: box-shadow .3s;
}
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(26,74,46,.12); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--forest); line-height: 1.1;
}
.nav-logo-text span { display: block; font-size: 11px; font-weight: 400; color: var(--ocean); font-family: 'Inter', sans-serif; letter-spacing: .04em; }
nav.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 4px;
}
nav.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
nav.nav-links a:hover { color: var(--forest); background: rgba(26,74,46,.07); }
.nav-contact {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.nav-contact a { font-size: 13px; color: var(--text-mid); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.nav-contact a:hover { color: var(--forest); }
.btn-amber {
  background: var(--amber);
  color: #fff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .04em;
  transition: background .2s, transform .1s, box-shadow .2s;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(212,130,26,.3);
}
.btn-amber:hover { background: var(--amber-hover); box-shadow: 0 4px 16px rgba(212,130,26,.4); }
.btn-amber:active { transform: scale(.98); }
.btn-forest {
  background: var(--forest);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s, box-shadow .2s;
  display: inline-block;
}
.btn-forest:hover { background: var(--forest-dark); }
.btn-outline {
  background: transparent;
  color: var(--forest) !important;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 6px;
  border: 2px solid var(--forest);
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s, color .2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--forest); color: #fff !important; }

/* Hamburger mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
#mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,46,28,.97);
  z-index: 49;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: color .2s;
}
#mobile-menu a:hover { color: var(--sand); }
#mobile-menu .menu-contact {
  margin-top: 24px;
  text-align: center;
}
#mobile-menu .menu-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,.7);
  display: block;
}

@media (max-width: 900px) {
  nav.nav-links, .nav-contact { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; }
}

/* ---- Hero ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 60%;
  background-image: url('https://images.pexels.com/photos/1024960/pexels-photo-1024960.jpeg');
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,74,46,.15) 0%,
    rgba(26,74,46,.1) 30%,
    rgba(15,46,28,.55) 75%,
    rgba(15,46,28,.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 80px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.hero-promo-badge {
  position: absolute;
  top: 24px; right: 5vw;
  background: var(--amber);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212,130,26,.4);
  z-index: 3;
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(212,130,26,.4); }
  50%       { box-shadow: 0 6px 24px rgba(212,130,26,.65); }
}
.hero-tag {
  display: inline-block;
  background: rgba(245,230,200,.2);
  color: var(--sand);
  border: 1px solid rgba(245,230,200,.3);
  backdrop-filter: blur(4px);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 68px);
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--sand);
  margin: 0 0 28px;
  line-height: 1.5;
}
.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-benefit {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-benefit::before { content: '✓'; color: var(--sand); font-style: normal; font-weight: 700; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  cursor: pointer;
}
.hero-scroll svg { animation: bounce-down 2s ease-in-out infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@media (max-width: 640px) {
  .hero-promo-badge { top: 80px; right: 16px; font-size: 12px; padding: 8px 14px; }
  .hero-content { padding: 0 20px 100px; }
  .hero-benefits { grid-template-columns: 1fr; }
}

/* ---- Calculator Section ---- */
#booking-calculator-section {
  background: var(--sand);
  padding: 40px 24px;
  box-shadow: 0 8px 32px rgba(26,74,46,.12);
  position: relative;
  z-index: 10;
}
.calc-header {
  text-align: center;
  margin-bottom: 24px;
}
.calc-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--forest);
  margin: 0 0 6px;
}
.calc-header p {
  color: var(--text-mid);
  font-size: 14px;
}
#booking-calculator {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 4px 24px rgba(26,74,46,.1);
}
/* Override the original calc CSS for new styled inputs */
#booking-calculator .inputs-container {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
#booking-calculator .calc-field {
  flex: 1;
  min-width: 160px;
}
#booking-calculator .calc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
#booking-calculator .calc-field input,
#booking-calculator .calc-field select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #d8e8d4;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-family: 'Inter', sans-serif;
}
#booking-calculator .calc-field input:focus,
#booking-calculator .calc-field select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,74,46,.1);
}
#booking-calculator #search-btn,
#booking-calculator .search-btn {
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 0 28px;
  height: 48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: .03em;
  box-shadow: 0 2px 8px rgba(212,130,26,.3);
  flex-shrink: 0;
  align-self: flex-end;
}
#booking-calculator #search-btn:hover { background: var(--amber-hover); }

/* Override calc-result colors to match new palette */
#calc-result {
  border-radius: 10px !important;
  margin-top: 16px !important;
  background: #eef7f0 !important;
}
#calc-result .result-details { flex-wrap: wrap; }
#calc-result .total { color: var(--forest) !important; }
#booking-section { border-left-color: var(--forest) !important; background: linear-gradient(135deg, #eef7f0 0%, #e8f5e9 100%) !important; border-radius: 10px !important; margin-top: 16px !important; }
.booking-btn { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%) !important; border-radius: 8px !important; }
.booking-submit-btn { background: var(--amber) !important; border-radius: 8px !important; }
.booking-submit-btn:hover { background: var(--amber-hover) !important; }
#promo-msg { border-left-color: var(--amber) !important; background: rgba(212,130,26,.08) !important; border-radius: 8px !important; margin-top: 14px !important; }

@media (max-width: 640px) {
  #booking-calculator-section { padding: 32px 16px; }
  #booking-calculator { padding: 20px 16px; }
  #booking-calculator .inputs-container { flex-direction: column; }
  #booking-calculator .calc-field { width: 100%; }
  #booking-calculator #search-btn, #booking-calculator .search-btn { width: 100%; }
}

/* ---- Benefits Strip ---- */
#benefits-strip {
  background: var(--forest);
  padding: 28px 24px;
}
.benefits-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  text-align: center;
  border-radius: 10px;
  transition: background .2s;
}
.benefit-item:hover { background: rgba(255,255,255,.08); }
.benefit-icon { font-size: 30px; line-height: 1; }
.benefit-label {
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--forest);
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 16px;
  color: #6b7c68;
  max-width: 560px;
  line-height: 1.6;
}
.section-divider {
  width: 48px; height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin: 16px 0 32px;
}

/* ---- Cottages Grid ---- */
#cottages-section {
  background: var(--off-white);
  padding: 80px 24px;
}
.cottages-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cottages-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
}
.cottage-photos-mini {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
  grid-template-columns: repeat(3, 1fr);
}
.cottage-photos-mini picture {
  overflow: hidden;
  border-radius: 8px;
}
.cottage-photos-mini img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (min-width: 768px) {
  .cottage-photos-mini {
    grid-template-columns: repeat(2, 1fr);
  }
  .cottage-photos-mini img {
    height: 140px;
  }
}
@media (min-width: 1024px) {
  .cottage-photos-mini {
    grid-template-columns: 1fr;
  }
  .cottage-photos-mini img {
    height: 160px;
  }
  border: 2px solid rgba(26,74,46,.08);
}
.cottage-badge--count {
  font-size: 11px;
  letter-spacing: .3px;
}
.cottage-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,74,46,.07);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.cottage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,74,46,.14);
}
.cottage-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.cottage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.cottage-card:hover .cottage-img-wrap img { transform: scale(1.06); }
.cottage-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.cottage-body {
  padding: 20px;
  background: var(--sand-light);
}
.cottage-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest);
  margin: 0 0 6px;
}
.cottage-desc {
  font-size: 13px;
  color: #6b7c68;
  margin: 0 0 14px;
  line-height: 1.5;
}
.cottage-amenities {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.amenity-tag {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ocean);
  background: rgba(30,107,140,.08);
  padding: 3px 10px;
  border-radius: 999px;
}
.cottage-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(26,74,46,.1);
}
.cottage-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
}
.cottage-price span { font-size: 13px; font-weight: 400; color: #6b7c68; }

@media (max-width: 1024px) {
  .cottages-grid { grid-template-columns: repeat(2, 1fr); }
  .cottages-grid--2col { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cottages-grid { grid-template-columns: 1fr; }
  .cottages-grid--2col { grid-template-columns: 1fr; }
  #cottages-section { padding: 48px 16px; }
}

/* ---- Area Section ---- */
#area-section {
  background: #fff;
  padding: 80px 24px;
}
.area-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,74,46,.12);
  aspect-ratio: 4/3;
}
.area-img img { width: 100%; height: 100%; object-fit: cover; }
.area-features { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.area-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-mid); line-height: 1.4;
}
.area-feature-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) {
  .area-inner { grid-template-columns: 1fr; gap: 32px; }
  .area-img { order: -1; }
  #area-section { padding: 48px 16px; }
}

/* ---- FAQ ---- */
#faq-section {
  background: var(--off-white);
  padding: 80px 24px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,74,46,.06);
  border: 1px solid rgba(26,74,46,.07);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .2s;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { background: rgba(26,74,46,.03); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; color: var(--ocean); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-item.open .faq-q { background: rgba(26,74,46,.04); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 20px;
}
.faq-a-inner {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  padding-bottom: 18px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px; }

@media (max-width: 640px) { #faq-section { padding: 48px 16px; } }

/* ---- Contact Form ---- */
#contact-section {
  background: var(--sand-light);
  padding: 80px 24px;
}
.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info { }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: var(--forest);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text { font-size: 14px; line-height: 1.5; color: var(--text-mid); }
.contact-info-text strong { display: block; color: var(--text-dark); font-weight: 600; font-size: 15px; }
.contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(26,74,46,.1);
  margin-top: 24px;
  height: 200px;
}
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(26,74,46,.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--forest);
}
.form-field input,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid #d8e8d4;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  background: #fdfdfd;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,74,46,.08);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.captcha-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.captcha-row input { width: 80px; }

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  #contact-section { padding: 48px 16px; }
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Reviews ---- */
#reviews-section {
  background: var(--forest);
  padding: 80px 24px;
}
.reviews-grid {
  max-width: 1200px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: transform .3s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-4px); }
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}
.review-author {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  line-height: 1.3;
}
.review-meta {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.review-stars {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-stars span { font-size: 12px; color: #888; letter-spacing: 0; }
.review-text {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  flex: 1;
}
.review-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-google-badge {
  font-size: 11px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255,255,255,.5);
  padding: 40px;
  font-size: 14px;
}

@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  #reviews-section { padding: 48px 16px; }
}

/* ---- CTA Banner ---- */
#cta-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: var(--forest-dark);
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('/images/0/22005241/141-rewal-lesna-ostoja-p4iXUzH-k0V-WLshMBXskQ.jpg');
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  color: #fff;
  margin: 0 0 14px;
}
.cta-inner p { color: var(--sand); font-size: 18px; margin: 0 0 32px; }
@media (max-width: 640px) { #cta-banner { padding: 64px 20px; } }

/* ---- Footer ---- */
#main-footer {
  background: var(--forest-dark);
  padding: 64px 24px 32px;
  color: rgba(255,255,255,.8);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { }
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.footer-tagline { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 16px;
  transition: background .2s;
}
.footer-social a:hover { background: var(--amber); color: #fff; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--sand); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-contact-item:hover { color: var(--sand); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  #main-footer { padding: 48px 20px 24px; }
}

/* ---- Mobile FAB ---- */
#mobile-fab {
  display: none;
  position: fixed;
  bottom: 80px; left: 0; right: 0;
  z-index: 40;
  justify-content: center;
  pointer-events: none;
}
#mobile-fab a {
  pointer-events: all;
  background: var(--amber);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(212,130,26,.5);
  animation: fab-pop .4s ease;
}
@keyframes fab-pop {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@media (max-width: 900px) { #mobile-fab { display: flex; } }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-divider { margin: 16px auto 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
