:root {
  --color-primary: #FF4D4D;
  --color-secondary: #4D94FF;
  --color-accent: #00E676;
  --color-neutral-dark: #1C1C1E;
  --color-neutral-light: #F5F5F7;
  --color-rose-bg: #FBEFEB;
  --color-rose-soft: #F3DDD5;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-card: 0 30px 60px -30px rgba(28,28,30,0.25);
  --shadow-soft: 0 10px 30px -15px rgba(28,28,30,0.18);
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-rose-bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }

/* === Layout === */
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 780px; }
.section { padding-block: 4rem; }
.section-alt { background: #fff; }
.section-header { text-align: center; margin-bottom: 2.5rem; max-width: 640px; margin-inline: auto; }
.section-header p { color: #5c5c60; }

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,239,235,0.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(28,28,30,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: transparent; border: 0; padding: 0.5rem;
  color: var(--color-neutral-dark); cursor: pointer;
}
.primary-nav { display: none; gap: 1.5rem; align-items: center; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav a:hover { color: var(--color-primary); text-decoration: none; }
.primary-nav.is-open {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; padding: 1.25rem;
  border-bottom: 1px solid rgba(28,28,30,0.08);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .logo img { height: 96px; }
}

/* === Hero card === */
.hero-card-wrap { padding-block: 3rem 2rem; }
.hero-card {
  max-width: 880px;
  margin-inline: auto;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--color-neutral-light);
  box-shadow: var(--shadow-card);
  text-align: left;
}
.hero-card .eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; font-weight: 600;
  color: var(--color-primary); margin-bottom: 0.75rem;
}
.hero-card h1 { margin-bottom: 1.25rem; }
.hero-card .lede { font-size: 1.125rem; color: #45454a; max-width: 60ch; }
.hero-cta { margin-top: 1.5rem; }
.hero-card__figure {
  margin: 2rem 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-rose-soft);
}
.hero-card__figure img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 768px) {
  .hero-card { padding: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-accent { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.btn-ghost { background: transparent; color: var(--color-neutral-dark); border-color: var(--color-neutral-dark); }

/* === Grids & cards === */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; gap: 2.5rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.card {
  background: var(--color-neutral-light);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.card .icon { color: var(--color-primary); margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: #45454a; margin: 0; }

/* === Team cards === */
.team-card {
  background: var(--color-neutral-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.team-card figure { margin: 0; aspect-ratio: 1 / 1; background: var(--color-rose-soft); }
.team-card figure img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin: 1rem 1.25rem 0.5rem; font-size: 1.05rem; }
.team-card p { margin: 0 1.25rem 1.25rem; color: #45454a; font-size: 0.95rem; }

/* === Service list with image === */
.with-image .side-image { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 5; background: var(--color-rose-soft); margin: 0; }
.with-image .side-image img { width: 100%; height: 100%; object-fit: cover; }
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.service-list h3 { margin-bottom: 0.35rem; }
.service-list p { color: #45454a; margin: 0; }

/* === Pull quote === */
.pull-quote {
  margin: 0;
  padding: 2.5rem 1rem;
  text-align: center;
  font-family: var(--font-heading);
}
.pull-quote p {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 500; line-height: 1.4;
  color: var(--color-neutral-dark);
  max-width: 40ch; margin-inline: auto; margin-bottom: 1rem;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-style: normal; font-size: 0.95rem;
  color: #5c5c60; letter-spacing: 0.04em;
}

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

/* === FAQ === */
.faq details {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer; font-weight: 600;
  font-family: var(--font-heading);
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: 0;
  font-size: 1.4rem; color: var(--color-primary); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin-top: 0.75rem; color: #45454a; }

/* === Contact form === */
.contact-form { display: grid; gap: 1rem; background: #fff; padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 600; font-size: 0.9rem; font-family: var(--font-heading); }
.field input, .field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(28,28,30,0.15);
  border-radius: var(--radius-sm);
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-primary); outline-offset: 1px;
}
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: #45454a; }
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-primary); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer .logo img { height: 64px; filter: brightness(0) invert(1); margin-bottom: 0.5rem; }
.site-footer .tagline { color: rgba(245,245,247,0.7); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.legal-links { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.85rem; }
.copyright { padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(245,245,247,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);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
  max-width: 720px; margin-inline: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 0.75rem; font-size: 0.95rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button {
  font: inherit; font-family: var(--font-heading); font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px; border: 1px solid rgba(245,245,247,0.3);
  background: transparent; color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); color: var(--color-neutral-dark); border-color: var(--color-accent); }
.cookie-banner__prefs { display: grid; gap: 0.5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(245,245,247,0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs button[data-cookie-save] { justify-self: start; margin-top: 0.5rem; }
