:root {
  --color-primary: #2563EB;
  --color-secondary: #3B82F6;
  --color-accent: #F97316;
  --color-neutral-dark: #1E293B;
  --color-neutral-light: #F8FAFC;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --max-w: 1180px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--color-neutral-dark); background: var(--color-neutral-light); line-height: 1.6; font-size: 17px; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); line-height: 1.2; margin: 0 0 1rem; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--color-secondary); }
p { margin: 0 0 1rem; }

/* === Layout === */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; margin-inline: auto; }
.center { text-align: center; }
.narrow-p { max-width: 60ch; margin-inline: auto; }
.section { padding-block: 4rem; }
.section-alt { background: #fff; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }

/* === Header === */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--color-neutral-light); border-bottom: 1px solid rgba(30, 41, 59, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.75rem; gap: 1rem; }
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.nav-toggle { background: none; border: none; color: var(--color-neutral-dark); padding: 0.5rem; }
.primary-nav { display: none; gap: 1.75rem; align-items: center; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.95rem; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(30, 41, 59, 0.08); }

/* === Buttons === */
.btn { display: inline-block; padding: 0.9rem 1.75rem; border-radius: 999px; font-weight: 500; font-size: 0.95rem; border: 1px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: #1d4ed8; box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.6); }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: #ea580c; }

/* === Hero (centered) === */
.hero { padding-block: 3.5rem 4rem; text-align: center; }
.hero .container { max-width: 900px; }
.hero h1 { max-width: 22ch; margin-inline: auto; margin-bottom: 1.25rem; }
.hero__sub { max-width: 52ch; margin: 0 auto 2rem; font-size: 1.15rem; color: rgba(30, 41, 59, 0.75); }
.hero__figure { margin: 3rem 0 0; }
.hero__figure img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }

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

/* === Cards === */
.card { background: var(--color-neutral-light); border: 1px solid rgba(30, 41, 59, 0.08); border-radius: var(--radius); padding: 1.75rem; }
.section-alt .card { background: #fff; }
.card-icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: rgba(30, 41, 59, 0.8); font-size: 0.98rem; margin-bottom: 0; }

/* === Listing cards === */
.listings-grid { gap: 2rem; }
.listing-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px -4px rgba(30, 41, 59, 0.1); border: 1px solid rgba(30, 41, 59, 0.06); }
.listing-card figure { margin: 0; }
.listing-card figure img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.listing-card__body { padding: 1.5rem 1.75rem 2rem; }
.listing-card__body h3 { margin-bottom: 0.75rem; }
.listing-card__body p { color: rgba(30, 41, 59, 0.8); margin: 0; }

/* === Testimonial === */
.testimonial-section { background: var(--color-neutral-light); }
.testimonial { margin: 0; }
.testimonial p { font-family: var(--font-heading); font-size: 1.4rem; line-height: 1.5; color: var(--color-neutral-dark); font-style: italic; margin-bottom: 1rem; }
.testimonial cite { display: block; font-style: normal; font-size: 0.95rem; color: var(--color-secondary); letter-spacing: 0.02em; }

/* === 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.9); max-width: 52ch; margin: 0 auto 2rem; }

/* === Stats === */
.stats-band .stat { text-align: center; padding: 1.5rem; }
.stat__number { font-family: var(--font-heading); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--color-accent); font-weight: 600; margin-bottom: 0.75rem; }

/* === FAQ === */
.faq details { border-bottom: 1px solid rgba(30, 41, 59, 0.12); padding: 1.25rem 0; }
.faq summary { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 500; cursor: pointer; list-style: none; padding-right: 2rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.5rem; color: var(--color-primary); transition: transform 0.2s ease; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 1rem; color: rgba(30, 41, 59, 0.8); }

/* === Contact form === */
.contact-form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 500; color: var(--color-neutral-dark); }
.field input, .field textarea { font-family: inherit; font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid rgba(30, 41, 59, 0.2); border-radius: 8px; background: #fff; color: var(--color-neutral-dark); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: rgba(30, 41, 59, 0.8); }
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(248, 250, 252, 0.85); padding-block: 3rem 1.5rem; margin-top: 2rem; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; }
.site-footer a { color: rgba(248, 250, 252, 0.85); }
.site-footer a:hover { color: #fff; }
.footer-grid { gap: 2.5rem; margin-bottom: 2rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact p { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-legal { margin-top: 1rem; font-size: 0.9rem; }
.logo--footer img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.copyright { border-top: 1px solid rgba(248, 250, 252, 0.15); padding-top: 1.5rem; font-size: 0.85rem; color: rgba(248, 250, 252, 0.6); text-align: center; }
.copyright p { margin: 0; }

/* === 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.5); max-width: 640px; margin-inline: auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button { background: transparent; color: var(--color-neutral-light); border: 1px solid rgba(248, 250, 252, 0.3); padding: 0.55rem 1rem; border-radius: 999px; font-size: 0.85rem; }
.cookie-banner button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner button:hover { background: rgba(248, 250, 252, 0.12); }
.cookie-banner button[data-cookie-accept]:hover { background: #ea580c; }
.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; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; }

/* === Responsive === */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  body { font-size: 18px; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .primary-nav { display: flex; position: static; padding: 0; background: transparent; border: none; flex-direction: row; }
  .section { padding-block: 6rem; }
  .hero { padding-block: 5rem 6rem; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; }
}

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