:root {
    --blush: #FAE6D7;
    --cream: #F8F0C9;
    --peach: rgb(245 217 207);
    --sage: rgb(214 221 208);
    --green: rgb(43 85 68);
    --orange: rgb(216 102 64);
    --yellow: rgb(238 218 121);
}


* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--green);
  background: #FFFFFF;
  line-height: 1.55;
}

a { color: inherit; }

.top-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 7.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}

.brand-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.brand-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: clamp(16rem, 36vw, 28rem);
  aspect-ratio: 753 / 393;
  background: url('../images/header-background.svg') center center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: clamp(6.75rem, 12.5vw, 10rem);
  height: auto;
  display: block;
}

.header-contact {
  position: absolute;
  top: 1.1rem;
  right: max(4rem, calc((100vw - 70rem) / 2));
  text-align: right;
  font-size: 0.82rem;
  line-height: 1.15;
}

.header-contact p { margin: 0 0 1.05rem; }
.header-contact b { color: var(--orange); }
.header-contact a { text-decoration: none; font-weight: 700; }

.header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
  color: var(--sage);
  font-size: 2.3rem;
  line-height: 1;
}

main {
  margin-top: clamp(1rem, 2.5vw, 2.25rem);
  background: #FFFFFF url('../images/proeftuin-background.svg') center top / min(100rem, 140vw) auto no-repeat fixed;
}

.hero {
    min-height: 31.5rem;
    position: relative;
    background: url('../images/rottum-vergaderplek.webp') center/cover;
}

.hero-content {
  position: absolute;
  left: calc((100vw - min(70rem, 100vw - 2rem)) / 2);
  top: 50%;
  transform: translateY(-33%);
  width: min(33rem, calc(100% - 2rem));
  color: var(--blush);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 4.7vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
}

.button {
  display: inline-block;
  border: 0;
  border-radius: 0.65rem;
  background: var(--orange);
  color: var(--blush);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.hero-button { padding: 0.75rem 1.45rem; margin-left: 10.2rem; }

.container {
  width: min(70rem, calc(100% - 2rem));
  margin: 0 auto;
}

.intro {
  padding: 2.5rem 0 5.4rem;
  background: transparent;
}

.intro h2 {
  margin: 0 0 1.1rem;
  color: var(--green);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
}

.two-columns p { margin: 0 0 1.1rem; }

.contact-band {
  position: relative;
  padding: 4.6rem 0 3.9rem;
  background: var(--orange);
  color: var(--blush);
}

.stripe {
  position: absolute;
  left: 0;
  height: 1.15rem;
}

.stripe-orange {
  top: -2.7rem;
  width: 51.4%;
  background: var(--orange);
}

.stripe-yellow {
  top: -1.9rem;
  width: 74.8%;
  background: var(--yellow);
}

.stripe-sage {
  top: -1rem;
  left: 43.8%;
  width: 56.2%;
  background: var(--sage);
}

.contact-grid {
  display: grid;
  grid-template-columns: 17rem 1fr;
  gap: 4.2rem;
  align-items: start;
}

.footer-address {
  justify-self: end;
  font-size: 0.78rem;
  line-height: 1.35;
  font-style: normal;
  font-weight: 700;
}

.footer-address a { text-decoration: none; }

.question-block h2 {
  margin: 0;
  color: var(--blush);
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.question-title-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.socials { display: flex; gap: 0.6rem; }
.socials a {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--blush);
  font-weight: 900;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  max-width: 48rem;
}

.field-stack {
  display: grid;
  gap: 1.7rem;
}

label { display: grid; gap: 0; }
label span { position: absolute; width: 1px; height: 1px; overflow: hidden; }

input,
textarea {
  width: 100%;
  border: 0;
  border-radius: 1.3rem;
  padding: 0.9rem 1.3rem;
  background: var(--blush);
  color: var(--orange);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

input::placeholder,
textarea::placeholder { color: var(--orange); }

textarea {
  min-height: 7.8rem;
  resize: vertical;
}

.contact-form button {
  padding: 0.85rem 1.3rem;
  background: var(--blush);
  color: var(--orange);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.8rem;
}

.footer-links a {
  color: var(--blush);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 0 2.6rem;
  background: transparent;
  color: var(--green);
  text-align: center;
  font-size: 0.85rem;
}

.site-footer a { color: var(--orange); text-decoration: none; }

@media (max-width: 900px) {
  .top-header { min-height: 6.5rem; justify-content: flex-start; padding-left: 1rem; }
  .brand-wrap::before { width: clamp(13rem, 55vw, 20rem); }
  .brand-logo { width: clamp(5.5rem, 18vw, 8rem); }
  .header-contact { right: 1rem; top: 1.2rem; }
  .hero { min-height: 25rem; }
  .hero-content { left: 1rem; }
  .hero-button { margin-left: 0; }
  .two-columns,
  .contact-grid,
  .contact-form { grid-template-columns: 1fr; }
  .footer-address { justify-self: start; }
}

@media (max-width: 620px) {
  .top-header { align-items: flex-start; padding-top: 1rem; }
  .brand-wrap { justify-items: start; text-align: left; }
  .brand-logo { width: clamp(4.75rem, 24vw, 6.75rem); }
  .header-contact { position: static; margin: 1rem 1rem 0 auto; }
  .hero h1 { font-size: 2rem; }
  .question-title-row { align-items: flex-start; flex-direction: column; gap: 1rem; }
}

.quick-nav {
  position: absolute;
  left: max(2rem, calc((100vw - 70rem) / 2));
  bottom: 1rem;
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-nav a,
.text-link {
  color: var(--orange);
  text-decoration: none;
}

.quick-nav a:hover,
.text-link:hover,
.footer-links a:hover,
.site-footer a:hover { text-decoration: underline; }

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--blush); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 1.4rem;
  background: #FFFFFF;
  box-shadow: 0 1.2rem 3rem rgb(43 85 68 / 14%);
}

.story-photo img,
.host-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo-landscape { margin-top: 0.35rem; }
.story-photo-landscape img { aspect-ratio: 4 / 3; }

.story-photo figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.experience {
  padding: 0 0 6.2rem;
  background: transparent;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.feature-card {
  padding: 1.45rem;
  border-radius: 1.3rem;
  background: rgb(250 230 215 / 82%);
  box-shadow: 0 0.8rem 2.2rem rgb(43 85 68 / 9%);
}

.feature-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card h3,
.host-panel h3 {
  margin: 0 0 0.65rem;
  color: var(--green);
  font-size: 1.22rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-card p,
.host-panel p { margin: 0; }

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 1.4rem;
  align-items: stretch;
}

.story-row > .story-photo img { aspect-ratio: 16 / 10; }

.host-panel {
  display: grid;
  grid-template-columns: 8.25rem 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.15rem;
  border-radius: 1.4rem;
  background: var(--cream);
  box-shadow: 0 1.2rem 3rem rgb(43 85 68 / 11%);
}

.host-photo {
  align-self: stretch;
  min-height: 15rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
}

.host-panel .text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .quick-nav { left: 1rem; }
}

@media (max-width: 900px) {
  .quick-nav { display: none; }
  .intro-grid,
  .feature-grid,
  .story-row { grid-template-columns: 1fr; }
  .story-photo-landscape { margin-top: 0; }
}

@media (max-width: 620px) {
  .intro { padding-bottom: 3.4rem; }
  .experience { padding-bottom: 4.2rem; }
  .feature-card { padding: 1.15rem; }
  .host-panel { grid-template-columns: 1fr; }
  .host-photo { min-height: 18rem; }
}
