:root {
  --color-primary: #D946EF;
  --color-secondary: #E879F9;
  --color-accent: #F97316;
  --color-neutral-dark: #86198F;
  --color-neutral-light: #FDF4FF;
  --ink: #3A0F44;
  --muted: #6B4B72;
  --border: rgba(134, 25, 143, 0.14);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow-lg: 0 20px 60px -25px rgba(58, 15, 68, 0.25);
}

/* === Base === */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-neutral-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: var(--ink); line-height: 1.2; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; color: var(--color-neutral-dark); margin-bottom: 1rem; font-weight: 500; }

.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow, .narrow { max-width: 780px; margin-inline: auto; padding-inline: 1.25rem; }

/* === Header === */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(253, 244, 255, 0.9);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo { display: inline-flex; text-decoration: none; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px; background: none; border: none;
  padding: 0.5rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-dark); }
.primary-nav { display: none; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.primary-nav a { text-decoration: none; font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav.is-open { display: block; padding: 1rem 0; border-top: 1px solid var(--border); }

/* === Hero split === */
.hero { padding-block: 3rem; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.hero-copy .sub { font-size: 1.125rem; color: var(--muted); max-width: 48ch; margin-bottom: 1.75rem; }
.hero-media img { aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* === Buttons === */
.btn {
  display: inline-block; padding: 0.9rem 1.6rem; border-radius: 999px;
  font-weight: 500; text-decoration: none; font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-neutral-dark); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #d95a0a; color: #fff; }

/* === Sections === */
.section { padding-block: 3.5rem; }
.section.alt { background: rgba(232, 121, 249, 0.06); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head .sub { color: var(--muted); font-size: 1.05rem; }
.intro h2 { max-width: 22ch; }
.intro p { color: var(--muted); font-size: 1.0625rem; }

/* === Highlights grid === */
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; display: block; text-decoration: none; color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card svg { color: var(--color-primary); margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--color-secondary); }

/* === Testimonial === */
.testimonial blockquote {
  margin: 0; padding: 0; text-align: center;
  font-family: var(--font-heading); font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.5; color: var(--ink);
}
.testimonial blockquote p { margin-bottom: 1.25rem; font-style: italic; }
.testimonial cite { font-family: var(--font-body); font-style: normal; font-size: 0.95rem; color: var(--muted); letter-spacing: 0.04em; }

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff; padding-block: 4rem; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 55ch; margin-inline: auto; margin-bottom: 1.75rem; }
.cta-band a.btn { color: #fff; }
.cta-band .contact-inline { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-band .contact-inline a { color: #fff; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.hours-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.hours-table caption { font-family: var(--font-heading); font-size: 1.25rem; padding: 1rem; text-align: left; color: var(--ink); }
.hours-table th, .hours-table td { padding: 0.75rem 1rem; text-align: left; border-top: 1px solid var(--border); font-size: 0.95rem; }
.hours-table th { font-weight: 500; color: var(--color-neutral-dark); }

/* === Form === */
.contact-form { display: grid; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--color-neutral-dark); }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.75rem 0.9rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary); outline-offset: 1px; border-color: var(--color-primary);
}
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark); color: rgba(253, 244, 255, 0.85);
  padding-block: 3rem 1.5rem; margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { color: rgba(253, 244, 255, 0.85); text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo img { filter: brightness(0) invert(1); height: 60px; }
.site-footer .tagline { font-family: var(--font-heading); font-style: italic; font-size: 1rem; margin-top: 0.75rem; color: rgba(253, 244, 255, 0.7); }
.site-footer address { font-style: normal; font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.legal-links { flex-direction: row !important; gap: 1rem !important; flex-wrap: wrap; }
.copyright { padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(253, 244, 255, 0.15); font-size: 0.85rem; text-align: center; color: rgba(253, 244, 255, 0.6); }

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  display: none; z-index: 9999;
  background: var(--color-neutral-dark); color: var(--color-neutral-light);
  border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow-lg);
  max-width: 640px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; color: rgba(253, 244, 255, 0.9); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit; font-size: 0.85rem; padding: 0.55rem 1rem; border-radius: 999px;
  border: 1px solid rgba(253, 244, 255, 0.3); background: transparent;
  color: var(--color-neutral-light); cursor: pointer;
}
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; }

/* === Media queries === */
@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 768px) {
  .logo img { height: 96px; }
  .site-footer .logo img { height: 72px; }
  .nav-toggle { display: none; }
  .primary-nav { display: block !important; }
  .primary-nav ul { flex-direction: row; gap: 1.75rem; align-items: center; }
  .hero { padding-block: 5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .section { padding-block: 5rem; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1.2fr; gap: 3rem; }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
