/* Bloom. — Interieur & Design demo */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f3;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #e8e8e6;
  --accent: #e8601a;
  --accent-dark: #c24e10;
  --navy: #1c2b3a;
  --radius: 14px;
  --font: 'DM Sans', 'Inter', system-ui, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Logo */
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo__dot { color: var(--accent); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn--outline {
  background: #fff;
  border-color: var(--text);
  color: var(--text);
}
.btn--outline:hover { background: var(--bg-soft); }
.btn--dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--dark:hover { background: #243447; }
.btn--link {
  background: none;
  border: none;
  padding: 12px 0;
  font-weight: 600;
  color: var(--text);
}
.btn--link:hover { color: var(--accent-dark); }

/* Hero / banner — 1920×841, afbeelding als achtergrond rechts (zoals design) */
.hero {
  width: 100%;
  aspect-ratio: 1920 / 841;
  min-height: 380px;
  max-height: min(841px, 85vh);
  background-color: var(--bg-soft);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
  padding: 0 0 0 max(20px, 8vw);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1a2233;
}
.hero__title-dot {
  color: var(--accent);
}
.hero__text {
  font-size: 1rem;
  font-weight: 300;
  color: #4b5563;
  line-height: 1.65;
  max-width: 320px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
}
.btn--hero {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid #1a2233;
  color: #1a2233;
  font-size: 0.9rem;
  font-weight: 500;
  background: transparent;
  transition: background 0.22s, color 0.22s;
}
.btn--hero:hover {
  background: #1a2233;
  color: #fff;
}
.btn--hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a2233;
  background: none;
  border: none;
  transition: gap 0.2s;
}
.btn--hero-link:hover {
  gap: 10px;
}

/* Section common */
.section {
  padding: 72px 0;
}
.section--soft { background: var(--bg-soft); }
.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section__head--row {
  text-align: left;
  max-width: none;
  margin: 0 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section__title .logo__dot { font-weight: 800; }
.section__intro {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1rem;
}
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  border-color: #d4d4d2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--text);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.service-card__link:hover { color: var(--accent-dark); }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__images {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.about__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image--main {
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.about__image--secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 4px solid #fff;
}
.about__content {
  max-width: 480px;
}
.about__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.about__text {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Projects */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  group: project;
}
.project-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  background: var(--bg-soft);
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.project-card:hover .project-card__img img {
  transform: scale(1.03);
}
.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.project-card__meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}
.project-card__meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.project-card__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}
.project-card:hover .project-card__arrow {
  transform: translate(3px, -3px);
  color: var(--text);
}

/* Process */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 0;
  border-top: 2px dashed var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Testimonial — beeld 1700×758 (langwerpig) */
.testimonial-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.testimonial {
  width: 100%;
  background: var(--bg-soft);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: clamp(220px, 28vw, 320px);
}
.testimonial__content {
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial__quote-icon {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: #d1d5db;
  font-family: Georgia, serif;
  margin-bottom: 12px;
}
.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 36em;
}
.testimonial__author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.testimonial__media {
  position: relative;
  min-height: 100%;
  aspect-ratio: 1700 / 758;
}
.testimonial__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.testimonial__dot--active {
  background: var(--accent);
}

/* CTA — volle afbeelding links (geen cirkel) */
.cta-box {
  background: var(--bg-soft);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(160px, 34%) 1fr auto;
  align-items: stretch;
  min-height: clamp(160px, 20vw, 220px);
  box-shadow: 0 8px 32px rgba(26, 34, 51, 0.06);
}
.cta-box__media {
  position: relative;
  min-height: 100%;
  background: #e8ede8;
}
.cta-box__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.cta-box__body {
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-box__action {
  display: flex;
  align-items: center;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 48px) clamp(28px, 4vw, 44px) 0;
}
.cta-box h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #1a2233;
}
.cta-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 42em;
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 16px 0 20px;
  max-width: 260px;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social a:hover {
  border-color: var(--text);
  color: var(--text);
}
.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--text);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer a:hover { color: var(--text); }
.footer__newsletter p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
}
.newsletter-form button {
  border: none;
  background: var(--navy);
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
  font-size: 1.1rem;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__legal {
  display: flex;
  gap: 24px;
}

/* Demo badge */
.demo-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 200;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.demo-badge a {
  color: #fbbf24;
  text-decoration: underline;
  margin-left: 6px;
}

@media (max-width: 960px) {
  .hero {
    aspect-ratio: auto;
    min-height: 420px;
    max-height: none;
    background-position: 70% center;
  }
  .hero__copy {
    padding: 48px 20px;
    max-width: none;
  }
  .about__grid,
  .testimonial {
    grid-template-columns: 1fr;
  }
  .testimonial {
    min-height: 0;
  }
  .services__grid,
  .projects__grid,
  .process__steps { grid-template-columns: 1fr; }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .cta-box {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .cta-box__media {
    aspect-ratio: 1700 / 758;
    max-height: 200px;
  }
  .cta-box__action {
    padding: 0 24px 28px;
  }
  .testimonial__media {
    aspect-ratio: 1700 / 758;
    min-height: 200px;
  }
  .about__images {
    max-width: 520px;
    margin: 0 auto 32px;
  }
  .about__content {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .header__inner { position: relative; }
  .footer__grid { grid-template-columns: 1fr; }
}
