/*
Theme Name: Domy w lesie
Theme URI: https://domywlesie.pl
Description: Autorski motyw agroturystyczny — Domy w lesie, Sucha Rzeczka.
Author: Łukasz Król
Version: 1.0.0
License: Private
Text Domain: dwl
*/

/* ===================================
   IMPORT FONTS
=================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Lato:wght@300;400;700&display=swap');

/* ===================================
   CSS VARIABLES
=================================== */
:root {
  --color-bg:         #F7F3EE;
  --color-bg-dark:    #2C4A2E;
  --color-bg-mid:     #EDE8E0;
  --color-wood:       #8B5E3C;
  --color-wood-light: #C49A6C;
  /* Jaśniejszy wariant koloru drewna — WYŁĄCZNIE do tekstu na --color-bg-dark.
     --color-wood-light ma tam kontrast ok. 3.85:1 (za mało dla WCAG AA na
     drobnym tekście, próg 4.5:1) — ta zmienna daje ok. 5:1. Nie używać jako
     tło/obramowanie (do tego nadal służy --color-wood-light). */
  --color-wood-on-dark: #D9B384;
  --color-text:       #3A3A3A;
  --color-text-light: #6B6B6B;
  --color-white:      #FFFFFF;
  --color-gold:       #C4943A;
  --font-display:     'Playfair Display', Georgia, serif;
  --font-body:        'Lato', system-ui, sans-serif;
  --max-width:        1140px;
  --section-pad:      80px 0;
  --radius:           4px;
  --transition:       0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   TYPOGRAPHY
=================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--color-bg-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h1.dwl-hero__headline { margin-bottom: 0 !important; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; color: var(--color-text-light); }
p:last-child { margin-bottom: 0; }
p.dwl-hero__sub, .dwl-hero__sub { color: #ffffff !important; margin-top: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-wood);
  display: block;
  margin-bottom: 0.5rem;
}

/* ===================================
   NAVIGATION
=================================== */
.dwl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(44,74,46,0.1);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}

.dwl-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.dwl-nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dwl-nav__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dwl-nav__logo span {
  display: inline-block;
  width: 28px; height: 28px;
  background: var(--color-bg-dark);
  border-radius: 50%;
  position: relative;
}

.dwl-nav__logo span::after {
  content: '🌲';
  font-size: 14px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.dwl-nav__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dwl-nav__menu li {
  display: flex;
  align-items: center;
  height: 100%;
}

.dwl-nav__menu a {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.dwl-nav__menu a:hover,
.dwl-nav__menu a.active {
  color: var(--color-bg-dark);
  border-bottom-color: var(--color-wood);
}

.dwl-nav__menu li:nth-child(even) a:hover,
.dwl-nav__menu li:nth-child(even) a.active {
  border-bottom-color: var(--color-bg-dark);
}

.dwl-nav__cta {
  color: var(--color-wood);
}

.dwl-nav__cta:hover,
.dwl-nav__cta.active {
  color: var(--color-bg-dark);
  border-bottom-color: var(--color-bg-dark);
}

.dwl-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.dwl-nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-bg-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================
   HERO — LICZNIKI
=================================== */
.dwl-hero {
  padding-top: 64px;
  background: var(--color-bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
}

/* Dekoracja tła — fale */
.dwl-hero::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 100px;
  background: var(--color-bg);
  clip-path: ellipse(50% 100% at 50% 100%);
  display: none;
}

.dwl-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 3rem;
  align-items: center;
}

.dwl-hero__content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dwl-hero__content > .dwl-hero__headline {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.dwl-hero__content p {
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  padding-top: 1.5rem;
}

.dwl-hero__content p:empty {
  display: none;
}

.dwl-hero__content .dwl-hero__actions {
  padding-top: 1.5rem;
}
.dwl-hero__image {
  grid-column: 2;
  grid-row: 1 / 2;
  align-self: stretch;
}

.dwl-hero__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  max-height: 620px;
  display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.dwl-hero__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.dwl-hero__image-placeholder::before {
  content: '🖼️';
  font-size: 3rem;
}

/* Liczniki — rozciągają się na całą szerokość */
.dwl-hero__stats {
  grid-column: 1 / -1;
}

.dwl-hero__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-wood-on-dark);
  border: 1px solid var(--color-wood);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.dwl-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0 !important;
  margin-block-end: 0 !important;
  max-width: 700px;
}

