:root {
  --color-primary: #1E40AF;
  --color-secondary: #3B82F6;
  --color-accent: #22C55E;
  --color-neutral-dark: #1E3A8A;
  --color-neutral-light: #EFF6FF;
  --color-ink: #0F1E4A;
  --color-muted: #4C6BB8;
  --color-line: rgba(30, 58, 138, 0.14);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-soft: 0 20px 40px -24px rgba(30, 58, 138, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #FAFCFF;
  line-height: 1.65;
  font-size: 17px;
}
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); color: var(--color-neutral-dark); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; top: 1rem; left: 1rem; background: var(--color-neutral-dark); color: #fff; padding: 0.5rem 1rem; z-index: 10000; border-radius: 6px; }

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

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid var(--color-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) { .logo img { height: 96px; } }

.nav-toggle {
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--color-neutral-dark); display: block; }

.primary-nav { display: none; }
.primary-nav.is-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); border-bottom: 1px solid var(--color-line); padding: 1rem 1.25rem; }
.primary-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.primary-nav a { font-weight: 500; color: var(--color-neutral-dark); }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: block; position: static; padding: 0; background: transparent; border: 0; }
  .primary-nav ul { flex-direction: row; gap: 1.75rem; align-items: center; }
}

/* === Hero centered === */
.hero {
  text-align: center;
  padding-block: 3.5rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, #FAFCFF 100%);
}
@media (min-width: 768px) { .hero { padding-block: 6rem; } }
.hero h1 { max-width: 28ch; margin-inline: auto; font-weight: 600; }
.hero__sub { max-width: 52ch; margin: 0 auto 2rem; color: var(--color-muted); font-size: 1.125rem; }
.hero__cta { margin-bottom: 3rem; }
.hero__image { margin: 2.5rem auto 0; max-width: 960px; }
.hero__image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 16/9; object-fit: cover; }

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

/* === Sections === */
.section { padding-block: 3.5rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.section__sub { color: var(--color-muted); font-size: 1.05rem; }

/* === Intro === */
.intro { text-align: center; }
.intro p { color: var(--color-ink); font-size: 1.05rem; text-align: left; }
.intro h2 { text-align: center; }
.intro__image { margin-top: 2.5rem; }
.intro__image img { border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 16/9; object-fit: cover; width: 100%; }

/* === Highlights grid === */
.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); } }

.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card h3 { margin-top: 0.75rem; color: var(--color-neutral-dark); }
.card p { margin-bottom: 0; color: var(--color-ink); }
.card .icon { color: var(--color-primary); }
.card-link { display: block; color: inherit; text-decoration: none; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); text-decoration: none; }

.icon { width: 28px; height: 28px; }

.gallery-image { margin: 0 0 2rem; }
.gallery-image img { border-radius: var(--radius); box-shadow: var(--shadow-soft); width: 100%; aspect-ratio: 21/9; object-fit: cover; }

/* === Testimonial === */
.testimonial { background: var(--color-neutral-light); }
.testimonial blockquote { margin: 0; text-align: center; }
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial cite { font-style: normal; color: var(--color-muted); font-size: 0.95rem; }

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

/* === Contact band === */
.contact-band { background: var(--color-neutral-light); text-align: center; }
.contact-band p { color: var(--color-ink); font-size: 1.05rem; }

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

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: #E6ECFB; padding-top: 3rem; margin-top: 2rem; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.site-footer a { color: #C7D3F0; }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer .tagline { color: #C7D3F0; margin-top: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; }
.logo--footer img { height: 60px; }
@media (min-width: 768px) { .logo--footer img { height: 72px; } }
.site-footer__copy { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-block: 1.25rem; font-size: 0.9rem; color: #B4C2E5; }

/* === 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;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5);
  max-width: 560px;
  margin-left: auto;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button {
  font: inherit;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
}
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); color: #062814; border-color: var(--color-accent); font-weight: 600; }
.cookie-banner__actions button:hover { border-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; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; background: var(--color-neutral-light); color: var(--color-neutral-dark); border: 0; font: inherit; cursor: pointer; font-weight: 500; }
