:root {
  --bg: #F2F0EB;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #6B6B6B;
  --accent: #384133;
  --accent-hover: #2a3227;
  --accent-brown: #59381C;
  --soft: #E5CCC1;
  --highlight: #C4A96A;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --section-pad: 120px;
  --section-pad-sm: 72px;
  --container-max: 1200px;
  --container-pad: 24px;
}

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

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

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

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

ul, ol { list-style: none; }

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

h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 1px;
  line-height: 1.1;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.3px;
}

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

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


/* ========== SKIP LINK ========== */

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

.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--bg);
  color: var(--text);
  z-index: 9999;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/* ========== HEADER ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.nav-scrolled {
  background: var(--bg);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

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

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  transition: color 0.3s;
}

.nav-scrolled .brand-name { color: var(--text); }

.brand-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}

.nav-scrolled .brand-sub { color: var(--text-secondary); }

.primary-nav ul {
  display: flex;
  gap: 32px;
}

.primary-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}

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

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
  margin: 5px 0;
}

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


/* ========== MOBILE PANEL ========== */

.mobile-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 1001;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 96px 32px 48px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

.mobile-panel.is-open { right: 0; }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
  padding: 8px;
}

.mobile-panel nav ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-panel nav a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text);
  transition: color 0.2s;
}

.mobile-panel nav a:hover { color: var(--accent); }

.mobile-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-contact a {
  font-size: 15px;
  color: var(--text-secondary);
}

.mobile-contact .btn { text-align: center; }


/* ========== BUTTONS ========== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover,
.btn.btn--primary:hover {
  background: var(--accent-hover);
}

.btn-primary:focus-visible,
.btn.btn--primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--accent-brown);
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
}

.btn-ghost:hover { text-decoration: underline; }

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

.btn-light:hover,
.btn.btn--light:hover {
  background: rgba(255,255,255,0.88);
}

.btn-outline-white {
  display: inline-block;
  color: white;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn--submit { margin-top: 8px; }


/* ========== HERO (homepage) ========== */

.hero {
  height: 100vh;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('./images/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.5));
}

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

.hero-title {
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.8;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 22px);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-top: 20px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: hero-bounce 2s infinite;
  color: white;
  opacity: 0.7;
  z-index: 1;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ========== SOCIAL PROOF ========== */

.social-proof {
  background: var(--bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--soft);
}

.social-proof-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: var(--highlight);
}

.rating-source {
  font-size: 14px;
  color: var(--text-secondary);
}


/* ========== INTRO ========== */

.intro {
  padding: var(--section-pad) 0;
}

.intro-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 var(--container-pad);
}

.intro-image img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-text h2 { margin-bottom: 20px; }

.intro-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}


/* ========== SECTION HEADER (shared) ========== */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 12px; }

.section-lead {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
}


/* ========== ROOMS ========== */

.rooms {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.rooms-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.room-card-media img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.room-card-body {
  padding: 28px;
}

.room-card-body h3 {
  margin-bottom: 8px;
}

.room-meta {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.room-price {
  font-weight: 500;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 16px;
}


/* ========== GARDEN ========== */

.garden { padding: 0; }

.garden-banner {
  position: relative;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
}

.garden-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.garden-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.5));
  display: flex;
  align-items: flex-end;
  padding: 56px;
}

.garden-banner-overlay h2 {
  color: white;
  max-width: 600px;
}

.amenities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px var(--container-pad);
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.amenity svg {
  color: var(--accent);
}

.amenity > span {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* ========== REVIEWS ========== */

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

.reviews-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

figure.review {
  position: relative;
  padding-top: 32px;
}

.review-mark {
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--soft);
  line-height: 1;
  position: absolute;
  top: -8px;
  left: 0;
}

figure.review blockquote {
  margin: 0;
}

figure.review blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 16px;
}

figure.review figcaption {
  font-size: 14px;
  color: var(--text-secondary);
}


/* ========== SURROUNDINGS ========== */

