:root {
  --bg: #e9e1d8;
  --bg-soft: #f6f1eb;
  --panel: rgba(255, 255, 255, 0.52);
  --panel-strong: rgba(255, 255, 255, 0.74);
  --text: #171513;
  --muted: #6f665e;
  --line: rgba(23, 21, 19, 0.08);
  --accent: #c8b19b;
  --accent-dark: #b5967d;
  --danger: #d62828;
  --danger-soft: #fff1f1;
  --success: #2d6a39;
  --success-soft: #eef9f0;
  --shadow: 0 18px 60px rgba(30, 22, 16, 0.08);
  --shadow-soft: 0 10px 30px rgba(30, 22, 16, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
  --transition: 0.25s ease;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.75),
      transparent 28%
    ),
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.35),
      transparent 18%
    ),
    linear-gradient(
      135deg,
      #ece4dc 0%,
      #e6ddd4 40%,
      #ded2c5 100%
    );
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

/* Glass-Effekt */
.glass {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-inner {
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Allgemeine Hilfsklassen */
.muted {
  color: var(--muted);
}

.center-text {
  text-align: center;
}

.section-space {
  padding: 28px 0;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn,
.btn-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition:
    transform var(--transition),
    filter var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  transform: translateY(-2px);
}

.btn {
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--accent),
    var(--accent-dark)
  );
  box-shadow: 0 10px 30px rgba(100, 78, 58, 0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--line);
}

.small-btn {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 13px;
}

/* Hero */
.hero {
  padding: 18px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 407px;
  gap: 24px;
  align-items: stretch;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.service-card,
.booking-demo,
.footer-card,
.dashboard-card,
.auth-box,
.auth-card-page,
.slot-card,
.profile-card,
.state-box {
  border-radius: var(--radius-xl);
}

.hero-copy {
  min-height: 595px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-copy p {
  max-width: 560px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.7;
}

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

.hero-visual {
  width: 407px;
  min-height: 595px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.42),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #d8cec3,
      #c8bcb0 60%,
      #ebe4dc 100%
    );
}

.portrait-card {
  width: 375px;
  height: 563px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 12px 30px rgba(30, 22, 16, 0.12);
}

.portrait-image {
  width: 375px;
  height: 563px;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Services */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
}

