/* ============================================
   Isabel Rodrigues — Neuropsychologue & Psychologue
   Stylesheet — Minimalist & Modern
   ============================================ */

/* ---- Variables ---- */
:root {
  --purple:       #C090D0;
  --purple-light: #D4AADE;
  --purple-bg:    #EDD5F5;
  --purple-pale:  #F4EAF8;
  --cream:        #F8F3EE;
  --cream-dark:   #EDE6DC;
  --text-dark:    #3D3245;
  --text-mid:     #5E5368;
  --text-light:   #8B7E95;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(100, 60, 130, 0.10);
  --shadow-lg:    0 12px 48px rgba(100, 60, 130, 0.15);
  --radius:       16px;
  --radius-sm:    8px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

em { font-style: italic; color: var(--purple); }

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(100, 60, 130, 0.25);
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--purple);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid var(--white);
}

.btn-primary-light:hover {
  background: transparent;
  color: var(--white);
}

/* ---- Section Tag ---- */
.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-tag.light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(248, 243, 238, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(100, 60, 130, 0.08);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
}

.nav-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 600;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover { color: var(--purple); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--text-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.hero-left {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
}

.hero-content {
  text-align: center;
  max-width: 380px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  animation: float 4s ease-in-out infinite;
}

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

.hero-name {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-titles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.separator {
  color: var(--purple-light);
}

.hero-right {
  background: var(--purple-light);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.hero-quote {
  position: relative;
  z-index: 1;
  max-width: 420px;
  text-align: center;
}

.hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--purple);
}

.badge-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.badge strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.badge span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-card {
  background: linear-gradient(145deg, var(--purple-light), var(--purple));
  border-radius: 24px;
  padding: 3px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
}

.about-card-inner {
  background: var(--white);
  border-radius: 22px;
  padding: 48px 36px;
  text-align: center;
}

.about-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
}

.about-card-inner h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.about-card-inner > p {
  color: var(--purple);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-info-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.contact-info-mini a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.contact-info-mini a:hover { color: var(--purple); }

.contact-info-mini svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: var(--purple);
}

/* ============================================
   SERVICES
   ============================================ */
#services {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--purple-pale);
  transition: background var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  background: var(--purple);
}

.service-card.featured {
  background: var(--purple-pale);
  border-color: var(--purple-light);
}

.service-card.featured::before {
  background: var(--purple);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--purple);
}

.service-card.featured .service-icon {
  background: var(--white);
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.service-card > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.service-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ============================================
   AGENDA
   ============================================ */
#agenda {
  background: linear-gradient(135deg, var(--purple) 0%, #A870C0 100%);
  padding: 100px 0;
}

.agenda-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.agenda-info h2 {
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 12px;
}

.agenda-info p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.agenda-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agenda-day {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.day-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.day-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
}

.time-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.time-start, .time-end {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  min-width: 48px;
}

.time-end { text-align: right; }

.time-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}

.time-fill {
  height: 100%;
  background: var(--white);
  border-radius: 3px;
  width: 100%;
  transform-origin: left;
  animation: fillBar 1.5s ease forwards;
}

@keyframes fillBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.day-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.agenda-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.agenda-note svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.agenda-note p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.agenda-note strong {
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info > p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--purple);
}

.contact-item strong {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--purple); }

/* ---- Form ---- */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

input, select, textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B7E95' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(192, 144, 208, 0.15);
}

input.error, select.error, textarea.error {
  border-color: #e07070;
}

textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--purple);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(100, 60, 130, 0.25);
}

.btn-submit svg {
  width: 18px; height: 18px;
  transition: transform var(--transition);
}

.btn-submit:hover svg { transform: translateX(4px); }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}

/* ---- Form Success ---- */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px; height: 72px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 36px; height: 36px;
  stroke: var(--purple);
  stroke-width: 2.5;
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-mid);
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: var(--text-dark);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 44px; height: 44px;
  filter: brightness(0) invert(1) opacity(0.7);
}

