@font-face {
  font-family: "Anton";
  src: url("assets/fonts/anton/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --olive-brown: #6b6451;
  --chair-blue: #1f2a5a;
  --text-light: #f4efe8;
  --muted-light: rgba(255, 255, 255, 0.75);
  --button-bg: #ece3d6;
  --button-text: #4a4337;
  --topbar-side-gap: clamp(12px, 2.1vw, 30px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 10%, #7a725c, var(--olive-brown));
  color: var(--text-light);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  overflow: visible;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.36) 28%, rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0.08) 100%),
    url("assets/images/friseur salong.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(44px, 7vw, 96px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140' preserveAspectRatio='none'%3E%3Cpath fill='%23f4efe8' d='M0,70 C120,130 280,130 400,70 C520,10 680,10 800,70 C920,130 1080,130 1200,70 C1320,10 1420,18 1440,24 L1440,140 L0,140 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  z-index: 0;
  pointer-events: none;
}

.js [data-reveal-item] {
  opacity: 0;
  transform: translate3d(0, 92px, 0) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.78, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.78, 0.2, 1);
}

.js [data-reveal-item].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-inner {
  width: min(1200px, 92vw);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 38px;
  height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-light);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-drawer {
  display: none;
}

.hero-topbar {
  --topbar-progress: 0;
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  padding: 26px clamp(28px, 4.8vw, 72px);
  border-radius: 0;
  background: rgba(31, 42, 90, calc(var(--topbar-progress) * 0.98));
  border-bottom: 1px solid rgba(244, 239, 232, calc(var(--topbar-progress) * 0.26));
  box-shadow: 0 10px 26px rgba(11, 18, 46, calc(var(--topbar-progress) * 0.34));
  backdrop-filter: blur(calc(var(--topbar-progress) * 7px));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  transition: background-color 180ms linear, box-shadow 180ms linear, backdrop-filter 180ms linear, border-color 180ms linear;
}

.hero-topbar.is-scrolled {
  --topbar-progress: 1;
  background: rgba(31, 42, 90, 0.98);
  border-bottom: 1px solid rgba(244, 239, 232, 0.26);
  box-shadow: 0 10px 26px rgba(11, 18, 46, 0.34);
  backdrop-filter: blur(7px);
}

.hero-nav {
  position: absolute;
  top: 50%;
  left: var(--topbar-side-gap);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img {
  display: block;
  width: 200px;
  max-width: 18vw;
  height: auto;
}

.profile-menu {
  position: absolute;
  top: 50%;
  right: var(--topbar-side-gap);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 40px;
}

.topbar-book-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.82;
}

.topbar-admin-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid rgba(244, 239, 232, 0.34);
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.9;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.topbar-admin-link:hover,
.topbar-admin-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 239, 232, 0.72);
  background: rgba(244, 239, 232, 0.12);
}

.topbar-admin-link svg {
  width: 18px;
  height: 18px;
}

.topbar-admin-link.is-hidden {
  display: none;
}

.login-button {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  border: 0;
  color: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 0;
  font-size: 0;
  cursor: pointer;
  position: relative;
}

.login-button::before,
.login-button::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.login-button::before {
  top: 8px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--text-light);
  border-radius: 999px;
}

.login-button::after {
  top: 20px;
  width: 18px;
  height: 10px;
  border: 2px solid var(--text-light);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.login-button.is-profile {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--chair-blue);
  border-color: rgba(244, 239, 232, 0.36);
  color: var(--text-light);
}
.login-button.is-profile::before,
.login-button.is-profile::after {
  content: none;
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 148px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(244, 239, 232, 0.98);
  border: 1px solid rgba(31, 42, 90, 0.16);
  box-shadow: 0 14px 28px rgba(11, 18, 46, 0.22);
  z-index: 35;
}

.profile-dropdown.is-hidden {
  display: none;
}

