/* Grundlegendes Styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
}

/* Fonts */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Header */
header {
  background: #ffffff;
  padding: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 80px;
}

/* NAVBAR */
nav {
  background: #8B150C;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
}

nav a {
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  background: #D4AF37;
  color: #111;
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.burger div {
  width: 25px;
  height: 3px;
  background: white;
  margin: 4px;
}

/* HERO */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-text {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  font-size: 2.5em;
  top: 50%;
  transform: translateY(-50%);
}

/* Sections */
section {
  padding: 4em 2em;
  max-width: 1100px;
  margin: auto;
}

section:nth-of-type(even) {
  background: #f7f7f7;
}

/* Cards (HIGH-END STYLE) */
/* CARDS für Start kompakter */
/* CARDS – kompakt für Startseite */
.card {
  background: white;
  padding: 1em 1.2em;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #8B150C;
  font-family: 'Playfair Display', serif; /* geiler Font */
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
  
  display: flex;
  flex-direction: column;   /* stapelt Inhalte vertikal */
  align-items: center;      /* zentriert horizontal */
  justify-content: center;  /* zentriert vertikal */
  
  min-height: 120px;        /* Höhe für Start + Leistungen */
  font-size: 1.1em;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.card h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.card small {
  display: block;
  font-size: 0.8em;
  color: #555;
  margin-top: 4px;
}

.card .duration {
  font-size: 0.85em;
  color: #333;
  margin-top: 6px;
  font-weight: 500;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5em;
}

/* Button */
.button {
  display: inline-block;
  background: #8B150C;
  color: white;
  padding: 0.9em 1.6em;
  border-radius: 8px;
  margin-top: 1em;
  cursor: pointer;
  transition: 0.3s;
}

.button:hover {
  background: #D4AF37;
  color: #111;
}

/* FLOATING BUTTON (nur Termin) */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #8B150C;
  color: white;
  padding: 15px 20px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
  z-index: 1000;
}

.floating-btn:hover {
  background: #D4AF37;
  color: #111;
}

/* Footer */
/* FOOTER */
.footer {
  background: #111;
  color: white;
  padding: 40px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h4 {
  margin-bottom: 10px;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

.footer p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  color: #888;
}

/* Slider Dots */
.slider-buttons {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.slider-buttons span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: white;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.slider-buttons span.active {
  opacity: 1;
  background: #D4AF37;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #8B150C;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- BOOKING SYSTEM --- */

.booking {
  max-width: 800px;
  margin: auto;
}

.booking-step {
  margin-top: 30px;
}

/* KALENDER GRID */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 15px;
}

@media (max-width: 768px) {

  .calendar-grid {
    gap: 6px;
  }

  .day {
    padding: 14px 0;
    font-size: 16px;
    border-radius: 10px;
  }
}

.calendar-grid.header {
  font-weight: bold;
  margin-bottom: 5px;
}

/* TAG */
.day {
  padding: 12px;
  text-align: center;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  user-select: none;
}

/* HOVER */
.day:hover {
  background: #D4AF37;
  color: #111;
}

/* DISABLED (Sonntag) */
.day.disabled {
  background: #ddd;
  color: #999;
  cursor: not-allowed;
}

input {
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* PROGRESS BAR */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  font-weight: 500;
  position: relative;
}

/* verbindende Linie */
.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 8px 10px;
  color: #999;
  background: white;
  border-radius: 8px;
  font-size: 14px;
}

/* Linie */
.progress-step::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #ddd;
  transform: translateX(-50%);
  z-index: -1;
}

/* AKTIV */
.progress-step.active {
  background: #D4AF37;
  color: #111;
  font-weight: bold;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ABGESCHLOSSEN */
.progress-step.done {
  color: #8B150C;
}

/* STEP ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* LOADING */
.loading {
  text-align: center;
  padding: 30px;
  font-size: 18px;
  color: #555;
}

.spinner {
  border: 4px solid #eee;
  border-top: 4px solid #8B150C;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 15px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .floating-btn {
    padding: 10px 14px;
    font-size: 13px;
    bottom: 15px;
    right: 15px;
    border-radius: 20px;
  }
}

.hero-subtext {
  margin-top: 12px;
  font-size: 0.45em;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

/* --- BEWERTUNGSFORMULAR --- */

.bewertung-form {
  max-width: 650px;
  margin: 30px auto 0;
  background: white;
  padding: 2em;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-left: 4px solid #8B150C;
}

.bewertung-form label {
  display: block;
  margin-top: 16px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

.bewertung-form input,
.bewertung-form select,
.bewertung-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  transition: 0.2s;
}

.bewertung-form input:focus,
.bewertung-form select:focus,
.bewertung-form textarea:focus {
  outline: none;
  border-color: #8B150C;
  box-shadow: 0 0 0 3px rgba(139,21,12,0.12);
}

.bewertung-form textarea {
  resize: vertical;
  min-height: 120px;
}

.bewertung-form .button {
  border: none;
  margin-top: 22px;
  width: 100%;
  font-size: 16px;
}

.hinweis {
  margin-top: 14px;
  color: #666;
  font-size: 14px;
  text-align: center;
}

.stars {
  color: #D4AF37;
  font-size: 1.2em;
  margin-bottom: 8px;
}

.review-cta {
  text-align: center;
  margin: -5px 0 25px;
}

.review-cta .button {
  border: none;
  margin-top: 0;
  padding: 0.65em 1.2em;
  font-size: 14px;
}

.review-summary-inline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6em;
  font-weight: 600;
  color: #666;
  margin-left: 12px;
  white-space: nowrap;
}

.review-summary-inline .stars {
  color: #D4AF37;
}

.reviews-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.reviews-header h2{
  margin: 0;
}

.review-btn{
  margin: 0;
  white-space: nowrap;
}

.field-error {
  color: #8B150C;
  font-size: 14px;
  margin: -4px 0 10px;
  font-weight: 600;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #8B150C;
  box-shadow: 0 0 0 3px rgba(139,21,12,0.12);
}

.review-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.review-popup.hidden {
  display: none;
}

.review-popup-box {
  width: min(420px, 100%);
  background: white;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.review-popup-box h3 {
  margin-top: 0;
  color: #8B150C;
}

.review-popup-box p {
  color: #444;
  line-height: 1.5;
}

.review-popup-box button {
  margin-top: 15px;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: #8B150C;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px){

  .reviews-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .reviews-header h2{
    margin-bottom: 0;
  }

  .review-btn{
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .review-summary-inline{
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }
}

/* Rechtliche Links im Footer */

.footer-legal {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
}

.footer-legal a:hover {
  color: #D4AF37;
}

/* Datenschutzhinweis Checkbox */

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.privacy-check input {
  position: absolute !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0 !important;
}

.privacy-box {
  display: grid;
  place-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #8B150C;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
  transition: background .15s ease, box-shadow .15s ease;
}

.privacy-box::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg) scale(0);
  transition: transform 0.15s ease;
}

.privacy-check input:checked + .privacy-box {
  background: #8B150C;
}

.privacy-check input:checked + .privacy-box::after {
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.privacy-check input:focus-visible + .privacy-box {
  box-shadow: 0 0 0 3px rgba(199,163,90,.45);
}

.privacy-check a {
  color: #8B150C;
  text-decoration: underline;
}

/* Google Maps Zwei-Klick-Lösung */

.map-placeholder {
  min-height: 320px;
  background: #f7f4ef;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
}

.map-placeholder h3 {
  color: #8B150C;
  margin-bottom: 10px;
}

.map-placeholder p {
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-placeholder a {
  color: #8B150C;
  text-decoration: underline;
}

.booking-step .privacy-check {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ===== Präsentations-Redesign 2026 ===== */
:root {
  --wine: #741d1c;
  --wine-dark: #4d1212;
  --gold: #c7a35a;
  --ink: #231f1d;
  --muted: #6f6964;
  --cream: #f7f3ed;
  --paper: #fffdf9;
  --line: rgba(35,31,29,.12);
  --shadow: 0 18px 55px rgba(45,32,26,.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
}
h1,h2,h3,h4 { color: var(--ink); line-height: 1.12; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 0 0 .55em; font-weight: 500; }
p { color: var(--muted); }
a { text-underline-offset: 3px; }

header {
  min-height: 108px;
  justify-content: center;
  padding: 16px 24px;
}
header a { display: inline-flex; }
header img { height: 72px; width: auto; display: block; }

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 64px;
  background: rgba(77,18,18,.97);
  box-shadow: 0 10px 30px rgba(35,12,12,.14);
  backdrop-filter: blur(12px);
}
.nav-links { align-items: center; gap: 4px; }
nav a {
  position: relative;
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .035em;
}
nav a::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px; bottom: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
nav a:hover { background: transparent; color: #fff; }
nav a:hover::after { transform: scaleX(1); }

.hero { height: min(68vh, 680px); min-height: 500px; background: var(--wine-dark); }
.hero img { filter: saturate(.78) contrast(1.03); transform: scale(1.015); }
.hero-overlay { background: linear-gradient(90deg, rgba(27,12,10,.78) 0%, rgba(27,12,10,.45) 55%, rgba(27,12,10,.18) 100%); }
.hero-text {
  position: absolute;
  left: max(7vw, 28px);
  top: 50%;
  width: min(720px, 86vw);
  transform: translateY(-50%);
  text-align: left;
  font-size: 1rem;
}
.hero-text h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  font-weight: 500;
  margin: 10px 0 16px;
  letter-spacing: -.035em;
}
.eyebrow,.section-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-subtext { max-width: 580px; margin: 0; font-size: clamp(1rem, 1.8vw, 1.2rem); line-height: 1.65; color: rgba(255,255,255,.82); letter-spacing: 0; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.hero-actions .button { margin: 0; }
.button-gold { background: var(--gold); color: #21170f; }
.text-link { color: #fff; text-decoration: none; font-weight: 600; }
.text-link span { margin-left: 7px; color: var(--gold); }
.slider-buttons { bottom: 25px; text-align: right; padding-right: 7vw; }
.slider-buttons span { width: 26px; height: 3px; border-radius: 2px; margin: 5px 3px; }
.subpage-hero {
  height: clamp(300px, 38vh, 410px);
  min-height: 300px;
}
.subpage-hero .hero-text { width: min(680px, 86vw); }
.subpage-hero .hero-text h1 {
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  margin-bottom: 13px;
}
.subpage-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(27,12,10,.78), rgba(27,12,10,.35) 70%, rgba(27,12,10,.15));
}

section { max-width: 1180px; padding: 90px 32px; }
section:nth-of-type(even) { background: transparent; }
.intro-section { text-align: center; max-width: 900px; }
.intro-section .lead { max-width: 760px; margin: 0 auto; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.benefits-section { max-width: none; padding-left: max(32px, calc((100vw - 1116px)/2)); padding-right: max(32px, calc((100vw - 1116px)/2)); background: var(--cream) !important; }
.card {
  position: relative;
  min-height: 190px;
  padding: 34px 30px;
  align-items: flex-start;
  text-align: left;
  border: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: none;
  overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--wine); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.card p { font-family: 'Poppins',sans-serif; font-size: .92rem; line-height: 1.65; margin: 0; }
.card-number { color: var(--gold); font-family: 'Playfair Display',serif; font-size: .9rem; margin-bottom: 18px; }
.steps-section { text-align: center; }
.steps-grid { margin: 45px 0 18px; text-align: left; }
.step { display: flex; gap: 20px; padding: 25px 0; border-top: 1px solid var(--line); }
.step strong { color: var(--gold); font-size: .82rem; }
.step h3 { margin: 0 0 7px; font-size: 1.3rem; }
.step p { margin: 0; font-size: .9rem; }

.button {
  border: 0;
  border-radius: 2px;
  padding: 14px 24px;
  background: var(--wine);
  color: #fff;
  font-family: 'Poppins',sans-serif;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(116,29,28,.16);
}
.button:hover { background: var(--wine-dark); color: #fff; transform: translateY(-1px); }
.floating-btn { background: var(--wine); border: 1px solid rgba(255,255,255,.2); font-weight: 600; box-shadow: 0 12px 35px rgba(43,15,14,.27); }

.booking { max-width: 900px; }
.booking-step { background: #fff; padding: clamp(22px,5vw,48px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.booking-step h3 { font-size: 1.8rem; }
.booking-step h4 { margin: 30px 0 10px; color: var(--wine); }
.booking-step label { display: inline-block; padding: 7px 0; cursor: pointer; }
.booking-step input[type="radio"],.booking-step input[type="checkbox"] { accent-color: var(--wine); margin-right: 8px; }
.day { background: var(--cream); border: 1px solid transparent; }
.day:hover { background: var(--wine); color: #fff; }
.day.disabled:hover { background: #e8e5e1; color: #999; }
.progress-step.active { background: var(--gold); box-shadow: none; }

.bewertung-form,.review-popup-box { border: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 3px; box-shadow: var(--shadow); }
.map-placeholder { background: var(--cream); border-radius: 3px; border-color: var(--line); }

.footer { background: #1e1a18; padding-top: 60px; }
.footer-content { max-width: 1116px; }
.footer h4 { color: var(--gold); font-size: 1.15rem; }
.footer p { color: rgba(255,255,255,.62); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }

@media (max-width: 768px) {
  body::before { height: 3px; }
  header { min-height: 82px; padding: 10px 18px; }
  header img { height: 58px; }
  nav { min-height: 54px; }
  .burger {
    align-self: flex-end;
    width: 46px;
    height: 46px;
    margin: 7px 14px;
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    box-shadow: 0 7px 20px rgba(27,8,8,.16);
    transition: background .2s ease, border-color .2s ease;
  }
  .burger:hover { background: rgba(199,163,90,.18); border-color: var(--gold); }
  .burger div {
    width: 21px;
    height: 2px;
    margin: 0;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, width .2s ease;
  }
  .burger div:nth-child(2) { width: 15px; }
  nav:has(.nav-links.active) .burger div:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav:has(.nav-links.active) .burger div:nth-child(2) { opacity: 0; }
  nav:has(.nav-links.active) .burger div:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: absolute; top: 54px; left: 0; box-shadow: 0 18px 30px rgba(20,8,8,.2); }
  nav a { width: 100%; padding: 14px 24px; }
  .hero { min-height: 520px; height: 70vh; }
  .subpage-hero { min-height: 340px; height: 44vh; max-height: 390px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(27,12,10,.82), rgba(27,12,10,.3)); }
  .hero-text { left: 24px; width: calc(100% - 48px); top: 48%; }
  .hero-text h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .slider-buttons { text-align: center; padding-right: 0; }
  section { padding: 65px 22px; }
  h2 { font-size: 2.25rem; }
  .grid { grid-template-columns: 1fr; }
  .card { min-height: 165px; padding: 28px 24px; }
  .steps-grid { margin-top: 32px; }
  .floating-btn { bottom: 14px; right: 14px; }
  .calendar-grid { gap: 4px; }
  .day { font-size: 14px; padding: 10px 0; }
  .footer { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
