:root {
  --background: #ffffff;
  --foreground: #1f2933;
  --brand: #18375f;
  --brand-light: #37679d;
  --accent: #c64232;
  --muted: #64748b;
  --line: #d8e2ee;
  --soft: #f4f7fb;
  --warm: #f7f3ed;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, rgba(244,247,251,.92) 0, rgba(255,255,255,0) 440px), var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px 28px;
}
.brand {
  align-items: center;
  color: var(--brand);
  display: inline-flex;
  font-size: 1.08rem;
  font-weight: 700;
  gap: 10px;
  white-space: nowrap;
}
.brand-mark {
  align-items: center;
  border: 2px solid var(--brand);
  display: inline-flex;
  font-size: .82rem;
  height: 38px;
  justify-content: center;
  width: 52px;
}
.topnav {
  align-items: center;
  color: #334155;
  display: flex;
  flex-wrap: wrap;
  font-size: .96rem;
  gap: 20px;
  justify-content: flex-end;
}
.topnav a { border-bottom: 2px solid transparent; padding: 7px 0; }
.topnav a:hover, .topnav a:focus-visible { border-color: var(--brand-light); color: var(--brand); }
.language-link { color: var(--brand); font-weight: 700; }
.hero {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0,.95fr) minmax(360px,1.05fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px 28px 68px;
}
.hero-copy { max-width: 620px; }
.eyebrow, .section-label {
  color: var(--brand-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--brand);
  font-size: clamp(2.35rem,5vw,4.75rem);
  line-height: 1.02;
  margin-bottom: 24px;
}
h2 {
  color: var(--brand);
  font-size: clamp(1.75rem,3vw,2.8rem);
  line-height: 1.12;
  margin-bottom: 18px;
}
h3 { color: var(--brand); font-size: 1.35rem; margin-bottom: 18px; }
.lead {
  color: #334155;
  font-size: clamp(1.08rem,1.7vw,1.28rem);
  line-height: 1.62;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.button {
  align-items: center;
  border: 1px solid var(--brand);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: #102845; }
.button-secondary { background: transparent; color: var(--brand); }
.button-secondary:hover, .button-secondary:focus-visible { background: #e8eef7; }
.location-strip {
  border-left: 4px solid var(--brand-light);
  color: #334155;
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 2px 0 2px 18px;
}
.hero-media { aspect-ratio: 1.35; position: relative; }
.hero-media img { height: 100%; object-fit: cover; width: 100%; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  bottom: 24px;
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
  display: grid;
  gap: 4px;
  left: 24px;
  min-width: 190px;
  padding: 18px;
  position: absolute;
}
.price-card span, .price-card small { color: var(--muted); font-size: .86rem; }
.price-card strong { color: var(--accent); font-size: 2rem; line-height: 1; }
.intro-section, .split-section, .gallery-section, .seo-section, .contact-band {
  margin: 0 auto;
  max-width: 1180px;
  padding: 64px 28px;
}
.intro-section {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0,.9fr) minmax(300px,1.1fr);
}
.intro-section p, .split-section p, .seo-section p, .contact-band p {
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.72;
}
.facts-panel { background: var(--soft); border-top: 4px solid var(--brand-light); padding: 32px; }
.facts-panel ul { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.facts-panel li { color: #263646; line-height: 1.45; padding-left: 24px; position: relative; }
.facts-panel li::before { background: var(--accent); content: ""; height: 7px; left: 0; position: absolute; top: .62em; width: 7px; }
.split-section {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2,minmax(0,1fr));
}
.text-link { color: var(--brand); display: inline-flex; font-weight: 800; margin-top: 8px; }
.text-link:hover, .text-link:focus-visible { color: var(--accent); }
.section-heading { max-width: 760px; }
.gallery-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4,minmax(0,1fr));
  margin-top: 26px;
}
figure { background: #fff; border: 1px solid var(--line); margin: 0; }
figure img { aspect-ratio: 1.3; object-fit: cover; width: 100%; }
figcaption { display: grid; gap: 4px; padding: 16px; }
figcaption strong { color: var(--brand); }
figcaption span { color: var(--muted); font-size: .94rem; line-height: 1.45; }
.seo-section { background: var(--warm); max-width: none; }
.seo-section h2, .seo-section p { margin-left: auto; margin-right: auto; max-width: 1124px; }
.contact-band { align-items: center; display: flex; gap: 32px; justify-content: space-between; padding-bottom: 88px; }
.contact-band div { max-width: 720px; }
.contact-band p { margin-bottom: 0; }
@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .topnav { justify-content: flex-start; }
  .hero, .intro-section, .split-section { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .hero-media { min-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-band { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .topbar, .hero, .intro-section, .split-section, .gallery-section, .contact-band { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 34px; }
  .hero-media { aspect-ratio: .95; min-height: 0; }
  .price-card { bottom: 14px; left: 14px; right: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
}