.profile-dropdown-item {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 10px 12px;
  text-align: left;
  text-decoration: none;
  color: var(--chair-blue);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.profile-dropdown-item:hover,
.profile-dropdown-item:focus-visible {
  background: rgba(31, 42, 90, 0.08);
  outline: none;
}

.profile-dropdown-item.is-danger {
  color: #c52f2f;
}

.profile-dropdown-item.is-danger:hover {
  background: rgba(197, 47, 47, 0.1);
}

.hero-content {
  position: absolute;
  top: 39%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: min(1000px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero-subtitle {
  margin: 0 0 16px;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  color: var(--muted-light);
  opacity: 0;
  animation: textReveal 0.7s ease-out 0.1s forwards;
}

.hero-title {
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(4.2rem, 12.6vw, 10rem);
  letter-spacing: 0.34em;
  line-height: 0.95;
  color: var(--text-light);
  text-transform: uppercase;
  opacity: 0;
  animation: textReveal 0.95s cubic-bezier(0.2, 0.75, 0.2, 1) 0.28s forwards;
}

.cta-button {
  margin-top: 26px;
  margin-left: auto;
  margin-right: auto;
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.chair-link {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  width: clamp(230px, 23vw, 365px);
  z-index: 2;
  cursor: pointer;
}

.chair-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation:
    chairFlyIn 1.45s cubic-bezier(0.2, 0.9, 0.22, 1) 1.15s backwards,
    chairBlink 0.9s ease-in-out 2.85s 2;
}

.chair-link.is-hover-ready {
  cursor: pointer;
}

.chair-link.is-hover-ready:hover .chair-image {
  transform: translateY(-10px) scale(1.1);
}

.booking-image {
  position: absolute;
  left: calc(50% + clamp(130px, 16vw, 220px));
  bottom: clamp(130px, 20vh, 220px);
  width: clamp(190px, 24vw, 340px);
  height: auto;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.42s ease, transform 0.42s ease;
  pointer-events: none;
}

.booking-image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.services-pricing {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vw, 110px) 6vw;
  background: var(--text-light);
  color: var(--chair-blue);
}

.services-pricing-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.services-kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--chair-blue);
}

.services-pricing h2 {
  margin: 8px 0 28px;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--chair-blue);
  text-align: center;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 28px;
}

.pricing-table td {
  padding: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
  color: #2f3133;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.pricing-table td:first-child {
  text-align: left;
}

.pricing-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.about-me {
  padding: 0;
  background:
    linear-gradient(120deg, rgba(31, 42, 90, 0.96), rgba(17, 24, 55, 0.95)),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 58%);
  color: var(--text-light);
}

.about-me-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: clamp(340px, 44vw, 560px);
}

.about-me-copy {
  padding: clamp(52px, 7vw, 96px) clamp(20px, 6vw, 90px);
}

.about-me-copy h2 {
  margin: 0 0 20px;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.about-me-copy p {
  margin: 0;
  max-width: 60ch;
  color: rgba(244, 239, 232, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
}

.about-me-copy p + p {
  margin-top: 14px;
}

.about-me-media {
  width: 100%;
  height: 100%;
}

.about-me-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.appointment {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(64px, 10vw, 110px) 6vw;
  background: var(--text-light);
  color: var(--chair-blue);
}

.appointment-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.appointment h2 {
  margin: 8px 0 36px;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--chair-blue);
  text-align: center;
}

.appointment-form {
  width: min(620px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.appointment-flow {
  width: min(620px, 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.appointment-flow.is-hidden {
  display: none;
}

.appointment-flow .appointment-form,
.appointment-summary {
  width: 100%;
  transition: transform 0.44s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.appointment-flow .appointment-form {
  margin: 0;
  transform: translateX(0);
  opacity: 1;
}

.appointment-summary {
  position: absolute;
  inset: 0;
  transform: translateX(108%);
  opacity: 0;
  pointer-events: none;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.appointment-flow.is-summary-active .appointment-form {
  transform: translateX(-108%);
  opacity: 0;
  pointer-events: none;
}

.appointment-flow.is-summary-active .appointment-summary {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.appointment-summary h3 {
  margin: 0 0 18px;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(1.3rem, 2.7vw, 2rem);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--chair-blue);
}

.appointment-summary-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.appointment-summary-list div {
  border-bottom: 1px solid rgba(31, 42, 90, 0.16);
  padding-bottom: 12px;
}

.appointment-summary-list dt {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 42, 90, 0.66);
}

.appointment-summary-list dd {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--chair-blue);
  font-weight: 600;
}

.appointment-summary-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
}

.appointment-action-button,
.appointment-secondary-button,
.appointment-login-button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.appointment-action-button {
  width: fit-content;
  min-width: 182px;
  align-self: center;
  background: var(--chair-blue);
  color: var(--text-light);
  box-shadow: none;
}

.appointment-action-button:hover,
.appointment-action-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: none;
}

.appointment-action-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.appointment-secondary-button {
  background: transparent;
  border: 1px solid rgba(31, 42, 90, 0.34);
  color: var(--chair-blue);
}

.appointment-secondary-button:hover,
.appointment-secondary-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: none;
}

.appointment-login-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 172px;
  margin-left: auto;
  margin-right: auto;
  background: var(--chair-blue);
  color: var(--text-light);
  text-decoration: none;
  box-shadow: none;
}

.appointment-login-button:hover,
.appointment-login-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: none;
}