.service-image {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 16px;
  background: #f1ebe4;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.service-image:hover,
.service-image:focus-visible {
  box-shadow: 0 10px 24px rgba(30, 22, 16, 0.12);
  transform: scale(1.03);
}

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

.service-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.service-info h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.service-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.price-chip {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

/* Preise */
.price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.price-old {
  color: #888;
  font-size: 14px;
  text-decoration: line-through;
}

.price-new {
  color: var(--danger);
  font-size: 18px;
  font-weight: 700;
}

.price-normal {
  font-size: 16px;
  font-weight: 600;
}

.price-badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d6d, #ff0000);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Booking */
.booking-demo {
  padding: 22px;
}

.booking-demo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-demo-top h3 {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}

.booking-label,
.booking-step-pill {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-grid,
.booking-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.booking-service {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  text-align: left;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.booking-service:hover,
.booking-service:focus-visible {
  background: rgba(255, 255, 255, 0.76);
  transform: translateY(-2px);
}

.booking-service.active {
  border-color: rgba(181, 150, 125, 0.35);
  background: rgba(200, 177, 155, 0.22);
}

.booking-service-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.booking-service-price {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.95fr;
  align-items: start;
  gap: 16px;
}

.booking-panel,
.booking-summary {
  border-radius: 24px;
}

.booking-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.34);
}

.booking-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.booking-panel-head h4 {
  margin: 0;
  font-size: 18px;
}

.booking-panel-head span {
  color: var(--muted);
  font-size: 13px;
}

.booking-days,
.booking-times {
  display: grid;
  gap: 10px;
}

.booking-days,
.booking-times {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-day,
.booking-time {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  cursor: pointer;
}

.booking-day.active,
.booking-time.active {
  border-color: rgba(181, 150, 125, 0.35);
  background: rgba(200, 177, 155, 0.24);
  font-weight: 600;
}

.booking-summary {
  padding: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row span {
  color: var(--muted);
  font-size: 14px;
}

.summary-row strong {
  text-align: right;
}

.booking-demo-result {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Live Slots */
.slots-list {
  display: grid;
  gap: 12px;
}

.slot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
}

.slot-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.slot-form {
  flex-shrink: 0;
}

.empty-box,
.state-box {
  padding: 24px;
}

.empty-box {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  text-align: center;
}

.state-box h3 {
  margin: 0 0 10px;
}

.state-box p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* Buchungskalender */
.booking-calendar-wrap {
  margin-top: 28px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.calendar-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.calendar-arrow {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  color: #222;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.calendar-weekdays,
.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-weekdays {
  margin-bottom: 10px;
}

.calendar-weekdays div {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  opacity: 0.7;
}

.calendar-day {
  position: relative;
  min-height: 112px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.calendar-day.is-muted {
  opacity: 0.35;
}

.calendar-day.has-slots {
  border: 2px solid rgba(0, 0, 0, 0.75);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.calendar-day-number {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.calendar-day.has-slots .calendar-day-number {
  background: #111;
  color: #fff;
}

.calendar-times {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
}

.calendar-slot-form {
  margin: 0;
}

.calendar-time {
  width: 100%;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: #111;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.calendar-time:hover,
.calendar-time:focus-visible {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* Alerts */
.alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.alert-error {
  background: var(--danger-soft);
  color: #8a2e2e;
}

.alert-success {
  background: var(--success-soft);
  color: var(--success);
}

/* Auth / Formulare / Profil */
.auth-page {
  display: flex;
  min-height: calc(100vh - 110px);
  align-items: center;
  justify-content: center;
  padding: 24px 0 40px;
}

.auth-shell {
  display: grid;
  width: min(100%, 1100px);
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
  gap: 24px;
}

.auth-brand,
.auth-box,
.auth-card-page,
.profile-card,
.dashboard-card {
  border-radius: var(--radius-xl);
}

.auth-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.auth-logo {
  width: min(220px, 70%);
  margin-bottom: 20px;
}

.auth-subtitle {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-title {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.auth-text {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.auth-box,
.auth-card-page,
.profile-card,
.dashboard-card {
  padding: 28px 24px;
}

.auth-box h1,
.auth-card-page h1,
.profile-card h1,
.dashboard-card h1,
.profile-card h2,
.dashboard-card h2 {
  margin-top: 0;
}

.form,
.form-grid {
  display: grid;
  gap: 12px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.form label,
.form-grid label {
  font-size: 14px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--text);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form textarea,
.form-grid textarea {
  min-height: 120px;
}

.form input:focus,
.form select:focus,
.form textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(181, 150, 125, 0.75);
  box-shadow: 0 0 0 4px rgba(200, 177, 155, 0.18);
}

.form small,
.form-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.auth-footer-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.text-link {
  color: var(--text);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.checkbox-row input {
  width: auto;
  min-height: auto;
  padding: 0;
}

.profile-card p,
.dashboard-card p {
  color: var(--muted);
}

.dashboard-grid .dashboard-card {
  min-height: 180px;
}

/* Footer */
.site-footer {
  padding: 10px 0 44px;
}

.footer-card {
  margin-bottom: 24px;
  padding: 20px 24px;
  text-align: center;
}

.footer-card p {
  margin: 0;
  color: var(--muted);
}

/* Bildmodal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.image-modal.is-open,
.image-modal.active {
  display: block;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 14, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.image-modal-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  align-items: center;
  justify-content: center;
  margin: 24px auto;
}

.image-modal-img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.image-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 3;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  color: #171513;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

/* Utility */
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Responsive */
@media (max-width: 1180px) {
  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-summary {
    grid-column: 1 / -1;
  }

  .simple-grid,
  .booking-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .dashboard-grid,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 460px;
  }

  .hero-visual {
    width: 100%;
    min-height: 595px;
    justify-self: stretch;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 0;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

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

  .nav-links a {
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    text-align: center;
  }

  .booking-demo-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .slot-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .slot-form,
  .slot-form .btn {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .calendar-weekdays {
    display: none;
  }

  .booking-calendar {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    min-height: auto;
  }

  .calendar-day.is-muted {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .logo-img {
    height: 42px;
  }

  .hero-copy,
  .auth-brand,
  .auth-box,
  .auth-card-page,
  .profile-card,
  .dashboard-card,
  .booking-demo,
  .footer-card {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 16vw, 72px);
  }

.hero-visual {
  width: 100%;
  min-height: auto;
  padding: 10px;
}

.portrait-card {
  width: min(375px, calc(100vw - 40px));
  height: auto;
  aspect-ratio: 375 / 563;
  max-width: none;
  border-radius: 22px;
}

.portrait-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

  .section-space {
    padding: 22px 0;
  }

  .service-card {
    align-items: flex-start;
  }

  .service-image {
    width: 92px;
    height: 92px;
  }

  .service-info h3 {
    font-size: 16px;
  }

  .service-info p,
  .price-chip {
    font-size: 12px;
  }

  .simple-grid,
  .booking-services,
  .grid-2,
  .booking-days,
  .booking-times {
    grid-template-columns: 1fr;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .summary-row strong {
    text-align: left;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .image-modal-content {
    width: calc(100% - 16px);
    max-height: calc(100vh - 32px);
    margin: 16px auto;
  }

  .image-modal-img {
    max-height: calc(100vh - 56px);
    border-radius: 18px;
  }

  .image-modal-close {
    top: -8px;
    right: 0;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .navbar {
    padding: 12px 14px;
  }

  .hero-copy,
  .hero-visual,
  .service-card,
  .booking-demo,
  .footer-card,
  .auth-brand,
  .auth-box,
  .auth-card-page,
  .profile-card,
  .dashboard-card {
    border-radius: 18px;
  }

  .portrait-card {
    width: min(340px, calc(100vw - 40px));
    border-radius: 18px;
  }

  .service-image {
    width: 84px;
    height: 84px;
  }
}