.surroundings {
  padding: var(--section-pad) 0;
}

.surroundings-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

.surrounding-tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.surrounding-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.surrounding-tile:hover img {
  transform: scale(1.04);
}

.tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.surroundings-cta {
  text-align: center;
  margin-top: 40px;
}


/* ========== CUISINE ========== */

.cuisine {
  background: var(--accent);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cuisine-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.cuisine-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--highlight);
  margin: 24px auto;
}

.cuisine h2 {
  color: white;
  margin-bottom: 16px;
}

.cuisine p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}


/* ========== CTA BAND (shared: index, cenik) ========== */

.cta-band {
  background: var(--accent);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-band__heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  color: white;
  margin-bottom: 12px;
}

.cta-band__sub {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band__phone {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 32px);
  color: white;
  transition: opacity 0.2s;
  font-variant-numeric: lining-nums;
}

.cta-band__phone:hover { opacity: 0.8; }

.cta-band__email {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cta-band__email:hover { color: white; }


/* ========== PAGE HERO (cenik, kontakt) ========== */

.page-hero {
  position: relative;
  height: 40vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 1;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--container-pad);
}

.page-hero__heading {
  color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}


/* ========== ROOM HERO (pokoj.html) ========== */

.room-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
}

.room-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.55));
  display: flex;
  align-items: flex-end;
  padding: 48px;
}

.room-hero-overlay h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  color: white;
  line-height: 1.15;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}


/* ========== ROOM DETAIL (pokoj.html) ========== */

.room-info-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.room-details h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}

.room-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 12px;
}

.room-meta-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  padding: 24px;
  background: var(--card);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.amenity-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
  text-align: center;
}

.kitchenette-note {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 16px 20px;
  border-left: 3px solid var(--soft);
  background: var(--card);
  border-radius: 0 4px 4px 0;
  margin-top: 8px;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.room-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.room-gallery img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s;
}

.room-gallery figure:hover img { transform: scale(1.03); }


/* ========== PRICING SECTION (pokoj.html) ========== */

.pricing-section {
  background: var(--card);
  padding: var(--section-pad) 0;
}

.pricing-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.pricing-inner h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 32px;
}


/* ========== PRICING TABLE (shared) ========== */

.pricing-card {
  background: var(--card);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 64px;
}

.pricing-card__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.pricing-table-wrap { overflow-x: auto; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
}

.pricing-table thead { background: var(--accent); color: white; }

.pricing-table th,
.pricing-table td,
.pricing-table__cell {
  padding: 16px 24px;
  text-align: left;
  font-size: 15px;
}

.pricing-table th,
.pricing-table__cell--head {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.pricing-table td {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.015); }

.pricing-table__season { display: block; font-weight: 500; }
.pricing-table__season-dates {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

.pricing-table__room-name { display: block; font-weight: 500; }
.pricing-table__room-meta {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.price-per-person {
  font-weight: 500;
  color: var(--accent);
  font-size: 16px;
  display: block;
}

.price-per-room {
  color: var(--text-secondary);
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

.price-unit { font-size: 13px; font-weight: 400; }

.price-value {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--accent);
  white-space: nowrap;
  font-variant-numeric: lining-nums;
}

.pricing-notes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-note::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--highlight);
  flex-shrink: 0;
  margin-top: 0.55em;
}


/* ========== CTA SECTION (pokoj.html) ========== */

.cta-section {
  background: var(--accent);
  color: white;
  padding: 80px var(--container-pad);
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 32px;
}

.cta-phone {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity 0.2s;
  font-variant-numeric: lining-nums;
}

.cta-phone:hover { opacity: 0.8; }

.cta-email {
  display: inline-block;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 24px;
}

.cta-email:hover { color: white; }

