/* ============================================================
   Tatra Cottages — Modern Luxury Chalet
   Paleta: Navy #141616 / Gold #B68D40 / Copper #8E3E2F
   ============================================================ */

/* Google Fonts przeniesione do <head> każdej strony jako <link> (szybciej niż @import) */

/* === ZMIENNE === */
:root {
  --navy:      #141616;   /* header, footer, dark sections */
  --gold:      #B68D40;   /* akcent: ramki, ikony, separatory */
  --gold-pale: #D8CBB3;   /* tekst na ciemnym tle */
  --copper:    #8E3E2F;   /* przyciski, tytuły sekcji, akcenty */
  --text-dark: #2C3333;   /* tekst główny na jasnym tle */
  --white:     #ffffff;
  --parchment: #F0E8D6;   /* tło jasnych sekcji */
  --cream:     #FAF6F0;   /* tło strony */
  --max:       1140px;
}

/* === RESET === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; /* bez niebieskich prostokątów na mobile */
}
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === BASE === */
body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
}

/* === TYPOGRAFIA === */
h1, .hero-title {
  font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
  color: var(--navy);
}
h2, .section-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--copper);
}
h3, h4, .sub-title {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: .06em;
}

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

/* ============================================================
   HEADER — zawsze czarny (--navy)
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

/* Logo: bez outline przy focus / kliknięciu */
.logo { display: flex; align-items: center; }
.logo img { height: 68px; width: auto; }
.logo:focus,
.logo:focus-visible { outline: none; }

/* CTA w headerze */
.nav-cta {
  display: inline-block;
  padding: 9px 20px;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .15s;
  background: var(--copper);
  color: var(--gold-pale);
  white-space: nowrap;
}
.nav-cta:hover { background: #a84a34; }

/* === NAWIGACJA DESKTOP === */
.nav-menu { display: flex; gap: 28px; list-style: none; }
.nav-menu a {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.nav-menu a:hover,
.nav-menu a.active {
  border-color: var(--gold);
  color: var(--gold);
}

/* Facebook */
.nav-fb { display: flex; align-items: center; }
.nav-fb a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  border: 1px solid rgba(182,141,64,.45);
  transition: opacity .15s, background .15s;
}
.nav-fb a:hover { background: #9a7530; opacity: 1; }
.nav-fb svg { fill: var(--navy) !important; }

/* === HAMBURGER — mosiężny, bez domyślnego podświetlenia === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus { outline: none; }
.nav-toggle span {
  display: block; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === MOBILE MENU === */
#mobile-menu {
  display: none; /* zawsze ukryte — skrypt dodaje .open */
  background: var(--navy);
  border-top: 1px solid rgba(182,141,64,.3);
  padding: 16px 0 24px;
}
#mobile-menu.open { display: block; }
#mobile-menu .nav-menu {
  flex-direction: column;
  gap: 0;
  padding: 0 24px;
}
#mobile-menu .nav-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(182,141,64,.2);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--gold-pale);
}
#mobile-menu .nav-fb { padding: 16px 24px 0; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  color: var(--gold-pale);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
  border-top: 2px solid var(--gold);
}
#footer a { color: var(--gold); }
#footer a:hover { color: var(--gold-pale); }

/* ============================================================
   SEKCJE
   ============================================================ */
section { padding: 64px 0; }
section.bg-dark  { background: var(--navy); color: var(--gold-pale); }
section.bg-light { background: var(--parchment); }

/* ============================================================
   HERO (strona główna / domki)
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero img { width: 100%; border-radius: 4px; object-fit: cover; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text p { color: var(--text-dark); line-height: 1.85; margin-bottom: 12px; opacity: .85; }

/* ============================================================
   NAGŁÓWKI SEKCJI
   ============================================================ */
.section-title { margin-bottom: 24px; }
.section-title.centered { text-align: center; }
.section-title::after {
  content: '✦  ✦  ✦';
  display: block;
  font-family: serif;
  font-size: .65rem;
  letter-spacing: .5em;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 400;
}
section.bg-dark .section-title { color: var(--gold-pale); }
section.bg-dark .section-title::after { color: var(--gold); opacity: .7; }

h4.sub-title {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 24px 0 12px;
  color: var(--gold);
}
.dark-text {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.85;
  color: var(--gold-pale);
}

