:root {
  color-scheme: light;
  --paper: #f7f3ee;
  --surface: #fffaf3;
  --ink: #241f1c;
  --muted: #71685f;
  --line: #ded3c6;
  --wine: #8c2035;
  --wine-dark: #651727;
  --sage: #64796b;
  --amber: #c88a2d;
  --shadow: 0 18px 45px rgba(36, 31, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem max(1rem, env(safe-area-inset-left)) 0.85rem max(1rem, env(safe-area-inset-right));
  background: rgba(247, 243, 238, 0.9);
  border-bottom: 1px solid rgba(222, 211, 198, 0.78);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.mobile-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.nav-links {
  gap: 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--wine);
}

.lang-toggle {
  min-width: 2.75rem;
  min-height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #151210;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/images/domino-interijer.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.95);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.84), rgba(10, 8, 7, 0.48) 52%, rgba(10, 8, 7, 0.18)),
    linear-gradient(0deg, rgba(10, 8, 7, 0.76), rgba(10, 8, 7, 0.08) 45%);
}

.hero-content {
  width: min(760px, calc(100% - 2rem));
  padding: 8rem 0 5.2rem;
  margin-left: max(1rem, calc((100vw - 1180px) / 2));
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.9rem;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 1.35rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border-radius: 0.45rem;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--wine);
  color: #fff;
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 2rem));
  margin: -2.2rem auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-strip div {
  padding: 1rem;
  background: var(--surface);
}

.quick-strip span,
.contact-rows span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-strip strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 1.15rem;
}

.quick-strip small {
  color: var(--sage);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

h2 {
  margin-bottom: 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.proof-copy p,
.map-panel p {
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-grid article,
.proof-list,
.visit-panel {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(36, 31, 28, 0.06);
}

.service-grid article {
  padding: 1.15rem;
  min-height: 13rem;
}

.service-grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 1rem;
  align-items: stretch;
}

.proof-copy {
  padding: 2rem 0;
}

.proof-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.proof-list div {
  padding: 1rem;
  background: var(--surface);
}

.proof-list strong {
  display: block;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.proof-list span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-bottom: 4.5rem;
}

.visit-panel {
  padding: 1.35rem;
}

.contact-rows {
  display: grid;
  gap: 0.65rem;
}

.contact-rows a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-rows a:last-child {
  border-bottom: 0;
}

.contact-rows strong {
  text-align: right;
}

.full {
  width: 100%;
}

.footer {
  padding: 2rem 1rem 6rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.footer p {
  margin: 0.25rem auto;
  max-width: 760px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .site-header {
    padding: 0.72rem 1rem;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-content {
    padding-bottom: 4.4rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-strip,
  .intro-grid,
  .section-heading,
  .service-grid,
  .proof,
  .visit {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .service-grid article {
    min-height: auto;
  }

  .proof-copy {
    padding: 0;
  }

  .contact-rows a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .contact-rows strong {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    background: var(--wine);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.9rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.show-mobile-cta .mobile-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-cta a {
    min-height: 3.15rem;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-cta a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 440px) {
  .brand span:last-child {
    max-width: 6.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }
}