.footer-brand h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--purple-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--purple-light); }

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

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  section { padding: 72px 0; }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 120px 32px 60px;
  }

  .hero-right {
    padding: 60px 32px;
    min-height: 280px;
  }

  .about-grid,
  .agenda-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image { order: -1; }
  .about-card { max-width: 100%; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: var(--shadow);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1rem;
  }

  .nav-links a.nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    background: var(--purple);
    border-radius: 50px;
    padding: 12px 24px;
  }

  .nav-toggle { display: flex; }

  .hero-left { padding: 100px 24px 48px; }
  .hero-right { padding: 48px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 32px 24px; }

  .booking-dates-grid { grid-template-columns: 1fr; }
  .booking-slots-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   BOOKING WIDGET
   ============================================ */

/* Loading state */
.booking-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 56px 24px;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.booking-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--purple-pale);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Step header */
.booking-step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 4px 12px;
  border-radius: 50px;
}

.booking-step-header {
  margin-bottom: 24px;
}

.booking-step-header h3 {
  margin-top: 10px;
  margin-bottom: 0;
}

.booking-selected-date {
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* Back button */
.booking-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.booking-back-btn:hover { color: var(--purple); }

.booking-back-btn svg {
  width: 16px;
  height: 16px;
}

/* Date grid */
.booking-dates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.booking-date-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  font-family: 'Jost', sans-serif;
  transition: var(--transition);
}

.booking-date-card:hover {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(192, 144, 208, 0.15);
  transform: translateY(-2px);
}

.booking-date-weekday {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.booking-date-num {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
}

.booking-date-slots {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* Slots grid */
.booking-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.booking-slot-btn {
  padding: 14px 10px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: center;
  transition: var(--transition);
}

.booking-slot-btn:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
  color: var(--purple);
  transform: translateY(-1px);
}

/* Slot summary pill (step 3) */
.booking-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--purple-pale);
  border: 1px solid var(--purple-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.93rem;
  color: var(--purple);
  font-weight: 400;
}

.booking-summary svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple);
  flex-shrink: 0;
}

/* Inline form error */
.booking-form-error {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  color: #dc2626;
  font-size: 0.88rem;
  text-align: center;
}

/* Confirmation note */
.booking-confirm-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Error / empty states */
.booking-error,
.booking-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 48px 24px;
  text-align: center;
  color: var(--text-mid);
}

.booking-error svg,
.booking-empty svg {
  width: 40px;
  height: 40px;
  stroke: var(--purple-light);
  margin-bottom: 4px;
}

.booking-error p,
.booking-empty p { font-size: 0.95rem; }

.booking-error a,
.booking-empty a {
  color: var(--purple);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.booking-error a:hover,
.booking-empty a:hover { color: var(--text-dark); }

/* ============================================
   ABOUT PHOTO
   ============================================ */
.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid var(--purple-pale);
  display: block;
}

.about-photo--fallback {
  border-radius: 0;
  border: none;
  width: 100px;
  height: 100px;
}

/* ============================================
   MAP
   ============================================ */
.map-wrapper {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
}

/* ============================================
   FAQ
   ============================================ */
#faq {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--purple); }

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--purple);
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.privacy-date {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.privacy-section p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.privacy-section a {
  color: var(--purple);
  transition: color var(--transition);
}

.privacy-section a:hover { color: var(--text-dark); }

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 16px;
  border-left: 3px solid var(--purple-pale);
}

.privacy-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.privacy-back {
  margin-top: 48px;
}

/* Footer privacy link */
.footer-privacy-link {
  color: inherit;
  text-decoration: underline;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer-privacy-link:hover { opacity: 1; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: var(--text-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  z-index: 9999;
}

.cookie-banner[hidden] { display: none; }

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.cookie-content a {
  color: var(--purple-light);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}

.cookie-btn:hover { background: var(--purple-light); }

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .cookie-content { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-btn { width: 100%; text-align: center; }
}