/* ============================================================
   KARTY DOMKÓW
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  box-shadow: 5px 5px 0 rgba(182,141,64,.18);
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 7px 7px 0 rgba(182,141,64,.28);
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--copper);
}
.card-body p { color: var(--text-dark); font-size: .95rem; line-height: 1.75; margin-bottom: 20px; opacity: .85; }

/* Pasek dekoracyjny nad kartą */
.card-folk-top {
  height: 6px;
  background: linear-gradient(90deg,
    var(--navy) 0%,
    var(--copper) 25%,
    var(--gold) 50%,
    var(--copper) 75%,
    var(--navy) 100%);
}

/* ============================================================
   PRZYCISK
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 3px;
  border: 1px solid rgba(182,141,64,.55);
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  box-shadow: 3px 3px 0 rgba(20,22,22,.18);
}
.btn:hover {
  background: #9a7530;
  color: var(--navy);
  box-shadow: 1px 1px 0 rgba(20,22,22,.18);
}
.btn.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn.btn-outline:hover { background: rgba(182,141,64,.12); color: var(--gold); }

/* ============================================================
   SEKCJA DWUKOLUMNOWA
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col img { border-radius: 4px; width: 100%; }
.two-col p { color: var(--text-dark); line-height: 1.85; margin-bottom: 20px; opacity: .85; }

/* ============================================================
   WYPOSAŻENIE (standard / premium)
   ============================================================ */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.content-list { list-style: none; padding-left: 0; line-height: 1.9; }
.content-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.content-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .7rem;
  line-height: 1.9;
}
section.bg-dark .content-list li { color: var(--gold-pale); }
section.bg-dark .content-list li::before { color: var(--gold); }

/* ============================================================
   EXTRAS — 3 kolumny (standard / premium)
   ============================================================ */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.extra-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(182,141,64,.25);
  border-radius: 4px;
  padding: 24px;
}
.extra-box h4 {
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  color: var(--gold);
}
.extra-box p { color: var(--gold-pale); line-height: 1.95; font-size: .96rem; margin-bottom: 12px; }
.resto-list { list-style: none; padding-left: 0; color: var(--gold-pale); line-height: 1.9; margin-top: 8px; }
.resto-list li { padding-left: 18px; position: relative; margin-bottom: 3px; }
.resto-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: .7; }

/* ============================================================
   GALERIA (standard / premium)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery a { display: block; border-radius: 3px; overflow: hidden; border: 1.5px solid rgba(182,141,64,.3); cursor: zoom-in; }
.gallery img { width: 100%; height: 240px; object-fit: cover; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.05); }

/* ── Lightbox ─────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 2px solid rgba(182,141,64,.35);
  border-radius: 2px;
  box-shadow: 0 12px 60px rgba(0,0,0,.8);
  cursor: default;
}
#lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold-pale);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 10px;
  opacity: .75;
  transition: opacity .2s;
}
#lightbox-close:hover { opacity: 1; }

/* ============================================================
   HERO — atrakcje w okolicy
   ============================================================ */
.hero-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: 72px 0 0;
}
.hero-title {
  color: var(--copper);
  margin-bottom: 16px;
}
.hero-subtitle-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--copper), var(--gold), var(--copper), var(--navy));
  margin-bottom: 28px;
  border-radius: 2px;
}
.intro-text { max-width: 820px; color: var(--text-dark); line-height: 1.9; font-size: 1.05rem; opacity: .9; }
.intro-text p { margin-bottom: 18px; }

/* ============================================================
   KARTY ATRAKCJI
   ============================================================ */
.cards-section { background: var(--parchment); padding: 64px 0; }
.cards-section .section-title { margin-bottom: 32px; text-align: center; }
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.attr-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid var(--gold);
  box-shadow: 4px 4px 0 rgba(182,141,64,.2);
  transition: transform .2s, box-shadow .2s;
}
.attr-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(182,141,64,.32);
}
.attr-card img { width: 100%; height: 190px; object-fit: cover; }
.attr-card-body { padding: 14px 16px; border-top: 2px solid rgba(182,141,64,.15); }
.attr-card-body h3 {
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
  color: var(--text-dark);
}
.attr-card-body h3 a { color: var(--copper); text-decoration: underline; }

