:root {
  --color-primary: #0F172A;
  --color-secondary: #1E3A8A;
  --color-accent: #CA8A04;
  --color-neutral-dark: #020617;
  --color-neutral-light: #F8FAFC;
  --color-muted: #64748B;
  --color-border: rgba(2, 6, 23, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 20px 40px -20px rgba(2, 6, 23, 0.25);
}

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

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.container.narrow { max-width: 760px; }
.eyebrow { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-secondary); font-weight: 500; margin-bottom: 1rem; }

/* === Buttons === */
.btn { display: inline-block; padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 500; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background-color .15s ease, color .15s ease; text-decoration: none; font-family: var(--font-body); }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-primary:hover { background: var(--color-secondary); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-accent:hover { background: #a67203; }
.btn-ghost { background: transparent; color: var(--color-neutral-light); border-color: rgba(248, 250, 252, 0.35); }

/* === Header === */
.site-header { background: var(--color-neutral-light); border-bottom: 1px solid var(--color-border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; gap: 1rem; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: transparent; border: 0; color: var(--color-primary); padding: 0.5rem; cursor: pointer; display: inline-flex; }
.primary-nav { display: none; flex-direction: column; gap: 0.5rem; 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-primary); font-weight: 500; padding-block: 0.5rem; }
.primary-nav a[aria-current="page"] { color: var(--color-secondary); }

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

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

/* === Sections === */
.section { padding-block: 4rem; }
.section-intro { text-align: center; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head p { color: var(--color-muted); max-width: 60ch; margin-inline: auto; }
@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}

/* === Grid & Cards === */
.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.card__icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; background: rgba(30, 58, 138, 0.08); color: var(--color-secondary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--color-muted); font-size: 0.95rem; margin: 0; }

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

/* === CTA band === */
.cta-band { background: var(--color-primary); color: var(--color-neutral-light); padding-block: 4rem; text-align: center; }
.cta-band h2 { color: var(--color-neutral-light); max-width: 30ch; margin-inline: auto; }
.cta-band p { color: rgba(248, 250, 252, 0.8); max-width: 55ch; margin: 0 auto 2rem; }

/* === Gallery === */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* === FAQ === */
.faq-list details { border-bottom: 1px solid var(--color-border); padding-block: 1.25rem; }
.faq-list summary { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--color-primary); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq-list summary::after { content: "+"; color: var(--color-accent); font-weight: 400; font-size: 1.5rem; line-height: 1; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: 1rem; color: var(--color-muted); }

/* === Contact band === */
.contact-band { display: grid; gap: 1.5rem; justify-items: center; text-align: center; }
.contact-band address { font-style: normal; line-height: 1.9; }

/* === Contact 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-primary); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: 8px; background: #fff; color: var(--color-neutral-dark); }
.field input:focus, .field select: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; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, 0.75); padding-block: 3.5rem 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; } }
.site-footer h3 { color: var(--color-neutral-light); font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.75); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; font-size: 0.85rem; }
.tagline { color: rgba(248, 250, 252, 0.6); font-style: italic; margin-top: 0.5rem; }
.logo--footer img { height: 60px; filter: brightness(0) invert(1); opacity: 0.9; }
.copyright { border-top: 1px solid rgba(248, 250, 252, 0.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(248, 250, 252, 0.5); }

/* === 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 40px -10px rgba(0,0,0,0.4); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions .btn { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.cookie-banner__prefs { display: grid; gap: 0.6rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.15); font-size: 0.9rem; }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; align-items: center; }
.cookie-banner__prefs .btn { justify-self: start; margin-top: 0.5rem; }