.line-static-value {
  margin: 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(31, 42, 90, 0.36);
  background: transparent;
  color: var(--chair-blue);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  padding: 8px 0 10px;
}

.price-old,
.price-current,
.price-discount-note {
  display: inline-block;
}

.price-old {
  color: rgba(31, 42, 90, 0.52);
  text-decoration: line-through;
  margin-right: 8px;
}

.price-current {
  color: var(--chair-blue);
  font-weight: 700;
  margin-right: 8px;
}

.price-discount-note {
  color: #0e7a3a;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.appointment-feedback {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(31, 42, 90, 0.84);
}

.appointment-feedback.is-error {
  color: #b31e1e;
}

.appointment-feedback.is-success {
  color: #0e7a3a;
}

.appointment-current-panel {
  width: min(620px, 100%);
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.appointment-current-panel.is-hidden {
  display: none;
}

.appointment-current-grid {
  display: grid;
  gap: 14px;
  width: min(560px, 100%);
  justify-items: center;
}

.appointment-current-label {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 42, 90, 0.66);
}

.appointment-current-value {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--chair-blue);
}

.appointment-current-grid .appointment-secondary-button {
  justify-self: center;
  min-width: 260px;
  padding: 14px 24px;
  font-size: 0.95rem;
}

.appointment-current-panel .appointment-feedback {
  text-align: center;
  margin-top: 18px;
  font-size: 1rem;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 96px) 6vw clamp(72px, 10vw, 110px);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(209, 155, 40, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(244, 239, 232, 0.28) 0%, rgba(31, 42, 90, 0.96) 18%, #162044 56%, #121a38 100%);
  color: var(--text-light);
}

.reviews::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(34px, 6vw, 70px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f4efe8' d='M0,0 L1440,0 L1440,28 C1300,96 1160,116 980,82 C850,58 720,38 580,68 C420,102 240,110 0,74 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top center;
  pointer-events: none;
  z-index: 0;
}

.reviews::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(34px, 6vw, 72px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f4efe8' d='M0,36 C160,88 330,104 500,72 C660,42 780,20 940,38 C1110,58 1270,104 1440,82 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  pointer-events: none;
  z-index: 0;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.reviews-header h2 {
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.reviews-stars {
  margin: 12px 0 6px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #d19b28;
  letter-spacing: 0.14em;
  text-shadow: 0 0 22px rgba(209, 155, 40, 0.45);
  animation: starPulse 3.2s ease-in-out 4;
}

.reviews-count {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 232, 0.78);
}

.reviews-slider {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-nav {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.86;
}

.review-nav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(244, 239, 232, 0.92);
  border-right: 2px solid rgba(244, 239, 232, 0.92);
}

.review-nav-prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}

.review-nav-next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.review-nav:hover,
.review-nav:focus-visible {
  outline: none;
  opacity: 1;
  transform: translateY(-1px);
}

.review-card {
  flex: 0 0 100%;
  min-height: 180px;
  padding: 8px 4px;
  border: none;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0.6;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.review-card.is-active {
  opacity: 1;
  transform: scale(1);
}

.review-name {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-text {
  margin: 0;
  color: rgba(244, 239, 232, 0.9);
  font-size: 0.97rem;
  line-height: 1.58;
  max-width: 62ch;
  position: relative;
}

.review-rating {
  margin: 14px 0 0;
  font-size: 1rem;
  color: #d19b28;
  letter-spacing: 0.08em;
}

.review-meta {
  width: min(520px, 100%);
  margin: 24px auto 0;
}

.review-progress {
  display: none;
}

.review-dots {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.review-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(244, 239, 232, 0.42);
  cursor: pointer;
  transition: width 0.22s ease, background-color 0.22s ease;
}

.review-dot.is-active {
  width: 24px;
  background: #f0c05b;
}

.review-dot:focus-visible {
  outline: 1px solid rgba(244, 239, 232, 0.8);
  outline-offset: 3px;
}

.location-contact {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 6vw;
  background: var(--text-light);
  color: var(--chair-blue);
}

.location-contact-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.location-contact-copy h2 {
  margin: 0 0 18px;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.location-contact-address {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(31, 42, 90, 0.9);
}

.location-contact-hours {
  margin-top: 22px;
}

.location-contact-hours h3 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 42, 90, 0.72);
}

.location-contact-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.location-contact-hours li {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(31, 42, 90, 0.9);
}

.route-button {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--chair-blue);
  border-radius: 999px;
  background: var(--chair-blue);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-button:hover,
.route-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 42, 90, 0.28);
}

