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

:root {
    --dark: #1a1a18;
    --mid: #2e2e2a;
    --cream: #f5f0e8;
    --warm: #e8dfc8;
    --accent: #8b6f47;
    --accent-light: #c4a97a;
    --text: #3a3530;
    --text-light: #7a7268;
    --white: #ffffff;
    --border: rgba(139, 111, 71, 0.2);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

/* ── NAVIGATION ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26, 26, 24, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(196, 169, 122, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-light);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.logo span { color: var(--white); font-weight: 300; }

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s;
}
nav a:hover { color: var(--accent-light); }

.btn-reserve {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-size: 0.75rem !important;
    letter-spacing: 0.15em !important;
    transition: background 0.25s !important;
}
.btn-reserve:hover { background: var(--accent-light) !important; color: var(--dark) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--accent-light);
    display: block;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a18 0%, #2e2e2a 50%, #3d3428 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 70% 40%, rgba(139,111,71,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 70%, rgba(100,80,50,0.12) 0%, transparent 55%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.012) 60px,
        rgba(255,255,255,0.012) 61px
    );
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,24,0.3) 0%, rgba(26,26,24,0.55) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    animation: fadeUp 1.2s ease both;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-light);
    border: 1px solid rgba(196,169,122,0.4);
    padding: 0.35rem 1rem;
    margin-bottom: 1.8rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    padding: 0.9rem 2.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--accent-light); color: var(--dark); transform: translateY(-2px); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(196,169,122,0.4);
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 em { font-style: italic; color: var(--accent); }

/* ── ABOUT ── */
.about { background: var(--cream); }

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

.about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.about-img-wrap {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--mid), var(--accent) 60%, var(--mid));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

.about-img-placeholder img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-wrap::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 60%; height: 60%;
    border: 1px solid var(--border);
    border-radius: 4px;
    z-index: -1;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(139,111,71,0.1); }

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.feature-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}


/* ── WELLNESS ── */
.wellness {
    padding: 100px 20px;
    background: #fcfbf9;
}

.wellness .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 👉 TEXT */
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    color: #c6a16e;
    font-weight: bold;
}

.wellness h2 {
    font-size: 42px;
    margin: 10px 0 20px;
}

.wellness h2 em {
    font-style: normal;
    color: #c6a16e;
}

/* 👉 VIDEO */
.wellness iframe {
    width: 100%;
    height: 500px; /* 🔥 nastav výšku */
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* 👉 GRID */
.wellness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 👉 CARD */
.wellness-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

/* 👉 IMAGE */
.wellness-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 👉 PLACEHOLDER */
.wellness-card-placeholder {
    height: 220px;
    overflow: hidden;
}

/* 👉 HOVER EFEKT */
.wellness-card:hover .wellness-card-img {
    transform: scale(1.1);
}

/* 👉 LABEL */
.wellness-card-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
}