.closing {
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-top: 36px;
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  opacity: .85;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-hero { background: var(--cream); padding: 56px 0 0; color: var(--text-dark); }
.contact-body { background: var(--parchment); padding: 56px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Lewa kolumna — dane */
.info-box {
  background: var(--navy);
  border-radius: 4px;
  padding: 32px;
  border: 1.5px solid var(--gold);
}
.info-box h2 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.ci-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }

/* Ikony kontaktu: dokładnie 50×50 px kółko, SVG 22px */
.ci-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg { width: 22px; height: 22px; fill: var(--navy); }

.ci-text { color: var(--gold-pale); line-height: 1.65; }
.ci-text a { color: var(--gold); }
.ci-text a:hover { color: var(--gold-pale); }

/* Prawa kolumna — formularz */
.form-box {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  border: 1.5px solid var(--gold);
  box-shadow: 5px 5px 0 rgba(182,141,64,.15);
}
.form-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 8px;
  letter-spacing: .05em;
}
.form-box > p { color: var(--text-dark); font-size: .95rem; margin-bottom: 24px; opacity: .8; }

.bank-box {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1.5px solid rgba(182,141,64,.4);
  border-radius: 4px;
  background: var(--cream);
}
.bank-box h3 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bank-list { margin: 0; padding: 0; }
.bank-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(182,141,64,.2);
}
.bank-row:last-child { border-bottom: none; }
.bank-row dt {
  font-size: .85rem;
  color: var(--text-dark);
  opacity: .65;
  font-weight: 600;
  padding-top: 1px;
}
.bank-row dd {
  font-family: 'Cinzel', Georgia, serif;
  font-size: .95rem;
  color: var(--navy);
  letter-spacing: .03em;
  margin: 0;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(182,141,64,.4);
  border-radius: 3px;
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  background: var(--cream);
  transition: border-color .15s;
  color: var(--text-dark);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(44,51,51,.35); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   FOLK ELEMENTY OZDOBNE
   ============================================================ */

/* Kicker — mała etykieta nad tytułem */
.folk-kicker {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #7a5200;   /* ciemny amber — kontrast 7:1 na białym/kremowym tle (WCAG AA ✓) */
  margin-bottom: 10px;
}

/* Folk-sep — wrapper dla SVG separatora */
.folk-sep { display: block; margin: 16px 0; line-height: 0; }
.folk-sep-center { display: block; margin: 0 auto 24px; line-height: 0; text-align: center; }

/* Sub-title — lewa kreska akcentująca */
h4.sub-title {
  padding-left: 13px;
  border-left: 3px solid var(--copper);
  margin-top: 28px;
}

/* Dark intro — ozdobna ramka na ciemnych sekcjach */
.dark-intro {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(182,141,64,.22);
  border-radius: 4px;
  padding: 32px 40px;
  position: relative;
}
.dark-intro::before {
  content: '✦';
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--navy);
  padding: 0 12px;
  line-height: 1;
}
.dark-intro p { color: var(--gold-pale); line-height: 1.9; }
.dark-intro p + p { margin-top: 16px; }

/* Extra-box head — ikona + tytuł */
.extra-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.extra-box-head h4 { margin: 0; }
.ebi {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(182,141,64,.18);
  border: 1px solid rgba(182,141,64,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

/* Hero folk band — pasek pod sekcją hero */
.folk-hero-band {
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--navy)   0 8px,
    var(--copper) 8px 16px,
    var(--gold)   16px 24px,
    var(--copper) 24px 32px
  );
  opacity: .75;
}

/* ============================================================
   SPA NOTICE
   ============================================================ */
.spa-notice {
  margin: 24px 0 0;
  padding: 16px 24px;
  background: rgba(182,141,64,.08);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  font-family: 'Cinzel', Georgia, serif;
  font-size: .9rem;
  color: var(--copper);
  letter-spacing: .02em;
  line-height: 1.6;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(182,141,64,.25);
}
.faq-item:first-child {
  border-top: 1px solid rgba(182,141,64,.25);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', Georgia, serif;
  font-size: .95rem;
  color: var(--navy);
  text-align: left;
  letter-spacing: .02em;
  transition: color .2s;
}
.faq-q:hover { color: var(--copper); }
.faq-q span {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--copper); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

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

/* Desktop: tylko .nav-menu, mobile menu bezwzględnie ukryte */
@media (min-width: 769px) {
  #mobile-menu { display: none; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  #mobile-menu .nav-menu { display: flex; }
  .nav-fb { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 40px 0; }
  .hero { grid-template-columns: 1fr; gap: 24px; }
  .cards { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 180px; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .bank-row { grid-template-columns: 1fr; gap: 2px; }
  .bank-row dt { opacity: .55; font-size: .8rem; }
  .bank-row dd { font-size: .9rem; word-break: break-all; }
  .hero-section, .cards-section { padding: 40px 0; }
  .contact-hero, .contact-body { padding: 40px 0; }
}

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