.location-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 90, 0.14);
  box-shadow: 0 18px 34px rgba(31, 42, 90, 0.15);
  min-height: clamp(280px, 34vw, 430px);
}

.location-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 34vw, 430px);
  border: 0;
}

.site-footer {
  position: relative;
  padding: clamp(44px, 7vw, 72px) 6vw 0;
  background: var(--chair-blue);
  color: var(--text-light);
}

.site-footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.footer-brand h2 {
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 44ch;
  color: rgba(244, 239, 232, 0.78);
  line-height: 1.65;
}

.footer-logo {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo img {
  display: block;
  width: 200px;
  max-width: 18vw;
  height: auto;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 4px;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.68);
}

.footer-links a,
.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  opacity: 1;
  transform: translateX(2px);
  outline: none;
}

.footer-contact p {
  margin: 2px 0 0;
  color: rgba(244, 239, 232, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer-bottom {
  width: min(1120px, 100%);
  margin: clamp(26px, 4.8vw, 40px) auto 0;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(244, 239, 232, 0.18);
}

.site-footer-bottom p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 239, 232, 0.6);
}

body.stamp-card-open {
  overflow: hidden;
}

.stamp-card-toggle {
  position: fixed;
  right: clamp(18px, 3.5vw, 34px);
  bottom: clamp(18px, 3.5vw, 34px);
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1f2a5a 0%, #31428a 100%);
  color: #f4efe8;
  box-shadow: 0 18px 38px rgba(15, 21, 49, 0.34);
  cursor: pointer;
  z-index: 40;
  transition: transform 0.26s ease, opacity 0.26s ease, box-shadow 0.26s ease;
}

.stamp-card-toggle:hover,
.stamp-card-toggle:focus-visible {
  outline: none;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 40px rgba(15, 21, 49, 0.4);
}

.stamp-card-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
}

.stamp-card-toggle svg {
  width: 28px;
  height: 28px;
}

.stamp-card-overlay {
  --stamp-card-gutter: clamp(18px, 3vw, 34px);
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--stamp-card-gutter);
  background: rgba(12, 17, 37, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease, visibility 0.26s ease;
  z-index: 39;
}

.stamp-card-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.stamp-card-panel {
  box-sizing: border-box;
  width: min(560px, calc(100vw - (var(--stamp-card-gutter) * 2)));
  max-width: 100%;
  min-height: min(76vh, 720px);
  max-height: calc(100vh - (var(--stamp-card-gutter) * 2));
  padding: clamp(24px, 4vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 32%),
    linear-gradient(160deg, #f5efe5 0%, #ece2d3 100%);
  border: 1px solid rgba(31, 42, 90, 0.14);
  box-shadow: 0 28px 68px rgba(12, 18, 42, 0.28);
  color: var(--chair-blue);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate3d(26px, 44px, 0) scale(0.92);
  transform-origin: bottom right;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.stamp-card-overlay.is-open .stamp-card-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.stamp-card-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -60px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 42, 90, 0.14), rgba(31, 42, 90, 0));
  pointer-events: none;
}

.stamp-card-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 42, 90, 0.08);
  color: var(--chair-blue);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.stamp-card-close:hover,
.stamp-card-close:focus-visible {
  outline: none;
  background: rgba(31, 42, 90, 0.14);
}

.stamp-card-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 42, 90, 0.66);
}