.cta-divider {
  margin: 20px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ========== ADDITIONAL INFO (cenik.html) ========== */

.additional-info {
  padding: var(--section-pad) 0;
}

.additional-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-block {
  background: var(--card);
  padding: 36px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-block__heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
}

.info-list { list-style: none; }

.info-list__item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-list__item:last-child { border-bottom: none; }

.info-list__icon {
  flex-shrink: 0;
  color: var(--accent);
  display: flex;
}


/* ========== STAY RULES (cenik.html) ========== */

.stay-rules {
  padding: 0 0 var(--section-pad);
}

.stay-rules__card {
  background: var(--card);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stay-rules__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 32px;
}

.stay-rules__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.stay-rules__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stay-rules__item:last-child { border-bottom: none; }

.stay-rules__term {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
}

.stay-rules__detail {
  font-size: 15px;
}


/* ========== CONTACT PAGE ========== */

.contact-section {
  padding: var(--section-pad) 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info__heading,
.inquiry-form__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.contact-info__person {
  font-weight: 500;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-info__list { list-style: none; }

.contact-info__item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__label {
  font-size: 14px;
  color: var(--text-secondary);
  min-width: 90px;
  flex-shrink: 0;
}

.contact-info__value {
  color: var(--text);
  transition: color 0.2s;
}

.contact-info__value:hover { color: var(--accent); }

.contact-info__value--large {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--accent);
  font-variant-numeric: lining-nums;
}

.contact-info__value--address { font-style: normal; }


/* ========== FORMS (kontakt.html) ========== */

.inquiry-form-wrap {
  background: var(--card);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
}

.form-field { margin-bottom: 20px; }

.form-row { margin-bottom: 20px; }

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row--2col .form-field { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-required { color: var(--accent); }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56,65,51,0.1);
  outline: none;
}

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

.form-select { cursor: pointer; }

.form-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-bottom: 16px;
}

.form-success {
  padding: 24px;
  background: rgba(56,65,51,0.08);
  border-radius: 4px;
  text-align: center;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.form-success[hidden] { display: none; }


/* ========== DIRECTIONS (kontakt.html) ========== */

.directions-section {
  padding: 0 0 var(--section-pad);
}

.directions-section__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 40px;
  text-align: center;
}

.directions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.directions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.directions-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.directions-item:last-child { border-bottom: none; }

.directions-item__from {
  font-weight: 500;
  margin-bottom: 6px;
}

.directions-item__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.directions-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 4px;
}


/* ========== FOOTER ========== */

.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
  padding: 56px 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand-name { color: white; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }

.footer-contact address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-ico {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.site-footer a {
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}

.site-footer a:hover { color: white; }

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  display: block;
  padding: 4px 0;
  font-size: 15px;
}

.footer-map {
  grid-column: 1 / -1;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border-radius: 4px;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}


/* ========== SCROLL REVEAL ========== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

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

  .contact-layout,
  .room-info-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .additional-info__grid,
  .directions-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --container-pad: 20px;
  }

  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }

  .intro-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .form-row--2col { grid-template-columns: 1fr; }

  .stay-rules__item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .garden-banner { height: 45vh; min-height: 260px; }
  .garden-banner-overlay { padding: 32px; }

  .room-hero-overlay { padding: 32px 20px; }
  .room-info-section { padding: 48px var(--container-pad); gap: 40px; }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 56px;
  }

  .rooms-grid { grid-template-columns: 1fr; }
  .reviews-inner { grid-template-columns: 1fr; }
  .surroundings-grid { grid-template-columns: 1fr; }
  .room-gallery { grid-template-columns: 1fr; }

  .social-proof-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .rating-badge { width: 100%; justify-content: center; }

  .pricing-card { padding: 24px; }
  .pricing-table th,
  .pricing-table td,
  .pricing-table__cell {
    padding: 12px 14px;
    font-size: 14px;
  }

  .stay-rules__card { padding: 28px; }

  .inquiry-form-wrap { padding: 24px; }

  .cta-band { padding: 56px 0; }
  .cta-section { padding: 56px var(--container-pad); }

  .amenities { gap: 24px 32px; padding: 32px var(--container-pad); }
}
