:root {
  --bg: #070707;
  --bg-soft: #0d0e10;
  --card: rgba(19, 20, 22, 0.78);
  --card-solid: #121315;
  --text: #f5f5f2;
  --muted: #96989f;
  --accent: #d8b46a;
  --accent-soft: rgba(216, 180, 106, 0.13);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --success: #8cffbe;
  --danger: #ff7b7b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --mouse-x: 50vw;
  --mouse-y: 20vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(216, 180, 106, 0.055), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mouse-x) var(--mouse-y),
    rgba(216, 180, 106, 0.055),
    transparent 42%
  );
  pointer-events: none;
  content: "";
}

::selection {
  background: var(--accent);
  color: #080808;
}

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

.ambient-light {
  position: fixed;
  z-index: -1;
  top: 55%;
  right: -18vw;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: rgba(216, 180, 106, 0.035);
  filter: blur(100px);
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0 clamp(22px, 5vw, 84px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 25%, rgba(216, 180, 106, 0.14), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(135deg, rgba(7, 7, 7, 0.98) 0%, rgba(13, 14, 16, 0.94) 54%, rgba(7, 7, 7, 0.98) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 78%);
  pointer-events: none;
  content: "";
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.brand-muted,
.footer-brand span {
  color: #74767d;
}

.nav-actions,
.hero-actions,
.hero-proof {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 26px;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c4c5c8;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.open-status i,
.card-signal {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(216, 180, 106, 0.1), 0 0 18px var(--accent);
  animation: signal 2s ease-in-out infinite;
}

.nav-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: var(--accent);
  color: #080908;
  padding: 14px 20px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.nav-button:hover,
.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(216, 180, 106, 0.18);
  background: #e6c67d;
}

.primary-button.full {
  width: 100%;
  margin-top: 12px;
  padding-block: 17px;
}

.primary-button:focus-visible,
.nav-button:focus-visible,
.text-button:focus-visible,
.slot-button:focus-visible,
.delete-button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 180, 106, 0.3);
  outline-offset: 4px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  min-height: calc(100svh - 150px);
  max-width: 1500px;
  margin: 0 auto;
  padding: 72px 0 110px;
}

.hero-copy {
  animation: hero-in 900ms 100ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.eyebrow,
.step-label {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker span {
  animation: spin 8s linear infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Arial Black", "Segoe UI Black", Impact, sans-serif;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(3.5rem, 7.4vw, 7.9rem);
  line-height: 0.83;
}

h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  font-style: normal;
  filter: drop-shadow(0 0 24px rgba(200, 255, 56, 0.15));
}

.hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  color: #b5b6bb;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  gap: 27px;
  margin-bottom: 54px;
}

.text-button {
  position: relative;
  color: #d6d7d9;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-button::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 240ms ease;
  content: "";
}

.text-button:hover::after {
  transform: scaleX(1);
}

.hero-proof {
  gap: clamp(22px, 4vw, 58px);
}

.hero-proof div {
  display: grid;
  gap: 5px;
}