.dwl-hero__headline em {
  font-style: italic;
  color: var(--color-wood-light);
}

.dwl-hero__sub {
  color: #ffffff;
  font-size: 1rem;
  max-width: 500px;
  margin-top: 0;
  margin-bottom: 0;
}

.dwl-hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

button.dwl-btn {
  -webkit-appearance: none;
  appearance: none;
}

.dwl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 2px solid transparent;
}

.dwl-btn:hover {
  transform: translateY(-2px);
}

.dwl-btn:active {
  transform: translateY(0);
}

.dwl-btn--primary {
  background: var(--color-wood);
  color: var(--color-white);
}
.dwl-btn--primary:hover {
  background: var(--color-wood-light);
  box-shadow: 0 8px 20px rgba(139, 90, 43, 0.35);
}

.dwl-btn--outline {
  background: var(--color-wood);
  color: var(--color-white);
  border-color: var(--color-wood);
}
.dwl-btn--outline:hover {
  background: var(--color-wood-light);
  border-color: var(--color-wood-light);
  box-shadow: 0 8px 20px rgba(139, 90, 43, 0.35);
}

/* Liczniki */
.dwl-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.dwl-stat {
  padding: 1.5rem 2rem 1.5rem 0;
  position: relative;
  text-align: center;
}

.dwl-stat:last-child { border-right: none; }

.dwl-stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.dwl-stat__suffix {
  font-size: 1.2rem;
  color: var(--color-wood-on-dark);
}

.dwl-stat__label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
  line-height: 1.3;
}

.dwl-stat__icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

/* ===================================
   SECTION: O NAS
=================================== */
.dwl-about {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.dwl-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.dwl-about__img-wrap {
  position: relative;
}

.dwl-about__img-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: block;
}

.dwl-about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #3d6b3f 60%, var(--color-wood) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  position: relative;
}

/* Zastępnik dla prawdziwego zdjęcia */
.dwl-about__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Crect fill='%232C4A2E' width='400' height='300'/%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-size='80' fill='rgba(255,255,255,0.15)'%3E🌲%3C/text%3E%3Ctext x='50%25' y='75%25' dominant-baseline='middle' text-anchor='middle' font-size='14' fill='rgba(255,255,255,0.4)' font-family='Arial'%3EWstaw zdjęcie domów%3C/text%3E%3C/svg%3E") center/cover;
}

.dwl-about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-wood);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(139,94,60,0.35);
}

.dwl-about__badge-year {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.dwl-about__badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 0.15rem;
}

.dwl-about__info-bar {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-mid);
  border-left: 3px solid var(--color-wood);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  color: #646464;
  line-height: 1.6;
}

.dwl-about__cta {
  margin-top: 24px;
}

/* ===================================
   SECTION: DOMY
=================================== */
.dwl-houses {
  background: var(--color-bg-mid);
}

.dwl-houses__hero {
  background-color: var(--color-bg-dark);
  position: relative;
  padding: 80px 0;
}

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

.dwl-houses__header {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.dwl-houses__header .section-label {
  color: var(--color-wood-on-dark);
}

.dwl-houses__header h2 {
  color: #fff;
}

.dwl-houses__header p {
  color: rgba(255,255,255,.8);
  margin-bottom: 0;
}

.dwl-houses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 80px 0;
}

.dwl-house-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.dwl-house-card:hover .dwl-house-card__img img {
  transform: scale(1.04);
}