.stamp-card-panel h2 {
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.stamp-card-copy {
  margin: 14px 0 0;
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(31, 42, 90, 0.86);
}

.stamp-card-slots {
  margin-top: clamp(28px, 5vw, 36px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stamp-card-slot {
  aspect-ratio: 1;
  border-radius: 999px;
  border: 2px dashed rgba(31, 42, 90, 0.24);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 10px 18px rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease;
}

.stamp-card-slot.is-filled {
  border-style: solid;
  border-color: rgba(122, 95, 50, 0.48);
  background:
    url("assets/images/stempel_abdruck.png") center / 78% 78% no-repeat,
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.46), transparent 40%),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 24px rgba(122, 95, 50, 0.2);
  transform-origin: center;
  transform: rotate(-3deg) translate(-1px, 1px);
}

.stamp-card-slot:nth-child(2n).is-filled {
  transform: rotate(4deg) translate(1px, -1px);
}

.stamp-card-slot:nth-child(3n).is-filled {
  transform: rotate(-6deg) translate(-2px, 0);
}

.stamp-card-slot:nth-child(5n).is-filled {
  transform: rotate(2deg) translate(0, 2px);
}

.stamp-card-qr-wrap {
  margin-top: clamp(28px, 5vw, 38px);
  padding: clamp(18px, 3vw, 24px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(31, 42, 90, 0.1);
  display: grid;
  justify-items: center;
  gap: 10px;
}

.stamp-card-qr {
  width: 196px;
  min-height: 196px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #f4efe8;
}

.stamp-card-qr canvas,
.stamp-card-qr img {
  display: block;
  width: 180px;
  height: 180px;
}

.stamp-card-qr-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 42, 90, 0.62);
}

.stamp-card-user-id {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(31, 42, 90, 0.8);
  overflow-wrap: anywhere;
}

.stamp-card-status {
  margin: 16px 0 0;
  min-height: 1.2rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(31, 42, 90, 0.78);
}

.stamp-card-status.is-error {
  color: #b31e1e;
}

.stamp-card-status.is-success {
  color: #0e7a3a;
}

@keyframes starPulse {
  0%,
  100% {
    text-shadow: 0 0 14px rgba(209, 155, 40, 0.35);
  }
  50% {
    text-shadow: 0 0 24px rgba(209, 155, 40, 0.58);
  }
}

.minimal-field {
  width: 100%;
}

.minimal-field.is-hidden {
  display: none;
}

.minimal-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 42, 90, 0.72);
}

.minimal-field input,
.line-date-trigger {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(31, 42, 90, 0.36);
  background: transparent;
  color: var(--chair-blue);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  padding: 8px 0 10px;
}

.minimal-field input:focus,
.line-date-trigger:focus,
.line-select-wrap:focus-within {
  outline: none;
  border-bottom-color: var(--chair-blue);
}

.line-select-wrap {
  position: relative;
  border-bottom: 1px solid rgba(31, 42, 90, 0.36);
}

.line-select-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--chair-blue);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  padding: 8px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.line-select-trigger:focus {
  outline: none;
}

.line-select-value {
  text-align: left;
  color: var(--chair-blue);
}

.line-select-value.is-placeholder {
  color: rgba(31, 42, 90, 0.6);
}

