:root {
  --color-primary: #DB2777;
  --color-secondary: #F472B6;
  --color-accent: #CA8A04;
  --color-neutral-dark: #831843;
  --color-neutral-light: #FDF2F8;
  --color-text: #3B0A1E;
  --color-muted: #7A2F52;
  --color-border: rgba(131, 24, 67, 0.14);
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 6px 20px -12px rgba(131, 24, 67, 0.35);
  --shadow-md: 0 20px 45px -25px rgba(131, 24, 67, 0.4);
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: none;
  border: 0;
  color: var(--color-neutral-dark);
  padding: .5rem;
  cursor: pointer;
}
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 600;
  padding: .6rem 0;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav a:last-child { border-bottom: 0; }
.primary-nav a.is-active { color: var(--color-primary); }

@media (min-width: 900px) {
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 2rem;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .primary-nav a { border: 0; padding: 0; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-neutral-dark); }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #a86f03; }
.btn--ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(253,242,248,.5); }
.btn--ghost:hover { background: rgba(253,242,248,.12); }

/* === Hero (centered) === */
.hero {
  padding-block: 3rem;
  text-align: center;
}
.hero h1 { max-width: 28ch; margin-inline: auto; }
.hero__sub {
  max-width: 52ch;
  margin: 1rem auto 1.75rem;
  color: var(--color-muted);
  font-size: 1.15rem;
}
.hero__cta { margin-bottom: 2.5rem; }
.hero__figure {
  margin: 2.5rem 0 0;
}
.hero__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .hero { padding-block: 5rem; }
}
@media (min-width: 1024px) {
  .hero { padding-block: 6rem; }
}

/* === Sections === */
.section {
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .section { padding-block: 4.5rem; }
}
.section--narrow .container {
  max-width: 760px;
}
.section--narrow h2 { text-align: center; }
.section--narrow .section__sub { text-align: center; }
.section--tinted {
  background: #fff;
  border-block: 1px solid var(--color-border);
}
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section__sub {
  color: var(--color-muted);
  max-width: 56ch;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}
.section__title-center { text-align: center; }

/* === Grid / Cards === */
.grid { display: grid; gap: 1.25rem; }
.grid--cards { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
  .grid--cards.grid--two { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(219, 39, 119, 0.1);
  color: var(--color-primary);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-neutral-dark); }
.card p { color: var(--color-text); margin: 0; }
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.card__more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* === Testimonial === */
.testimonial-section { background: transparent; }
.testimonial {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
  position: relative;
}
.testimonial p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-neutral-dark);
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 600;
}

/* === CTA Band === */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding-block: 3.5rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 60ch; margin-inline: auto; }

/* === Article detail === */
.article-detail {
  max-width: 65ch;
  margin-inline: auto;
  padding: 3rem 1.25rem;
}
.article-detail .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.article-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-detail__sub {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.article-detail__figure {
  margin: 2rem 0;
}
.article-detail__figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
}
.article-detail p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-block: 1.25rem;
}
.article-detail__footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.back-link {
  font-weight: 600;
  color: var(--color-primary);
}

/* === Contact === */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.hours th, .hours td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-weight: 500;
}
.hours th { color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }

/* === Contact form === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--color-neutral-dark);
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-neutral-light);
  color: var(--color-text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.55rem !important;
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.form-consent input { margin-top: 0.25rem; }

/* === FAQ === */
.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  font-size: 1.1rem;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-primary);
  font-size: 1.3rem;
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin-top: 0.75rem; color: var(--color-text); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-top: 3rem;
  margin-top: 3rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
  padding-bottom: 2rem;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.site-footer p, .site-footer address { color: rgba(253,242,248,.85); font-style: normal; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-secondary); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.legal-links { margin-top: 1rem; }
.logo--footer img { height: 64px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer__base {
  padding-block: 1.25rem;
  border-top: 1px solid rgba(253,242,248,.15);
  font-size: 0.9rem;
  color: rgba(253,242,248,.7);
  text-align: center;
}

/* === 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);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.35);
  max-width: 640px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner__actions .btn { padding: 0.55rem 1rem; font-size: 0.9rem; }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(253,242,248,.15);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.55rem; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

@media (min-width: 640px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; }
}
