/* ============================================================
   Dr. Penny von Manstein – Praxis für Psychotherapie
   Modern · Minimalistic · Responsive
   ============================================================ */

:root {
  /* Accent */
  --clr-accent:        #b07d3a;
  --clr-accent-light:  #d4a05a;
  --clr-accent-bg:     #fdf6ec;
  --clr-accent-muted:  #f0e0c4;

  /* Text */
  --clr-text:          #1a1a1a;
  --clr-text-muted:    #6b7280;
  --clr-text-light:    #9ca3af;

  /* Surfaces */
  --clr-bg:            #ffffff;
  --clr-bg-alt:        #f9f7f4;
  --clr-border:        #e8e2d9;
  --clr-dark:          #1c1917;

  /* Glass header */
  --header-bg:         rgba(255, 255, 255, 0.82);
  --header-bg-scroll:  rgba(255, 255, 255, 0.92);
  --header-border:     rgba(255, 255, 255, 0.55);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --max-width: 1100px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.section     { padding-block: var(--space-2xl); }
.section-alt { background: var(--clr-bg-alt); }

/* ---------- Typography ---------- */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-text {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--clr-accent); outline-offset: 3px; }

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
  box-shadow: 0 4px 18px rgba(176,125,58,.35);
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--clr-text);
  border-color: rgba(255,255,255,.8);
}
.btn-light:hover {
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  max-width: 1060px;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--header-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.4) inset;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: var(--header-bg-scroll);
  box-shadow: 0 12px 40px rgba(0,0,0,.22), 0 1px 0 rgba(255,255,255,.5) inset;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  gap: var(--space-md);
}
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.2;
}
.brand-subtitle { font-size: 0.73rem; color: var(--clr-accent); font-weight: 500; letter-spacing: 0.03em; }

.nav-links { display: flex; align-items: center; gap: var(--space-md); }
.nav-links a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--clr-accent);
  transition: width var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--clr-accent); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 0.5rem 1.1rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--clr-bg-alt); }
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--clr-text); border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* hero starts at top-0 — the floating header overlays it, which is intentional */
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15,12,8,0.75) 0%,
    rgba(15,12,8,0.45) 55%,
    rgba(15,12,8,0.18) 100%
  );
}
.hero-inner { position: relative; z-index: 1; padding-block: var(--space-2xl); }
.hero-content { max-width: 580px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent-light);
  margin-bottom: var(--space-sm);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.55);
  animation: bounce 2.2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: #fff; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ---------- Quick Facts ---------- */
.quick-facts {
  background: #f5e9c8;
  padding-block: 1.4rem;
  overflow: hidden;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  align-items: center;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5a3e1b;
  font-size: 0.82rem;
  font-weight: 500;
  justify-content: center;
  text-align: left;
  word-break: break-word;
  hyphens: auto;
  min-width: 0;
}
.fact-item svg { flex-shrink: 0; opacity: 0.8; width: 18px; height: 18px; }
.fact-item-btn {
  background: none;
  border: 1.5px solid rgba(90,62,27,0.25);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem 0.3rem 0.4rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  min-width: 0;
}
.fact-item-btn:hover {
  background: rgba(90,62,27,0.1);
  border-color: rgba(90,62,27,0.5);
}

/* ---------- About (split) ---------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}
.split-image { display: flex; justify-content: center; }
.split-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.split-content .section-title { margin-top: var(--space-xs); }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--clr-accent-muted);
  color: var(--clr-accent);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ---------- Behandlung ---------- */