.dwl-house-card__img img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.dwl-house-card__img {
  height: 200px;
  background: linear-gradient(160deg, #3d6b3f 0%, #2C4A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.dwl-house-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dwl-house-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-bg-dark);
  margin-bottom: 0.5rem;
}

.dwl-house-card__meta {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.dwl-house-card__meta-item {
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dwl-house-card__meta-icon {
  font-size: 1rem;
}

/* ===================================
   SECTION: WYPOSAŻENIE (LISTA)
=================================== */
.dwl-amenities {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.dwl-amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.dwl-amenities__list {
  display: flex;
  flex-direction: column;
}

.dwl-amenities__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 0.5px solid rgba(44, 74, 46, 0.15);
  font-size: 0.88rem;
  color: var(--color-bg-dark);
  background: none;
  border-radius: 0;
}

.dwl-amenities__item:last-child {
  border-bottom: none;
}

.dwl-amenities__item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* ===================================
   SECTION: ATRAKCJE (SIATKA IKON)
=================================== */
.dwl-attractions {
  padding: var(--section-pad);
  padding-top: calc(100px + 4rem);
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.dwl-hero__wave {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dwl-attractions__wave {
  display: block;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}

.dwl-attractions__text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.8);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.dwl-attractions__text--przed {
  margin-bottom: 2.5rem;
}

.dwl-attractions__text--po {
  margin-top: 2.5rem;
}

.dwl-attractions__text p {
  color: rgba(255,255,255,.8);
}

.dwl-attractions__text strong {
  color: var(--color-white);
  font-weight: 700;
}

.dwl-attractions__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.dwl-attractions__header h2 {
  color: var(--color-white);
}

.dwl-attractions__header .section-label {
  color: var(--color-wood-on-dark);
}

.dwl-attractions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dwl-attraction-item {
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: default;
  background: none;
  border: none;
}

.dwl-attraction-item:hover .dwl-attraction-item__icon {
  transform: translateY(-4px);
}

.dwl-attraction-item__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.dwl-attraction-item__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

/* ===================================
   SECTION: WYŻYWIENIE
=================================== */
.dwl-food {
  padding: var(--section-pad);
  background: var(--color-bg-mid);
}

.dwl-food__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dwl-food__highlights {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.dwl-food__highlight {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dwl-food__highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.dwl-food__highlight-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-bg-dark);
  margin-bottom: 0.25rem;
}

.dwl-food__highlight p {
  font-size: 0.875rem;
  margin: 0;
}

.dwl-food__opis {
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.dwl-food__opis p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.dwl-food__opis ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.dwl-food__opis li {
  display: flex;
  gap: .6rem;
  align-items: baseline;
  margin-bottom: 0.3rem;
}

.dwl-food__opis li::before {
  content: '✦';
  color: var(--color-wood);
  font-size: .85rem;
  flex-shrink: 0;
  line-height: 1.8;
}

/* ===================================
   SECTION: OPINIE
=================================== */
/* ===================================
   CENNIK
=================================== */
.dwl-pricing {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.dwl-pricing__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.dwl-pricing__header {
  text-align: center;
  margin-bottom: 3rem;
}

.dwl-pricing__header h2 {
  color: var(--color-white);
  margin-top: 0.5rem;
}

.dwl-pricing__header .section-label {
  color: var(--color-wood-on-dark);
}

.dwl-pricing__header p {
  color: rgba(255, 255, 255, .8);
  max-width: 500px;
  margin: 0.75rem auto 0;
}

.dwl-pricing__table {
  max-width: 700px;
  margin: 2rem auto 0;
}

.dwl-pricing__box {
  border: 1px solid var(--color-wood);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dwl-pricing__head {
  display: flex;
  background: var(--color-wood);
  padding: 14px 32px;
}

.dwl-pricing__body {
  /* rows inside */
}

.dwl-pricing__row {
  display: flex;
  padding: 14px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.dwl-pricing__row:hover {
  background: rgba(255,255,255,0.04);
}

.dwl-pricing__foot {
  background: var(--color-wood);
  height: 48px;
}

.dwl-pricing__col {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  width: 110px;
  flex-shrink: 0;
}

.dwl-pricing__col--main {
  flex: 1;
  width: auto;
}

.dwl-pricing__col--label {
  flex: 1;
  width: auto;
  color: var(--color-white);
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.dwl-pricing__col--price {
  width: 110px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
}

/* DOM 1 / DOM 2: nagłówki i ceny wyrównane do prawej */
.dwl-pricing__col:not(.dwl-pricing__col--main) {
  text-align: right;
}

.dwl-pricing__note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.6;
}

.dwl-pricing__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.dwl-reviews {
  padding: var(--section-pad);
  background: var(--color-bg);
}

.dwl-reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.dwl-review-card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: relative;
}

.dwl-review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.dwl-review-card__text--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dwl-review-card__readmore {
  display: none; /* pokazywany przez JS tylko gdy tekst jest ucięty */
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  cursor: pointer;
  margin-bottom: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dwl-review-card__readmore:hover { color: var(--color-wood); }

.dwl-review-card__stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.dwl-review-card__author {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-bg-dark);
  font-size: 0.95rem;
}

/* ===================================
   SECTION: GOOGLE REVIEWS
=================================== */
.dwl-greviews__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.dwl-greviews__summary-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dwl-greviews__glogo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.dwl-greviews__rating-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dwl-greviews__rating-num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-bg-dark);
  line-height: 1;
}

.dwl-greviews__rating-stars {
  color: #FBBC05;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.dwl-greviews__rating-count {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

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

.dwl-greviews__card {
  display: flex;
  flex-direction: column;
}

.dwl-greviews__card::before {
  display: none; /* wyłączamy cudzysłów z dwl-review-card */
}

.dwl-greviews__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dwl-greviews__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.dwl-greviews__avatar--ai {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-dark), #4a7c4e);
  color: var(--color-gold);
  font-size: 1.2rem;
}

.dwl-greviews__card--ai {
  background: linear-gradient(135deg, #f7f3ee 0%, #edf4ee 100%);
  border-color: rgba(44, 74, 46, 0.15);
}

.dwl-greviews__ai-badge {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bg-dark);
  opacity: 0.5;
}

.dwl-greviews__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-dark);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.dwl-greviews__card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dwl-greviews__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-bg-dark);
  text-decoration: none;
}
.dwl-greviews__author:hover { text-decoration: underline; }

.dwl-greviews__ago {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.dwl-greviews__stars {
  color: #FBBC05;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.dwl-greviews__card-glogo {
  width: 54px;
  height: auto;
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .dwl-greviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .dwl-greviews__grid { grid-template-columns: 1fr; }
  .dwl-greviews__summary { flex-direction: column; align-items: flex-start; margin-bottom: 24px; }
  .dwl-greviews__cta { align-self: center; }
}

/* ===================================
   SECTION: KONTAKT / STOPKA
=================================== */
.dwl-contact {
  padding: var(--section-pad);
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.dwl-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.dwl-contact__grid > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.dwl-contact h2 {
  color: var(--color-white);
  margin-bottom: 0;
}

/* Tytuł formularza — taki sam rozmiar jak h2 "Kontakt" */
.dwl-contact__form-title {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}

/* Ikona SVG Facebooka — wyrównanie z tekstem */
.dwl-contact__info-icon--svg {
  display: flex;
  align-items: center;
  margin-top: 1px;
}

.dwl-contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Grupa: telefony + email + FB — odstęp jak między liniami tekstu */
.dwl-contact__info-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dwl-contact__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* Inline items (email) — ikona wyrównana do centrum tekstu jednolinijkowego */
.dwl-contact__info-item--inline {
  align-items: center;
}

/* Top items (pin, phone) — ikona wyrównana z pierwszą linią tekstu */
.dwl-contact__info-item--top {
  align-items: flex-start;
}
.dwl-contact__info-icon--top {
  margin-top: 0;
  line-height: 1.6;
}

.dwl-contact__info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dwl-contact__info-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.dwl-contact__info-text a {
  color: var(--color-wood-on-dark);
}
.dwl-contact__info-text a:hover {
  color: var(--color-white);
}

/* Mapa */
.dwl-map {
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  min-height: 200px;
  background: rgba(0,0,0,0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dwl-map iframe {
  width: 100%; height: 100%; border: 0;
}

/* Formularz kontaktowy */
.dwl-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.dwl-form > div,
.dwl-form > .dwl-form__row {
  width: 100%;
}

.dwl-form label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  display: block;
}

.dwl-form input,
.dwl-form textarea,
.dwl-form select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--color-white);
  font-family: var(--font-body);
  /* 16px (nie 0.95rem/15.2px) — pod tym progiem iOS Safari/Chrome
     automatycznie przybliża widok po kliknięciu pola (żeby tekst był
     czytelny), co wygląda jak "powiększanie się" pola/zmniejszanie
     paddingu — w rzeczywistości to zoom całego viewportu, nie zmiana
     stylów. 16px jest bezpiecznym minimum, które to wyłącza. */
  font-size: 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  box-shadow: none;
}

.dwl-form input::placeholder,
.dwl-form textarea::placeholder {
  /* 0.65, nie 0.3 — wyliczone tak, by dać ok. 4.5:1 (WCAG AA) na tle inputu
     (rgba(255,255,255,.07) na --color-bg-dark). Realne <label> nad polami
     istnieją niezależnie, więc to poprawka czytelności wizualnej, nie
     jedyne źródło informacji o polu. */
  color: rgba(255,255,255,0.65);
  opacity: 1;
}

.dwl-form input,
.dwl-form textarea {
  color: var(--color-white);
}

.dwl-form input:focus,
.dwl-form textarea:focus,
.dwl-form select:focus {
  border-color: var(--color-wood-light);
  background: rgba(255,255,255,0.1);
  outline: none;
  box-shadow: none;
  color: var(--color-white);
}

.dwl-form textarea {
  min-height: 120px;
  resize: vertical;
}

.dwl-field-error {
  color: #ff9e94; /* czytelne na ciemnym tle formularza (4.97:1), w przeciwieństwie do ciemnoczerwonego z panelu WP */
  font-size: 0.8125rem;
  margin-top: 0.4rem;
}

.dwl-required {
  color: #ff9e94; /* ten sam czytelny czerwony co .dwl-field-error, spójnie na ciemnym tle formularza; 4.97:1 na #2C4A2E */
}

.dwl-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Pola daty — dwie wersje sterowane media query:
   - desktop (>900px): natywny <input type="date"> (.dwl-date-input--native),
     z ukrytą natywną ikoną i naszym emoji zamiast niej — działało to
     poprawnie zawsze na desktopie, problem był tylko na iOS.
   - mobile (<=900px): własny picker w JS na <input type="text" readonly>
     (.dwl-date-input--mobile), patrz main.js — bo natywna kontrolka miała
     tam niedające się opanować problemy z renderowaniem (Chrome/Safari iOS). */
.dwl-date-wrap {
  position: relative;
}
.dwl-date-input {
  cursor: pointer;
  padding-right: 40px;
  width: 100%;
}
/* Szary kolor tekstu (dd.mm.rrrr) przed wybraniem daty */
.dwl-date-input.dwl-date-empty {
  color: rgba(255,255,255,0.35);
}
.dwl-date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  line-height: 1;
  pointer-events: none;
  opacity: 0.6;
}
.dwl-date-wrap:focus-within .dwl-date-icon {
  opacity: 1;
}

/* Desktop: natywny input widoczny, wersja mobile schowana */
.dwl-date-input--mobile {
  display: none;
}
.dwl-date-input--native {
  color-scheme: dark;
}
/* Ukryj natywną ikonę na desktopie — zastąpiona przez .dwl-date-icon (emoji) */
.dwl-date-input--native::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 32px;
  cursor: pointer;
}

@media (max-width: 900px) {
  /* Mobile: odwrotnie — własny picker widoczny, natywny input schowany
     (ale wciąż w DOM, żeby name="dwl_checkin" nadal wysyłał wartość —
     picker w JS wpisuje wartość właśnie do NIEGO, patrz main.js) */
  .dwl-date-input--native {
    display: none;
  }
  .dwl-date-input--mobile {
    display: block;
  }
}

/* Popover kalendarza (tylko mobile — patrz main.js initDatePicker) */
.dwl-date-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 280px;
  max-width: calc(100vw - 48px);
  background: var(--color-bg-dark);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  padding: 14px;
}
.dwl-date-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dwl-date-popover__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-white);
  text-transform: capitalize;
}
.dwl-date-popover__nav {
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 6px;
  color: var(--color-white);
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}
.dwl-date-popover__nav:active {
  background: rgba(255,255,255,0.18);
}
.dwl-date-popover__daynames,
.dwl-date-popover__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}
.dwl-date-popover__daynames span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  padding-bottom: 6px;
}
.dwl-date-popover__day {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 0.82rem;
  padding: 7px 0;
  border-radius: 6px;
  cursor: pointer;
}
.dwl-date-popover__day:active {
  background: rgba(255,255,255,0.15);
}
.dwl-date-popover__day--disabled {
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
}
.dwl-date-popover__day--today {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}
.dwl-date-popover__day--selected {
  background: var(--color-wood);
  font-weight: 700;
}