.hero-proof strong {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.hero-proof span {
  color: #777980;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual,
.booking-preview {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  animation: hero-in 1s 250ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-preview {
  align-content: center;
  gap: 18px;
  min-height: 480px;
  place-items: stretch;
}

.preview-topline,
.preview-card,
.share-card {
  border: 1px solid var(--border-strong);
  background: rgba(15, 16, 17, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: var(--muted);
  font-weight: 800;
}

.preview-topline strong {
  color: var(--accent);
  font-size: 1.2rem;
}

.preview-card {
  padding: clamp(28px, 5vw, 52px);
}

.preview-card strong {
  display: block;
  margin: 10px 0 18px;
  color: var(--text);
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.preview-card p,
.share-card span {
  color: var(--muted);
  line-height: 1.6;
}

.preview-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.share-card {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.share-card code {
  color: var(--accent);
  font-size: 1rem;
}

.hero-visual::before {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.07;
  filter: blur(70px);
  content: "";
  animation: breathe 5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 17px var(--accent);
  content: "";
}

.orbit-one {
  width: 390px;
  height: 390px;
  animation: spin 18s linear infinite;
}

.orbit-two {
  width: 500px;
  height: 500px;
  border-style: dashed;
  opacity: 0.45;
  animation: spin-reverse 35s linear infinite;
}

.visual-core {
  position: relative;
  display: grid;
  width: 276px;
  height: 276px;
  place-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.72);
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.035), 0 40px 80px rgba(0, 0, 0, 0.4);
  text-align: center;
  backdrop-filter: blur(14px);
}

.visual-core::before,
.visual-core::after {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.visual-core::before { left: -15px; }
.visual-core::after { right: -15px; }

.visual-core strong {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 6.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 0.9;
  text-shadow: 0 0 35px rgba(200, 255, 56, 0.28);
}

.core-label,
.core-subline {
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.32em;
}

.core-subline { color: #777980; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 215px;
  padding: 15px 17px;
  border: 1px solid var(--border-strong);
  background: rgba(15, 16, 17, 0.76);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(15px);
}

.floating-card small {
  display: block;
  margin-bottom: 3px;
  color: #777980;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.floating-card span:not(.card-signal):not(.card-date) {
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card-top {
  top: 15%;
  right: 0;
  animation: float 4.5s ease-in-out infinite;
}

.floating-card-bottom {
  bottom: 14%;
  left: -3%;
  animation: float 5s 900ms ease-in-out infinite;
}

.floating-card-bottom b {
  margin-left: auto;
  color: var(--accent);
}

.card-date {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 25px;
  left: clamp(22px, 5vw, 84px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #73757c;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: #45464b;
}

.scroll-cue span::after {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  content: "";
  animation: scan 2.2s ease-in-out infinite;
}

main {
  padding: 0 clamp(22px, 5vw, 84px) 100px;
}

.experience-section,
.booking-section,
.admin-preview,
.admin-panel {
  width: min(1400px, 100%);
  margin-inline: auto;
}

.experience-section {
  padding: clamp(90px, 12vw, 170px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 65px;
}

.section-intro h2,
.booking-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.93;
}

.section-intro h2 span,
.booking-header h2 span {
  color: var(--accent);
}

.section-intro > p:last-child {
  max-width: 500px;
  margin-bottom: 5px;
  color: var(--muted);
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--border);
}

.info-card,
.slots-card,
.form-card,
.admin-preview,
.admin-panel {
  background: var(--card-solid);
}

.info-card {
  position: relative;
  min-height: 295px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  transition: background 250ms ease, transform 250ms ease;
}

.info-card::after {
  position: absolute;
  right: -50px;
  bottom: -100px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(200, 255, 56, 0.18);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: 350ms ease;
  content: "";
}

.info-card:hover {
  z-index: 1;
  background: #17191a;
}

.info-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.info-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 62px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
}

.info-card h3 {
  margin-bottom: 13px;
  font-size: 1.2rem;
}

.info-card p,
.admin-preview p,
.selected-slot {
  color: var(--muted);
  line-height: 1.65;
}

.booking-section {
  padding: 35px 0 70px;
}

.booking-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 42px;
}

.date-box {
  min-width: min(100%, 260px);
  padding: 13px 15px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.025);
}

.date-box label,
.form-card label {
  display: block;
  margin-bottom: 8px;
  color: #b5b6ba;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-box label span {
  margin-right: 8px;
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  background: #0c0d0e;
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input::placeholder,
textarea::placeholder { color: #585a60; }

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(200, 255, 56, 0.72);
  background: #0f1011;
  box-shadow: 0 0 0 3px rgba(200, 255, 56, 0.07);
}

.date-box input {
  border: 0;
  background: transparent;
  padding: 3px 0 0;
  color-scheme: dark;
  font-weight: 750;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: 20px;
}

.slots-card,
.form-card,
.admin-preview,
.admin-panel {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.slots-card,
.form-card,
.admin-preview,
.admin-panel {
  padding: clamp(24px, 3.2vw, 42px);
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 31px;
}

.card-heading h3,
.form-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.slot-legend {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #72747b;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.slot-legend i {
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.slot-legend i:nth-of-type(2) { background: #45474c; }

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
  gap: 9px;
}

.slot-button {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8d9dc;
  padding: 15px 9px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 200ms ease;
}

.slot-button:hover:not(:disabled) {
  z-index: 1;
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.slot-button.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #070807;
  box-shadow: 0 0 28px rgba(200, 255, 56, 0.13);
  animation: selected-pulse 1.8s ease-in-out infinite;
}

.slot-button.booked {
  background: rgba(255, 255, 255, 0.015);
  color: #4d4f54;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot-button.unavailable,
.slot-button.past {
  background: rgba(255, 255, 255, 0.01);
  color: #36383c;
  cursor: not-allowed;
}

.form-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(200, 255, 56, 0.035), transparent 40%),
    var(--card-solid);
}

.form-card::before {
  position: absolute;
  top: -1px;
  right: 34px;
  width: 62px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  content: "";
}

.selected-slot {
  min-height: 52px;
  margin: 14px 0 22px;
  padding: 13px 15px;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  font-size: 0.82rem;
}

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

.checkbox-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 4px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.checkbox-line input {
  width: auto;
}

.service-info {
  margin: -3px 0 3px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.message {
  min-height: 20px;
  margin: 17px 0 0;
  font-size: 0.84rem;
  font-weight: 750;
}

.message.success { color: var(--success); }
.message.error { color: var(--danger); }

.admin-preview,
.admin-panel {
  margin-top: 20px;
}

.admin-panel {
  display: grid;
  gap: 22px;
}

.admin-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 26px;
}

.admin-header h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.admin-header h2 span {
  color: var(--accent);
}

.admin-header p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.secondary-button {
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 12px 15px;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.secondary-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.secondary-button.small,
.delete-button {
  padding: 9px 12px;
  font-size: 0.68rem;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--border);
}

.admin-kpis div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-kpis strong {
  color: var(--accent);
  font-size: 1.8rem;
}

.admin-kpis span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-preview summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-preview summary::-webkit-details-marker { display: none; }

.admin-preview summary::after {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
  content: "+";
  transition: transform 200ms ease;
}

.admin-preview[open] summary::after { transform: rotate(45deg); }

.admin-preview[open] summary {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.admin-preview .eyebrow {
  display: block;
  margin-bottom: 5px;
}

.admin-summary {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.admin-note {
  margin: 20px 0 4px;
  font-size: 0.82rem;
}

.appointment-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.appointment-item:first-child { border-top: none; }

.appointment-time {
  min-width: 110px;
  color: var(--accent);
  font-weight: 900;
}

.appointment-details {
  display: grid;
  flex: 1;
  gap: 4px;
}

.appointment-details span,
.appointment-details small,
.empty-state {
  color: var(--muted);
}

.appointment-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.delete-button {
  align-self: center;
  border: 1px solid rgba(255, 123, 123, 0.25);
  border-radius: 2px;
  background: rgba(255, 123, 123, 0.06);
  color: var(--danger);
  padding: 9px 13px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.delete-button:hover { background: rgba(255, 123, 123, 0.14); }

footer {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 50px 25px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 120%, rgba(200, 255, 56, 0.1), transparent 42%),
    #050505;
  text-align: center;
}

.footer-brand {
  color: var(--text);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}

footer p {
  margin: -20px 0 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

footer small { color: #55575d; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card.reveal:nth-child(2) { transition-delay: 100ms; }
.info-card.reveal:nth-child(3) { transition-delay: 200ms; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.85); opacity: 0.05; }
  50% { transform: scale(1.12); opacity: 0.12; }
}

@keyframes signal {
  50% { box-shadow: 0 0 0 8px rgba(200, 255, 56, 0.03), 0 0 22px var(--accent); }
}

@keyframes scan {
  50%, 100% { transform: translateX(100%); }
}

@keyframes selected-pulse {
  50% { box-shadow: 0 0 32px rgba(200, 255, 56, 0.26); }
}

@media (max-width: 1050px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 85px;
  }

  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 500px; }
  .content-layout { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
  }
  .nav { min-height: 76px; }
  .open-status { display: none; }
  .nav-button { padding: 11px 13px; }
  .nav-button > span { display: none; }
  .hero-content {
    width: 100%;
    min-width: 0;
    padding: 76px 0 105px;
  }
  .hero-copy,
  .hero-visual {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .hero-visual { min-height: 410px; overflow: hidden; }
  .orbit-one { width: 300px; height: 300px; }
  .orbit-two { width: 390px; height: 390px; }
  .visual-core { width: 220px; height: 220px; }
  .visual-core strong { font-size: 5rem; }
  .floating-card-top { right: 2%; }
  .floating-card-bottom { left: 1%; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 240px; }
  .info-number { margin-bottom: 38px; }
  .booking-header { align-items: stretch; flex-direction: column; }
  .date-box { width: 100%; }
}

@media (max-width: 520px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 14vw, 3.5rem);
  }
  .brand-muted { display: none; }
  .brand { gap: 9px; font-size: 0.78rem; }
  .brand-mark { width: 31px; height: 31px; }
  .nav-actions {
    position: absolute;
    right: 0;
  }
  .nav-button {
    min-width: auto;
    padding: 11px 12px;
    font-size: 0;
  }
  .nav-button::before {
    font-size: 0.67rem;
    content: "Buchen";
  }
  h1 em { display: block; }
  .hero-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .primary-button { width: 100%; }
  .text-button { align-self: flex-start; }
  .hero-proof { justify-content: flex-start; gap: 38px; }
  .hero-proof div:nth-child(2) { display: none; }
  .hero-visual { min-height: 350px; }
  .orbit-two { width: 350px; height: 350px; }
  .floating-card { min-width: 185px; }
  .floating-card-top { top: 8%; }
  .floating-card-bottom { bottom: 5%; }
  .scroll-cue { display: none; }
  .card-heading { align-items: flex-start; flex-direction: column; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .appointment-item,
  .admin-preview summary { align-items: flex-start; flex-wrap: wrap; }
  .admin-summary { margin-left: 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
