:root {
  --bg: #f6f2f1;
  --surface: #ffffff;
  --surface-soft: #fbf5f4;
  --text: #111111;
  --muted: #5f5f63;
  --border: rgba(0, 0, 0, 0.08);
  --blue: #d32f2f;
  --blue-dark: #b71c1c;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.09);
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }

body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.5; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease, transform 0.2s ease; }
button, input, textarea, select { font: inherit; }

#anfrage, #so-funktionierts { scroll-margin-top: 96px; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 28px, var(--container)); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245,245,247,0.78); -webkit-backdrop-filter: saturate(180%) blur(24px); backdrop-filter: saturate(180%) blur(24px); border-bottom: 1px solid rgba(0,0,0,0.06); }
.header-inner { width: min(100% - 24px, var(--container)); min-height: 62px; margin: 0 auto; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: block;
  flex-shrink: 0;
  border-radius: 18px;
  background: #ffffff;
  padding: 6px;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  min-width: 0;
}

.brand-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subline {
  display: none;
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
}

.main-nav { display:flex; align-items:center; gap:8px; }
.main-nav a { min-height:34px; display:inline-flex; align-items:center; justify-content:center; padding:8px 10px; border-radius:999px; color:rgba(29,29,31,0.82); font-size:12.5px; font-weight:600; white-space:nowrap; transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s; }
.main-nav a:hover { background:#fff; color:var(--blue); transform: translateY(-1px); box-shadow: inset 0 0 0 1px rgba(211,47,47,0.15); }

/* Hero */
.hero { padding:24px 0; }
.hero-card { position:relative; display:grid; gap:20px; overflow:hidden; padding:28px 20px; border-radius:var(--radius-xl); background: linear-gradient(180deg,#ffffff 0%, #f8f8fa 100%); border:1px solid var(--border); box-shadow: var(--shadow-card); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(0,0,0,0.12); }
.eyebrow { display:inline-flex; padding:7px 11px; border-radius:999px; background: rgba(211,47,47,0.09); color:var(--blue); font-size:13px; font-weight:700; }
.hero h1 { margin:0; max-width:830px; font-size: clamp(28px, 6vw, 56px); line-height:1; letter-spacing:-0.03em; }
.hero-text { margin:18px 0 0; max-width:680px; color:var(--muted); font-size: clamp(15px, 3.6vw, 18px); line-height:1.35; }
.hero-actions { display:flex; flex-direction:column; gap:10px; margin-top:24px; }

.btn { min-height:48px; display:inline-flex; align-items:center; justify-content:center; padding:13px 20px; border-radius:999px; border:0; cursor:pointer; font-weight:700; text-align:center; transition: background 0.18s, transform 0.18s, box-shadow 0.18s; }
.btn-primary { background:var(--blue); color:#fff; box-shadow: 0 12px 26px rgba(211,47,47,0.18); }
.btn-primary:hover { background:var(--blue-dark); transform: translateY(-2px); box-shadow: 0 18px 32px rgba(183,28,28,0.24); }
.btn-secondary { background:#fff; color:var(--text); border:1px solid var(--border); transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s; }
.btn-secondary:hover { border-color: rgba(211,47,47,0.35); box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }

/* Hero visual */
.hero-visual { display:grid; gap:12px; }
.visual-card { background: rgba(255,255,255,0.9); border:1px solid var(--border); border-radius:var(--radius-lg); box-shadow:var(--shadow-soft); padding:18px; }
.visual-card-main { min-height:190px; display:flex; flex-direction:column; justify-content:flex-end; }
.visual-icon { font-size:54px; margin-bottom:22px; }
.visual-card strong { font-size:22px; letter-spacing:-0.04em; }
.visual-card p { margin:5px 0 0; color:var(--muted); }
.visual-card-small { display:flex; align-items:center; gap:10px; }
.visual-card-small span { width:30px; height:30px; border-radius:999px; display:grid; place-items:center; background:rgba(211,47,47,0.1); color:var(--blue); font-weight:800; transition: transform 0.2s ease, background 0.2s ease; }
.visual-card-small span:hover { transform: scale(1.05); background:rgba(211,47,47,0.16); }

/* Produkt-Highlights */
.feature-grid { display:grid; grid-template-columns: 1fr; gap:16px; margin-top:18px; }
.feature-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-soft); }
.feature-image { width:100%; min-height:220px; overflow:hidden; background:linear-gradient(180deg, #fbf5f3 0%, #f6f0ef 100%); display:grid; place-items:center; }
.feature-image img { width:100%; height:100%; object-fit:cover; display:block; }
.feature-card-content { padding:20px; }
.feature-card-content h3 { margin:0 0 10px; font-size:18px; line-height:1.2; }
.feature-card-content p { margin:0; color:var(--muted); }
.product-cta { margin-top:18px; }
.product-cta .btn { min-width:fit-content; }

/* Make product images display in black & white with a subtle hover effect */
.feature-image img { filter: grayscale(100%) contrast(95%); transition: filter 260ms ease, transform 260ms ease; }
.feature-image img:hover { filter: grayscale(0%) contrast(100%); transform: scale(1.02); }

/* Produktseite */
.product-hero { display:grid; gap:22px; }
.product-hero .hero-card { display:grid; grid-template-columns: 1fr; align-items:start; }
.product-hero-image { border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-soft); }
.product-hero-image img { width:100%; height:auto; display:block; }
.image-grid { display:grid; grid-template-columns: 1fr; gap:14px; margin-top:20px; }
.image-card { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); background:#fff; }
.image-card img { width:100%; height:auto; display:block; }
.spec-grid { display:grid; grid-template-columns: 1fr; gap:14px; margin-top:18px; }
.spec-item { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:18px; box-shadow:var(--shadow-soft); }
.spec-item strong { display:block; margin-bottom:10px; font-size:15px; color:var(--text); }
.spec-item p { margin:0; color:var(--muted); }
.spec-list { margin-top:18px; display:grid; gap:12px; }
.spec-list li { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:14px 16px; color:var(--muted); }

@media (min-width:700px) {
  .feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .product-hero { grid-template-columns: 1.2fr 0.8fr; }
  .image-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .spec-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width:700px) {
  .product-hero .hero-card { grid-template-columns: 1fr; }
}

/* Quick facts */
.quick-facts { display:grid; grid-template-columns: 1fr; gap:12px; margin-top:14px; }
.quick-facts article { background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); padding:16px; box-shadow:var(--shadow-soft); }
.quick-facts strong { display:block; font-size:18px; letter-spacing:-0.035em; }
.quick-facts span { display:block; margin-top:4px; color:var(--muted); font-size:14px; }

/* Sections */
.section { padding:28px 0; }
.section-header { margin-bottom:16px; }
.section-kicker { color:var(--blue); font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; }
.section h2 { margin:7px 0 0; font-size:clamp(28px,6.5vw,44px); line-height:1.05; letter-spacing:-0.035em; }
.section-header p { margin:12px 0 0; max-width:720px; color:var(--muted); font-size:17px; }

/* Steps */
.steps-grid { display:grid; grid-template-columns: 1fr; gap:14px; }
.step-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow-soft); }
.step-number { width:34px; height:34px; border-radius:999px; display:grid; place-items:center; margin-bottom:14px; background:rgba(211,47,47,0.09); color:var(--blue); font-weight:800; }

/* Form */
.section-form { padding-bottom:58px; }
.request-form { background: linear-gradient(180deg,#ffffff 0%, #fbfbfd 100%); border:1px solid var(--border); border-radius:var(--radius-xl); box-shadow:var(--shadow-card); padding:22px; }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
.form-field { display:flex; flex-direction:column; gap:8px; min-width:0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size:13px; color:var(--text); font-weight:700; }
.form-field input, .form-field textarea, .form-field select { width:100%; min-width:0; min-height:48px; border:1px solid var(--border); border-radius:15px; background:#fff; color:var(--text); padding:12px 13px; outline:none; transition: border 0.18s, box-shadow 0.1s; }
.form-field textarea { min-height:118px; resize:vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color:var(--blue); box-shadow: 0 0 0 4px rgba(211,47,47,0.12); }
.checkbox-field { grid-column: 1 / -1; display:flex; align-items:flex-start; gap:10px; color:var(--muted); font-size:13px; line-height:1.4; }
.checkbox-field input { width:18px; height:18px; flex:0 0 auto; margin-top:2px; }
.checkbox-field a { color:var(--blue); font-weight:700; }

.form-actions { grid-column:1 / -1; display:flex; flex-direction:column; gap:10px; }
.form-note { margin:0; color:var(--muted); font-size:13px; }

/* Footer */
.site-footer { background:#fff; border-top:1px solid var(--border); }
.footer-inner { padding:26px 0; display:flex; flex-direction:column; gap:16px; }
.footer-inner strong { font-size:15px; letter-spacing:-0.025em; }
.footer-inner p { margin:4px 0 0; color:var(--muted); font-size:13px; }
.footer-links { display:flex; flex-wrap:wrap; gap:14px; }
.footer-links a { color:var(--muted); font-size:13px; }
.footer-links a:hover { color:var(--blue); }

/* Legal pages */
.legal-page { padding:34px 0; }
.legal-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-xl); box-shadow:var(--shadow-soft); padding:24px; }
.legal-card h1 { margin-top:0; font-size:clamp(32px,8vw,52px); line-height:1.05; letter-spacing:-0.055em; }
.legal-card h2 { margin-top:30px; font-size:24px; letter-spacing:-0.035em; }
.legal-card p, .legal-card li { color:var(--muted); }
.legal-card a { color:var(--blue); font-weight:700; }

/* Responsive */
@media (min-width:700px) {
  .brand-subline { display:inline; }
  .brand-name { font-size:15px; max-width:none; }
  .main-nav a { min-height:38px; padding:9px 14px; font-size:14px; }
  .hero-card { padding:52px; grid-template-columns: minmax(0,1.35fr) minmax(0,0.65fr); align-items:center; }
  .hero-actions { flex-direction:row; align-items:center; }
  .quick-facts { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .request-form { padding:34px; }
  .footer-inner { flex-direction:row; align-items:center; justify-content:space-between; }
}

@media (max-width:700px) {
  .brand-subline { display:none; }
  .form-grid { grid-template-columns: 1fr; }
}

.request-form {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 22px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #ffffff;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
  transition: border 0.18s ease, box-shadow 0.1s ease;
}

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

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.checkbox-field {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.checkbox-field a {
  color: var(--blue);
  font-weight: 700;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Footer */

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-inner strong {
  font-size: 15px;
  letter-spacing: -0.025em;
}

.footer-inner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--blue);
}

/* Legal pages */

.legal-page {
  padding: 34px 0;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.legal-card h1 {
  margin-top: 0;
  font-size: clamp(32px, 8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--blue);
  font-weight: 700;
}

/* Responsive */

@media (min-width: 700px) {
  .brand-subline {
    display: inline;
  }

  .brand-name {
    font-size: 15px;
    max-width: none;
  }

  .main-nav a {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-card {
    padding: 52px;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section {
    padding: 36px 0;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .request-form {
    padding: 34px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .header-inner {
    width: min(100% - 18px, var(--container));
    gap: 8px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .brand-name {
    max-width: 126px;
    font-size: 12px;
  }

  .main-nav a {
    padding: 7px 8px;
    font-size: 11.5px;
  }

  .hero-card,
  .request-form,
  .legal-card {
    border-radius: 24px;
    padding: 18px;
  }

  .form-grid {
    gap: 10px;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    border-radius: 13px;
    padding-left: 11px;
    padding-right: 11px;
  }
}
/* Booking form */
.wwr-booking {
  width: 100%;
  padding: 18px 0 44px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.wwr-booking-card {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 14px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.wwr-booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0,0,0,0.12);
}

.wwr-booking-card:focus-within {
  outline: 2px solid rgba(211,47,47,0.16);
  outline-offset: 2px;
}

.wwr-booking-header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: left;
}

.wwr-eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wwr-booking-header h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(30px, 8vw, 54px);
  line-height: 1.05;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.05em;
  text-align: left;
}

.wwr-intro {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.wwr-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wwr-form-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.wwr-section-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}

.wwr-section-title span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.09);
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.wwr-section-title h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 5.8vw, 34px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: left;
}

.wwr-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
  align-items: start;
}

.wwr-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: left;
}

.wwr-field label {
  display: block;
  margin: 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  text-align: left;
}

.wwr-field label span,
.wwr-required {
  color: var(--blue);
}

.wwr-grid-radkoffer .wwr-field label {
  min-height: 32px;
  display: flex;
  align-items: flex-end;
}

.wwr-field input,
.wwr-field select,
.wwr-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  display: block;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  padding: 11px 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wwr-field input[type="number"] {
  appearance: textfield;
}

.wwr-field select {
  cursor: pointer;
  padding-right: 24px;
}

.wwr-field textarea {
  min-height: 160px;
  padding-top: 14px;
  resize: vertical;
}

.wwr-field input::placeholder,
.wwr-field textarea::placeholder {
  color: #8b8b90;
  opacity: 1;
}

.wwr-field input:focus,
.wwr-field select:focus,
.wwr-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.wwr-error {
  display: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 14px;
  background: rgba(0, 113, 227, 0.05);
  color: var(--blue-dark);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
}

.wwr-range-field {
  position: relative;
  width: 100%;
  z-index: 5;
}

.wwr-range-trigger {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  padding: 11px 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.wwr-range-trigger:hover {
  border-color: rgba(211,47,47,0.35);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.wwr-range-trigger:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.wwr-range-text {
  min-width: 0;
  display: block;
}

.wwr-range-icon {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.wwr-calendar {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-width: 360px;
  display: none;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.wwr-range-field.is-open .wwr-calendar {
  display: block;
}

.wwr-calendar-head {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.wwr-calendar-title {
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.wwr-calendar-nav {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.wwr-calendar-weekdays,
.wwr-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.wwr-calendar-weekdays {
  margin-bottom: 6px;
}

.wwr-calendar-weekdays span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.wwr-calendar-day {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  cursor: pointer;
}

.wwr-calendar-day:hover {
  background: rgba(0, 113, 227, 0.08);
}

.wwr-calendar-day.is-empty {
  pointer-events: none;
}

.wwr-calendar-day.is-preview-range {
  background: rgba(0, 113, 227, 0.12);
}

.wwr-calendar-day.is-in-range {
  background: rgba(0, 113, 227, 0.18);
}

.wwr-calendar-day.is-preview-end {
  background: rgba(0, 113, 227, 0.28);
  font-weight: 700;
}

.wwr-calendar-day.is-start,
.wwr-calendar-day.is-end {
  background: var(--blue);
  color: #ffffff;
  font-weight: 700;
}

.wwr-calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.wwr-calendar-clear {
  border: none;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.wwr-calendar-hint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
  text-align: right;
}

.wwr-price-box {
  display: none;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f7f9 0%, #ffffff 100%);
  padding: 18px 16px;
  text-align: left;
}

.wwr-price-box.is-visible {
  display: flex;
}

.wwr-price-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.wwr-price-main {
  margin: 0;
  color: #111111;
  font-size: clamp(26px, 7.5vw, 46px);
  line-height: 1.08;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.045em;
}

.wwr-price-details {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.wwr-privacy {
  width: 100%;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}

.wwr-privacy input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.wwr-privacy a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wwr-submit-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding-top: 2px;
  text-align: left;
}

.wwr-submit {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  padding: 15px 18px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(183,28,28,0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wwr-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(183,28,28,0.28);
}

.wwr-legal-note {
  margin: 0;
  color: #86868b;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

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

@media (min-width: 700px) {
  .wwr-booking {
    padding: 26px 0 48px;
  }

  .wwr-booking-card {
    padding: 26px 18px 32px;
  }

  .wwr-booking-header {
    margin-bottom: 42px;
    text-align: center;
  }

  .wwr-booking-header h2,
  .wwr-intro {
    text-align: center;
  }

  .wwr-form {
    gap: 34px;
  }

  .wwr-form-section {
    gap: 20px;
  }

  .wwr-grid {
    gap: 22px 28px;
  }

  .wwr-submit-area {
    align-items: center;
  }

  .wwr-submit {
    width: auto;
    min-width: 330px;
    padding: 17px 34px;
    font-size: 16px;
  }
}