/* Select — liczba osób nie ucina się */
.dwl-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: auto;
  min-height: 46px;
  line-height: 1.4;
}

/* Honeypot — niewidoczny dla ludzi, boty go wypełniają */
.dwl-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Przycisk Wyślij — pełna szerokość jak np. "Poznaj nas" */


/* Dane do przelewu */
.dwl-przelew {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dwl-przelew__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}

.dwl-przelew__rows {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.dwl-przelew__row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  line-height: 1.4;
}

.dwl-przelew__key {
  color: rgba(255,255,255,.65);
  width: 80px;
  min-width: 80px;
  flex-shrink: 0;
}

.dwl-przelew__val {
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.dwl-przelew__note {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  font-style: italic;
}

.dwl-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  font-size: .85rem;
  opacity: .5;
  transition: opacity .2s, transform .15s;
  line-height: 1;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: .35rem;
}
.dwl-copy-btn:hover { opacity: 1; }
.dwl-copy-btn.copied {
  opacity: 1;
  transform: scale(1.2);
}

/* ===================================
   FOOTER
=================================== */
.dwl-footer {
  background: #1a2e1b;
  padding: 1.5rem 0;
  text-align: center;
}

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

.dwl-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .dwl-footer__nav {
    gap: 0.75rem 1.25rem;
  }
}