.line-select-icon {
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(31, 42, 90, 0.72);
  border-bottom: 2px solid rgba(31, 42, 90, 0.72);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.line-select-wrap.is-open .line-select-icon {
  transform: rotate(-135deg) translateY(-1px);
}

.line-select-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(180deg, #faf6f1 0%, #f0e8dd 100%);
  border: 1px solid rgba(31, 42, 90, 0.14);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 34px rgba(23, 31, 64, 0.2);
  z-index: 12;
  transform-origin: top;
}

.line-select-menu.is-open {
  animation: selectSlideDown 0.24s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.line-select-menu.is-closing {
  animation: selectSlideUp 0.2s ease forwards;
}

.line-select-menu.is-hidden {
  display: none;
}

.line-select-option {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--chair-blue);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  text-align: left;
  padding: 9px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.line-select-option:hover,
.line-select-option:focus {
  outline: none;
  background: rgba(31, 42, 90, 0.08);
  transform: translateX(2px);
}

.line-select-option.is-active {
  background: rgba(31, 42, 90, 0.12);
  font-weight: 600;
}

.line-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.line-date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.line-date-value {
  color: var(--chair-blue);
}

.line-date-trigger.is-placeholder .line-date-value {
  color: rgba(31, 42, 90, 0.6);
}

.line-date-icon {
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(31, 42, 90, 0.72);
  border-bottom: 2px solid rgba(31, 42, 90, 0.72);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.line-date-trigger.is-open .line-date-icon {
  transform: rotate(-135deg) translateY(-1px);
}

.date-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.date-grid.is-hidden {
  display: none;
}

.date-chip {
  border: 1px solid rgba(31, 42, 90, 0.22);
  border-radius: 12px;
  background: #ffffff;
  color: var(--chair-blue);
  padding: 10px 8px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-align: center;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.date-chip:hover:not(:disabled) {
  border-color: var(--chair-blue);
  transform: translateY(-1px);
}

.date-chip.has-slots {
  background: #cdeed6;
  border-color: rgba(18, 116, 66, 0.3);
}

.date-chip.is-empty {
  cursor: not-allowed;
  opacity: 0.66;
}

.date-chip-day {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.date-chip-date {
  font-size: 0.95rem;
  font-weight: 600;
}

.date-chip.is-past {
  background: #d6d8de;
  color: rgba(31, 42, 90, 0.52);
  border-color: #c2c6d0;
  cursor: not-allowed;
}

.date-chip.is-selected {
  background: var(--chair-blue);
  color: var(--text-light);
  border-color: var(--chair-blue);
}

.time-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, max-content));
  gap: 8px;
}

.time-chip {
  border: 1px solid rgba(31, 42, 90, 0.25);
  border-radius: 999px;
  background: #ffffff;
  color: var(--chair-blue);
  padding: 8px 12px;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.time-chip:hover,
.time-chip:focus-visible {
  outline: none;
  border-color: var(--chair-blue);
  transform: translateY(-1px);
}

.time-chip.is-selected {
  background: var(--chair-blue);
  color: var(--text-light);
  border-color: var(--chair-blue);
}

.photo-showcase {
  padding: 0;
  background:
    linear-gradient(120deg, rgba(31, 42, 90, 0.96), rgba(17, 24, 55, 0.95)),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 58%);
}

.photo-showcase-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.photo-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(340px, 44vw, 560px);
  gap: 0;
  align-items: stretch;
}

.photo-showcase .about-me-copy {
  padding: clamp(52px, 7vw, 96px) clamp(20px, 6vw, 90px);
}

.photo-showcase .about-me-copy p {
  max-width: 54ch;
}

.photo-showcase-gallery {
  width: 100%;
  height: 100%;
}

.slideshow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slides-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chairFlyIn {
  0% {
    opacity: 0;
    transform: translateY(110%) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-14px) scale(1.01);
  }
  82% {
    opacity: 1;
    transform: translateY(4px) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chairBlink {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.1);
  }
}