.behandlung-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}
.behandlung-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 2/3;
  max-height: 520px;
}
.behandlung-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.bcard {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.bcard h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}
.bcard p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}
.bcard ul {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bcard ul li {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding-left: 1rem;
  position: relative;
}
.bcard ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
}
.bcard-accent {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}
.bcard-accent h3 { color: #fff; }
.bcard-accent p  { color: rgba(255,255,255,.88); }

/* ---------- Gallery Strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  height: 240px;
  overflow: hidden;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  filter: brightness(0.9) saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}
/* Hide the mobile-only items on desktop — only berge shows */
.gallery-item-mobile-only { display: none; }
.gallery-item-wide { display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.contact-box:hover { box-shadow: var(--shadow-md); }
.contact-box-clickable {
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.contact-box-clickable:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  background: #fef3e2;
}
.contact-box-clickable:active { transform: translateY(0); }
.contact-box-highlight {
  border-color: var(--clr-accent-muted);
  background: var(--clr-accent-bg);
}
.contact-box-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-accent-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-accent);
  margin-top: 2px;
}
.contact-box strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text);
  margin-bottom: 0.2rem;
}
.contact-box p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}
.contact-box a:hover { color: var(--clr-accent); }
.box-link {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--clr-accent);
  font-weight: 500;
  transition: opacity var(--transition);
}
.box-link:hover { opacity: 0.75; }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-border);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.required { color: var(--clr-accent); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg-alt);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-text-light); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(176,125,58,.12);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--clr-dark); color: #d6d3d1; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; border-radius: 8px; opacity: 0.85; }
.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}
.footer-brand span { font-size: 0.75rem; color: var(--clr-accent-light); }
.footer-contact p { font-size: 0.88rem; line-height: 1.9; }
.footer-contact a:hover { color: var(--clr-accent-light); }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.88rem;
  color: #a8a29e;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-block: var(--space-sm);
}
.footer-bottom p { font-size: 0.78rem; color: #78716c; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .behandlung-layout { grid-template-columns: 1fr; }
  .behandlung-image img { aspect-ratio: 16/7; max-height: 300px; }
}

@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; text-align: center; }
  .split-image { justify-content: center; }
  .split-img { max-width: 300px; aspect-ratio: 1/1; }
  .tag-list { justify-content: center; }

  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .fact-item { justify-content: flex-start; font-size: 0.8rem; }
  .quick-facts { padding-block: 1.6rem; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0; right: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm) var(--space-md) var(--space-md);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    gap: 0.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 0.5rem; text-align: center; justify-content: center; }

  .hero { min-height: 75vh; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .behandlung-cards { grid-template-columns: 1fr; }

  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 180px; }
  /* On tablet show couch, berge, Vase1 — hide mobile-only items */
  .gallery-item-mobile-only { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--space-md); }

  .section { padding-block: var(--space-xl); }
}

@media (max-width: 480px) {
  .fact-item { font-size: 0.82rem; }
  /* On small mobile: show all items in 2-column grid */
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-mobile-only { display: block; }
  .gallery-item-wide { display: none; }
  .brand-name { font-size: 0.95rem; }
}

/* ---------- Booking Popup ---------- */
.booking-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 12, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}
.booking-backdrop.open {
  display: flex;
  animation: fadeIn 0.22s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.6) inset;
  padding: var(--space-lg);
  animation: slideUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes slideUp {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

.booking-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted);
  transition: background var(--transition), color var(--transition);
}
.booking-close:hover { background: rgba(0,0,0,.12); color: var(--clr-text); }

.booking-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.booking-header h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}
.booking-header p { font-size: 0.82rem; color: #444; }

.booking-fields { display: flex; flex-direction: column; gap: var(--space-sm); }

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.time-slot {
  padding: 0.5rem 0.3rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--clr-border);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: center;
}
.time-slot:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-bg);
}
.time-slot.selected {
  border-color: var(--clr-accent);
  background: var(--clr-accent);
  color: #fff;
}

.booking-step-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-xs);
}

.btn-ghost-outline {
  background: transparent;
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
}
.btn-ghost-outline:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
}

/* Date input styling */
input[type="date"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: rgba(255,255,255,.7);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input[type="date"]:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(176,125,58,.12);
}

@media (max-width: 480px) {
  .booking-modal { padding: var(--space-md); }
  .time-slots { grid-template-columns: repeat(4, 1fr); }
  .booking-step-actions { flex-direction: column-reverse; }
  .booking-step-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .hero-scroll { animation: none; }
}
:focus-visible { outline: 3px solid var(--clr-accent); outline-offset: 3px; }

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 3rem);
  max-width: 780px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.5) inset;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  pointer-events: none;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1rem 1.4rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 200px;
}
.cookie-banner-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.2rem;
}
.cookie-banner-text p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn-decline {
  background: transparent;
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}
.cookie-btn-decline:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-text);
  border-color: var(--clr-text-muted);
}
.cookie-btn-accept {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}
.cookie-btn-accept:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
  box-shadow: 0 4px 14px rgba(176,125,58,.3);
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    transform: none;
    max-width: none;
  }
  .cookie-banner-hidden {
    transform: translateY(12px);
  }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