.dwl-footer__nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.dwl-footer__nav a:hover {
  color: var(--color-wood-light);
}

/* ===================================
   SEPARATOR DEKORACYJNY
=================================== */
.dwl-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.dwl-divider::before,
.dwl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.dwl-divider--light::before,
.dwl-divider--light::after {
  background: rgba(255,255,255,0.1);
}

.dwl-divider span {
  font-size: 1.2rem;
  color: var(--color-wood);
}

/* ===================================
   ANIMACJE (scroll reveal)
=================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 900px) {
  :root { --section-pad: 60px 0; }

  .dwl-houses__hero { padding: 60px 0; }

  .dwl-nav__menu { display: none; }
  .dwl-nav__burger { display: flex; }

  /* Hero — jedna kolumna na mobile */
  .dwl-hero__inner {
    grid-template-columns: 1fr;
    row-gap: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .dwl-hero__image {
    grid-column: 1;
    grid-row: auto;
    max-width: 400px;
    margin: 24px auto 0;
  }
  .dwl-hero__stats {
    grid-column: 1;
  }

  .dwl-hero__actions {
    justify-content: center;
  }

  .dwl-nav__menu.open {
    display: flex;
    flex-direction: column;
    height: auto;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--color-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 1rem;
  }

  .dwl-hero__stats {
    grid-template-columns: 1fr 1fr;
    /* 44px + 16px (padding-top własny .dwl-stat, patrz niżej) = 60px
       łącznego odstępu między dołem zdjęcia hero a ikoną licznika */
    padding-top: 44px;
    /* padding-bottom: 0 — odstęp do sekcji "O nas" zapewnia
       .dwl-hero__inner { padding-bottom: 60px } */
    padding-bottom: 0;
  }

  .dwl-hero__wave,
  .dwl-attractions__wave {
    display: none;
  }

  .dwl-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1rem;
  }

  .dwl-stat:nth-child(odd) {
    border-right: none;
  }

  .dwl-about__grid,
  .dwl-amenities__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dwl-food__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dwl-food__highlights {
    margin-top: 24px;
  }

  .dwl-contact__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .dwl-food__highlights {
    gap: 24px;
  }

  .dwl-pricing__table + .dwl-pricing__table {
    margin-top: 24px;
  }

  .dwl-pricing__cta {
    margin-top: 24px;
  }

  .dwl-about__cta {
    text-align: center;
  }

  .dwl-about__info-bar {
    margin-top: 24px;
  }

  .dwl-houses__grid {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .dwl-attractions {
    padding-top: 60px;
  }

  .dwl-attractions__header {
    margin-bottom: 24px;
  }

  .dwl-attractions__text--po {
    margin-top: 24px;
  }

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

  .dwl-reviews__slider {
    grid-template-columns: 1fr;
  }

  .dwl-about__badge {
    bottom: -10px;
    right: 10px;
    width: 90px; height: 90px;
  }

  .dwl-about__badge-year { font-size: 1.4rem; }

  .dwl-form__row {
    grid-template-columns: 1fr;
  }

  #dwl_submit_btn {
    align-self: center;
  }

  .dwl-pricing__head,
  .dwl-pricing__row {
    padding: 14px 16px;
  }

  .dwl-pricing__col--main {
    min-width: 0;
  }

  .dwl-pricing__col:not(.dwl-pricing__col--main) {
    width: 84px;
  }
}

