:root {
  --ink: #17211d;
  --muted: #58665f;
  --bg: #f7f3ea;
  --panel: #fffdf8;
  --line: rgba(23, 33, 29, 0.13);
  --forest: #1f2924;
  --forest-2: #2d4037;
  --pine: #3f604f;
  --amber: #c98231;
  --amber-dark: #9e5f20;
  --ice: #e8f2f1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 27, 23, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 30;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(23, 33, 29, 0.66);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.topbar,
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 22px;
}

.topbar {
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.topbar a,
.contact-links a,
.location-facts div,
.feature-list div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.topbar svg,
.contact-links svg,
.location-facts svg,
.feature-list svg,
.button svg,
.nav-cta svg,
.sticky-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.nav {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand img {
  width: 96px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.nav-links {
  justify-self: end;
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 15px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--white);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 27, 23, 0.84), rgba(18, 27, 23, 0.48) 48%, rgba(18, 27, 23, 0.12)),
    linear-gradient(0deg, rgba(18, 27, 23, 0.76), rgba(18, 27, 23, 0.1) 48%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 54px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: inherit;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.06;
  font-weight: 850;
  letter-spacing: 0;
}

h2 {
  font-family: inherit;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-copy {
  max-width: 690px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 19px;
  min-height: 52px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--amber);
  color: var(--white);
}

.button-primary:hover {
  background: var(--amber-dark);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-secondary {
  background: var(--forest);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 960px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip span {
  padding: 18px 14px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip span:last-child {
  border-right: 0;
}

.booking-panel {
  width: min(var(--max), calc(100% - 44px));
  margin: -30px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 26px;
  align-items: end;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  font-size: 31px;
  margin-bottom: 0;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.booking-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
}

.booking-actions p {
  margin: 0;
  color: var(--muted);
}

label span {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 850;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(201, 130, 49, 0.16);
}

.section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 64px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.section-copy p,
.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-list div,
.location-facts div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.feature-list svg,
.location-facts svg {
  color: var(--amber);
}

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

.lodge-card {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(23, 33, 29, 0.1);
  border: 1px solid var(--line);
}

.lodge-card:first-child {
  grid-column: span 2;
}

.lodge-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lodge-card:first-child img {
  height: 330px;
}

.lodge-card div {
  padding: 18px;
}

.lodge-card p,
.price-card p,
.amenities p,
.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.dark-band {
  width: 100%;
  max-width: none;
  background: var(--forest);
  color: var(--white);
  padding-inline: max(22px, calc((100% - var(--max)) / 2));
}

.dark-band .section-head p,
.dark-band .amenities p {
  color: rgba(255, 255, 255, 0.72);
}

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

.amenities article {
  min-height: 244px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.amenities svg {
  width: 34px;
  height: 34px;
  color: var(--amber);
  margin-bottom: 22px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

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

.season-table {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(23, 33, 29, 0.08);
}

.season-table.highlighted {
  grid-column: 1 / -1;
}

.season-heading {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  background: var(--forest-2);
  color: var(--white);
}

.season-heading span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.season-heading strong {
  font-size: 18px;
  line-height: 1.35;
}

.season-table dl {
  margin: 0;
}

.season-table dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
}

.season-table dt,
.season-table dd {
  margin: 0;
}

.season-table dt {
  color: var(--muted);
}

.season-table dd {
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}

.price-notes {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.price-notes li {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 230px;
}

.price-card span {
  color: var(--amber);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 26px;
  margin-top: 16px;
}

.price-card.highlighted {
  background: var(--forest-2);
  color: var(--white);
  border-color: transparent;
}

.price-card.highlighted p {
  color: rgba(255, 255, 255, 0.74);
}

.notes {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.notes p {
  margin: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-section {
  padding-bottom: 22px;
}

.gallery-section {
  padding-top: 34px;
  padding-bottom: 22px;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 12px;
  align-items: center;
}

.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 220px);
  grid-auto-columns: minmax(260px, 330px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}

.carousel-button {
  width: 48px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-button:hover {
  background: var(--forest-2);
}

.carousel-button svg {
  width: 24px;
  height: 24px;
}

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--forest);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.location {
  padding-top: 34px;
  padding-bottom: 22px;
  align-items: stretch;
}

.location-facts {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.map-card {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--panel);
}

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

.faq-section {
  padding-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 19px;
}

details p {
  padding-top: 14px;
}

.contact-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(31, 41, 36, 0.94), rgba(31, 41, 36, 0.82)),
    url("https://ski-house.pl/static/b24/2015/02/ac382f7e337573247fdf77cdbf213726.jpg") center/cover;
  padding-inline: max(22px, calc((100% - var(--max)) / 2));
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  background: rgba(255, 253, 248, 0.96);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-links a {
  padding: 13px 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-summary {
  display: grid;
  gap: 14px;
}

.contact-summary div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-summary svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
  grid-row: span 2;
  margin-top: 2px;
}

.contact-summary strong {
  line-height: 1.2;
}

.contact-summary span {
  color: var(--muted);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkbox span {
  margin: 0;
  font-weight: 650;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 34px max(22px, calc((100% - var(--max)) / 2));
  background: #121a17;
  color: rgba(255, 255, 255, 0.78);
}

.footer strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.footer a {
  display: block;
  text-align: right;
  margin-bottom: 8px;
  color: var(--white);
}

.fineprint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 18;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  width: min(420px, calc(100% - 24px));
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.sticky-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 54px;
  color: var(--white);
  font-weight: 850;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-cta a:last-child {
  border-right: 0;
}

.lightbox {
  width: min(980px, calc(100% - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(10, 14, 12, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  background: #0f1714;
}

.lightbox button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 1050px) {
  .booking-panel,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .booking-actions,
  .price-grid,
  .price-list,
  .amenities,
  .notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-actions p {
    grid-column: 1 / -1;
  }

  .price-card {
    min-height: 190px;
  }

  .nav {
    grid-template-columns: auto auto auto;
  }

  .nav-links {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 86px;
    display: none;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0;
    padding: 10px;
    background: var(--forest);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 10px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .nav {
    min-height: 58px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 92px;
  }

  .brand span,
  .nav-cta {
    display: none;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 27, 23, 0.88), rgba(18, 27, 23, 0.22) 55%),
      linear-gradient(90deg, rgba(18, 27, 23, 0.62), rgba(18, 27, 23, 0.1));
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .trust-strip span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .booking-panel,
  .section {
    width: min(100% - 32px, var(--max));
  }

  .booking-panel {
    margin-top: 0;
    padding: 20px;
  }

  .booking-form,
  .booking-actions,
  .price-grid,
  .price-list,
  .price-notes,
  .amenities,
  .notes,
  .showcase-grid,
  .gallery,
  .footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .price-section {
    padding-bottom: 8px;
  }

  .gallery-section,
  .location {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .faq-section {
    padding-top: 8px;
  }

  .dark-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lodge-card:first-child,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .lodge-card img,
  .lodge-card:first-child img,
  .gallery {
    grid-template-rows: repeat(2, 190px);
    grid-auto-columns: minmax(230px, 82vw);
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .map-card {
    min-height: 380px;
  }

  .contact-card {
    padding: 22px;
  }

  .footer a {
    text-align: left;
  }

  .sticky-cta {
    display: grid;
  }

  body {
    padding-bottom: 66px;
  }
}

@media (max-width: 900px) {
  .booking-panel {
    margin-bottom: 8px !important;
  }

  #domy {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }

  .dark-band {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .price-section {
    padding-top: 18px !important;
  }

  .price-section {
    padding-bottom: 8px !important;
  }

  .gallery-section {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .location {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .faq-section {
    padding-top: 8px !important;
  }
}

#domy {
  padding-top: 32px !important;
}

.dark-band {
  padding-bottom: 34px !important;
}

.price-section {
  padding-top: 28px !important;
}