@keyframes selectSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes selectSlideUp {
  0% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-7px) scaleY(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-subtitle,
  .hero-title,
  .chair-image,
  .booking-image,
  .slide,
  .reviews-track,
  .review-card,
  .review-dot,
  .line-date-icon,
  .line-select-icon,
  .route-button,
  .footer-links a,
  .footer-contact a,
  .stamp-card-toggle,
  .stamp-card-overlay,
  .stamp-card-panel {
    animation: none !important;
    transition: none !important;
  }

  .line-select-menu.is-open,
  .line-select-menu.is-closing {
    animation: none;
  }

  .reviews-stars {
    animation: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 0 4vw;
  }

  .services-pricing {
    padding: 54px 4vw 62px;
  }

  .pricing-table {
    border-spacing: 0 20px;
  }

  .pricing-table td {
    font-size: clamp(1.2rem, 6vw, 1.9rem);
  }

  .photo-showcase {
    padding: 0;
  }

  .photo-showcase-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .photo-showcase .about-me-copy {
    padding: 44px 4vw 34px;
  }

  .photo-showcase-gallery {
    min-height: clamp(260px, 62vw, 420px);
  }

  .about-me {
    padding: 0;
  }

  .about-me-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .about-me-media {
    justify-self: start;
    width: 100%;
    min-height: clamp(260px, 62vw, 420px);
  }

  .appointment {
    padding: 54px 4vw 62px;
  }

  .reviews {
    padding: 42px 4vw 62px;
  }

  .location-contact {
    padding: 48px 4vw 60px;
  }

  .site-footer {
    padding: 38px 4vw 0;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }

  .footer-logo img {
    width: min(200px, 52vw);
    max-width: none;
  }

  .site-footer-bottom {
    margin-top: 24px;
    padding-bottom: 16px;
  }

  .stamp-card-panel {
    width: min(100%, 540px);
    min-height: min(74vh, 680px);
  }

  .location-contact-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .location-map-wrap,
  .location-map-wrap iframe {
    min-height: clamp(250px, 70vw, 360px);
  }

  .reviews-slider {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .review-nav {
    display: none;
  }

  .reviews-stars {
    letter-spacing: 0.1em;
  }

  .review-card {
    min-height: 168px;
    padding: 6px 2px;
  }

  .review-meta {
    width: min(360px, 100%);
    margin-top: 16px;
  }

  .appointment h2 {
    margin-bottom: 28px;
  }

  .appointment-form {
    gap: 22px;
  }

  .appointment-flow {
    min-height: 520px;
  }

  .appointment-summary {
    padding: 18px;
  }

  .appointment-summary-actions {
    flex-direction: column;
  }

  .appointment-action-button,
  .appointment-secondary-button,
  .appointment-login-button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero-content {
    top: 33%;
    width: min(92vw, 800px);
  }

  .chair-link {
    width: clamp(250px, 66vw, 390px);
    bottom: 34px;
  }

  .booking-image {
    left: auto;
    right: 2vw;
    bottom: 178px;
    width: clamp(190px, 54vw, 300px);
  }

  .hero-topbar {
    width: 100%;
    padding: 12px clamp(14px, 5vw, 24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
  }

  .hero-topbar {
    --topbar-side-gap: 0;
  }

  .hero-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 41;
  }

  .profile-menu {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    margin-right: 0;
    gap: 0;
    z-index: 41;
  }

  .topbar-book-link {
    display: none;
  }

  .topbar-admin-link {
    display: none;
  }

  .login-button {
    width: 36px;
    height: 36px;
  }

  .login-button.is-profile {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 0.9rem;
  }

  .hero-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-logo img {
    width: 78px;
    max-width: none;
  }

  .mobile-nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    padding: 92px 28px 36px;
    background: rgba(31, 42, 90, 0.98);
    backdrop-filter: blur(6px);
    transform: translateX(-100%);
    transition: transform 260ms ease;
    z-index: 40;
    pointer-events: none;
    overflow-y: auto;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .mobile-book-link {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    text-decoration-line: underline !important;
    text-decoration-color: currentColor;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
  }

  .mobile-admin-link {
    text-transform: uppercase;
    font-size: 1rem !important;
    letter-spacing: 0.08em;
    opacity: 0.92;
    margin-bottom: 6px;
  }

  .mobile-admin-link.is-hidden {
    display: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-nav-drawer {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.mobile-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.mobile-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.mobile-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-title {
    letter-spacing: 0.28em;
  }
}

@media (max-width: 520px) {
  .stamp-card-overlay {
    --stamp-card-gutter: 12px;
    padding: var(--stamp-card-gutter);
  }

  .stamp-card-toggle {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }

  .stamp-card-panel {
    width: 100%;
    min-height: min(72vh, 640px);
    max-height: calc(100vh - (var(--stamp-card-gutter) * 2));
    border-radius: 24px;
    padding: 22px 18px 20px;
  }

  .stamp-card-slots {
    gap: 12px;
  }

  .stamp-card-qr {
    width: 172px;
    min-height: 172px;
  }

  .stamp-card-qr canvas,
  .stamp-card-qr img {
    width: 156px;
    height: 156px;
  }

  .hero-content {
    top: 35%;
  }

  .services-pricing h2 {
    margin-bottom: 20px;
  }

  .appointment h2 {
    margin-bottom: 20px;
  }

  .date-grid {
    gap: 8px;
  }

  .date-chip {
    border-radius: 10px;
    min-height: 56px;
    padding: 8px 6px;
  }

  .date-chip-day {
    font-size: 0.68rem;
  }

  .date-chip-date {
    font-size: 0.86rem;
  }

  .service-card {
    padding: 18px 16px;
  }

  .slides-viewport {
    aspect-ratio: 4 / 5;
    border-radius: 0;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.8rem);
    letter-spacing: 0.22em;
  }

  .hero-subtitle {
    margin-bottom: 10px;
    font-size: 1.02rem;
  }

  .chair-link {
    width: clamp(230px, 72vw, 330px);
    bottom: 42px;
  }

  .booking-image {
    width: clamp(170px, 56vw, 250px);
    right: 3vw;
    bottom: 186px;
  }

  .location-contact-copy h2 {
    margin-bottom: 14px;
  }

  .location-contact-address {
    font-size: 0.97rem;
  }

  .location-contact-hours li {
    font-size: 0.93rem;
  }

  .site-footer-bottom p {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
}