@media (max-width: 480px) {
  .dwl-hero__stats {
    grid-template-columns: 1fr;
  }

  .dwl-stat {
    border-right: none !important;
  }

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

}

/* ===================================
   UTILITIES
=================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════
   STRONA DOSTĘPNOŚCI — dwl-availability
   ═══════════════════════════════════════════════════════ */

/* Wyłącz header/footer Astry na stronach z własnym szablonem (Dostępność, Galeria) */
body.page-template-page-dostepnosc .ast-above-header-bar,
body.page-template-page-dostepnosc .ast-header-break-point,
body.page-template-page-dostepnosc #masthead,
body.page-template-page-dostepnosc .ast-above-header,
body.page-template-page-dostepnosc #colophon,
body.page-template-page-dostepnosc .ast-breadcrumbs-wrapper,
body.page-template-page-dostepnosc .post-navigation,
body.page-template-page-galeria .ast-above-header-bar,
body.page-template-page-galeria .ast-header-break-point,
body.page-template-page-galeria #masthead,
body.page-template-page-galeria .ast-above-header,
body.page-template-page-galeria #colophon,
body.page-template-page-galeria .ast-breadcrumbs-wrapper,
body.page-template-page-galeria .post-navigation {
    display: none !important;
}

body.page-template-page-dostepnosc .site-content,
body.page-template-page-dostepnosc .ast-article-single,
body.page-template-page-dostepnosc .entry-content,
body.page-template-page-dostepnosc #page,
body.page-template-page-galeria .site-content,
body.page-template-page-galeria .ast-article-single,
body.page-template-page-galeria .entry-content,
body.page-template-page-galeria #page {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Sekcja kalendarza */
.dwl-availability {
    padding: 145px 0 80px;
    background: var(--color-cream, #F5F0E8);
}

@media (max-width: 900px) {
  .dwl-availability {
    padding: 125px 0 60px;
  }
}

.dwl-availability__header {
    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
  .dwl-availability__header {
    margin-bottom: 24px;
  }
}

.dwl-availability__header h1 {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-green, #2C4A2E);
    margin: 8px 0 16px;
}

.dwl-availability__header p {
    color: var(--color-text-light);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ===================================
   WIDGET POGODY
=================================== */
.dwl-weather {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: var(--color-white);
  font-family: var(--font-body);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  position: relative;
}

.dwl-weather__header {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.dwl-weather__body {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.dwl-weather__now {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  gap: .15rem;
}

.dwl-weather__location {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .25rem;
}

.dwl-weather__icon-big {
  font-size: 2.5rem;
  line-height: 1;
}

.dwl-weather__temp-big {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-top: .25rem;
}

.dwl-weather__desc {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  text-align: center;
}

.dwl-weather__days {
  display: flex;
  gap: .5rem;
  flex: 1;
  justify-content: space-between;
}

.dwl-weather__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .5rem .4rem;
  border-radius: 8px;
  min-width: 40px;
  transition: background .2s;
}

.dwl-weather__day--today {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

.dwl-weather__dow {
  font-size: .7rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  letter-spacing: .03em;
}

.dwl-weather__day-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.dwl-weather__day-max {
  font-size: .85rem;
  font-weight: 700;
  color: #ffb399;
}

.dwl-weather__day-min {
  font-size: .75rem;
  color: #a0c4e0;
}

.dwl-weather__source {
  margin-top: .75rem;
  font-size: .65rem;
  color: rgba(255,255,255,.65);
  text-align: right;
}

.dwl-weather__source a {
  color: rgba(255,255,255,.65);
}

@media (max-width: 600px) {
  .dwl-weather__body { flex-direction: column; align-items: flex-start; }
  .dwl-weather__days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    flex-wrap: unset;
  }
}

.dwl-weather-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.dwl-weather-wrap .dwl-weather {
  flex: 1;
}

/* ===================================
   SCROLL TO TOP — przycisk powrotu na górę
=================================== */
.dwl-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-wood);
  color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease;
  z-index: 999;
}

.dwl-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dwl-scroll-top:hover {
  background: var(--color-wood-light);
}

@media (max-width: 600px) {
  .dwl-scroll-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

/* Toast — komunikat formularza kontaktowego (i inne, jeśli kiedyś potrzebne) */
.dwl-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--color-bg-dark);
  color: var(--color-white);
  border-left: 4px solid var(--color-wood-light);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.9375rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: min(360px, calc(100vw - 48px));
}
.dwl-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .dwl-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