/* 👉 DARK OVERLAY */
.wellness-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* 👉 RESPONSIVE */
@media (max-width: 900px) {
    .wellness-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wellness iframe {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .wellness-grid {
        grid-template-columns: 1fr;
    }

    .wellness iframe {
        height: 250px;
    }
}

/* ── GALERIE ── */
.gallery {
  position: relative;  
  overflow: hidden;
  border-radius: 12px;
  
  /* důležité pro swipe */
  touch-action: pan-y;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.gallery img.active {
  display: block;
}

/* šipky skryté */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* pozice */
.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* hover → zobrazí šipky */
.gallery:hover .arrow {
  opacity: 1;
  pointer-events: auto;
}

/* mobil → úplně schovat */
@media (max-width: 768px) {
  .arrow {
    display: none;
  }
}

/* ── TRIPS ── */
.trips {
  position: relative;  
  overflow: hidden;
  border-radius: 12px;
  background-color: white;

  touch-action: pan-y;

  width: 100%;
  max-width: 100%;
}

/* šipky */
/* šipky skryté */
.arrow {
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 20;
  pointer-events: auto;
}

.trips:hover .arrow,
.trips:focus-within .arrow {
  opacity: 1;
}

/* mobil → schovat šipky */
@media (max-width: 768px) {
  .arrow {
    display: none;
  }
}

/* ── ITEM ── */
.carousel-item {
  display: none;
  position: relative;
  width: 100%;
}

.trips .carousel-item.active {
  display: block;
}

/* 🟢 KLÍČOVÁ ČÁST – obrázek bez ořezu */
.carousel-item img {
  width: 100%;
  height: auto;          /* zachová poměr */
  object-fit: contain;   /* žádné oříznutí */
  display: block;
}

.carousel-content {
  position: absolute;
  bottom: 3%;
  left: 3%;
  right: 3%;
  color: white;
}

/* texty */
.carousel-label {
  display: block;
  font-weight: 700;
  font-size: clamp(10px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.carousel-title {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 3vw, 2.5rem); /* 🔥 hlavní změna */
  font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1.1;
}

.carousel-desc {
  margin: 0;
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.carousel-title a {
    color: inherit;
    text-decoration: none;
}

.carousel-title a:hover {
    text-decoration: underline;
}




/* ── CALENDAR ── */
.calendar-section { background: var(--cream); }

.calendar-wrap {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(26,26,24,0.08);
    max-width: 760px;
    margin: 2.5rem auto 0;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cal-nav {
    background: none;
    border: 1px solid var(--border);
    color: var(--accent);
    width: 36px; height: 36px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
}
.cal-nav:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.cal-month {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day-name {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.cal-day {
    padding: 0.5rem;
    font-size: 0.85rem;
    border-radius: 2px;
    cursor: default;
}

.cal-day.occupied {
    background: rgba(139,111,71,0.15);
    color: var(--accent);
    font-weight: 500;
}

.cal-day.free { color: var(--text); }
.cal-day.empty { opacity: 0; }
.cal-day.today {
    background: var(--accent);
    color: var(--white);
    font-weight: 500;
}

.cal-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-light);
}
.cal-legend span { display: flex; align-items: center; gap: 0.4rem; }
.cal-legend .dot {
    width: 12px; height: 12px;
    border-radius: 2px;
}
.dot-free { background: var(--cream); border: 1px solid var(--border); }
.dot-occ { background: rgba(139,111,71,0.25); }



/* ── VOUCHER ── */
.voucher-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
    position: relative;
    overflow: hidden;
}

.voucher-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196,169,122,0.1);
}

.voucher-section::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(196,169,122,0.08);
}

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

.voucher-section h2 { color: var(--white); }
.voucher-section h2 em { color: var(--accent-light); }
.voucher-section .section-label { color: var(--accent-light); }
.voucher-section p { color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2rem; }

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent-light);
    color: var(--accent-light);
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
    margin-right: 1rem;
}
.btn-outline:hover { background: var(--accent-light); color: var(--dark); }

.voucher-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(196,169,122,0.2);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.voucher-card::before {
    content: '✦';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 1.5rem;
    color: rgba(196,169,122,0.3);
}

.voucher-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.voucher-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.voucher-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

.voucher-dashed {
    border-top: 1px dashed rgba(196,169,122,0.25);
    margin: 1.5rem 0;
}

.voucher-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

/* ── SURROUNDINGS ── */
.surroundings { background: var(--cream); }

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

.surr-card {
    border-radius: 4px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.surr-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(139,111,71,0.1); }

.surr-img {
    height: 200px;
    background: linear-gradient(135deg, #3d3428, #5a4a30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

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

.surr-body { padding: 1.5rem; }
.surr-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.surr-body p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

.surr-text-block {
    max-width: 780px;
    margin: 0 auto;
}

.surr-text-block p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ── CONTACT ── */
.contact { background: var(--dark); }
.contact .section-label { color: var(--accent-light); }
.contact h2 { color: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    margin-top: 3rem;
}

.contact-info h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.contact-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-info a:hover { color: var(--accent-light); }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }

label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

input, textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(196,169,122,0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, textarea:focus { border-color: var(--accent-light); }
textarea { resize: vertical; min-height: 120px; }

.captcha-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.captcha-row label {
    white-space: nowrap;
    color: rgba(255,255,255,0.6);
}

.captcha-row input { max-width: 90px; }

.btn-submit {
    background: var(--accent);
    border: none;
    color: var(--white);
    padding: 0.9rem 2.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit:hover { background: var(--accent-light); color: var(--dark); }

.alert {
    padding: 1rem 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.alert-success { background: rgba(107, 163, 100, 0.15); border: 1px solid rgba(107,163,100,0.3); color: #a5d4a0; }
.alert-error { background: rgba(200, 80, 80, 0.15); border: 1px solid rgba(200,80,80,0.3); color: #e0a0a0; }

/* ── FOOTER ── */
footer {
    background: #111110;
    border-top: 1px solid rgba(196,169,122,0.1);
    padding: 2.5rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--accent-light);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .about-grid, .voucher-inner, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .wellness-grid { grid-template-columns: 1fr 1fr; }
    .wellness-card:first-child { grid-column: span 2; }
    .surr-grid { grid-template-columns: 1fr 1fr; }
    .features-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    nav ul { display: none; }
    nav ul.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(26,26,24,0.98);
        padding: 2rem;
        gap: 1.5rem;
    }
    .hamburger { display: flex; }
    .wellness-grid, .surr-grid { grid-template-columns: 1fr; }
    .wellness-card:first-child { grid-column: span 1; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .features-row { grid-template-columns: 1fr; }
}
