:root{
  --cream:#f5efe4;
  --paper:#fffdf8;
  --brown:#4b3529;
  --soft:#d8c5aa;
  --line:#ded2c0;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--brown);
  font:17px/1.7 Georgia,serif;
}

header{
  position:sticky;
  top:0;
  z-index:3;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 7%;
  background:rgba(255,253,248,.95);
  border-bottom:1px solid var(--line);
}

.brand img{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:50%;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  color:var(--brown);
  text-decoration:none;
  font:15px Arial,sans-serif;
}

.hero{
  min-height:72vh;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:8%;
  align-items:center;
  padding:70px 9%;
  background:var(--cream);
}

.hero img{
  width:min(100%,470px);
  border-radius:50%;
  box-shadow:0 20px 50px #6c54352b;
}

h1{
  font-size:clamp(42px,6vw,78px);
  line-height:1.04;
  margin:12px 0 24px;
  font-weight:500;
}

h2{
  font-size:clamp(32px,4vw,52px);
  line-height:1.15;
  font-weight:500;
  margin:8px 0 20px;
}

.eyebrow{
  font:12px/1.4 Arial,sans-serif;
  letter-spacing:.2em;
}

.button{
  display:inline-block;
  border:0;
  background:var(--brown);
  color:white;
  padding:13px 23px;
  border-radius:999px;
  text-decoration:none;
  font:15px Arial,sans-serif;
  cursor:pointer;
}

section:not(.hero){
  padding:90px 9%;
}

.intro{
  max-width:700px;
}

/* COLLECTIE */

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  margin-top:38px;
}

.product{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(75,53,41,.12);
}

.product img{
  display:block;
  width:100%;
  height:420px;
  object-fit:cover;
  object-position:center;
}

.product h3{
  margin:18px 20px 5px;
  font-size:24px;
  line-height:1.2;
  font-weight:500;
}

.product .price{
  margin:0 20px 22px;
  font-size:19px;
}

/* VERHAAL */

.story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10%;
  background:var(--cream);
}

/* CONTACT */

form{
  max-width:720px;
  display:grid;
  gap:17px;
  margin-top:30px;
}

label{
  display:grid;
  gap:7px;
  font:14px Arial,sans-serif;
}

input,
textarea{
  width:100%;
  padding:14px;
  border:1px solid var(--line);
  border-radius:10px;
  background:white;
  font:16px Arial,sans-serif;
  color:var(--brown);
}

/* FOOTER */

footer{
  text-align:center;
  padding:45px;
  background:#e8ddcc;
}

footer img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:50%;
}

footer p{
  font:13px Arial,sans-serif;
}

/* MOBIEL */

@media(max-width:760px){

  header{
    padding:10px 5%;
  }

  .brand img{
    width:50px;
    height:50px;
  }

  nav{
    gap:12px;
  }

  nav a{
    font-size:12px;
  }

  .hero,
  .story{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding:55px 7%;
  }

  .hero img{
    max-width:280px;
    margin:auto;
  }

  section:not(.hero){
    padding:65px 7%;
  }

  .grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .product img{
    width:100%;
    height:auto;
    max-height:600px;
    object-fit:contain;
    background:var(--cream);
  }

  .product h3{
    font-size:23px;
  }
}
.socials{
  text-align:center;
  background:var(--cream);
}

.social-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:25px;
}

.social-buttons a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:65px;
  height:65px;
  border:2px solid var(--brown);
  border-radius:50%;
  color:var(--brown);
  text-decoration:none;
}
.social-buttons svg{
  width:28px;
  height:28px;
}
.sfeerfoto {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 24px;
}

@media (max-width: 600px) {
  .held {
    min-height: auto;
    padding-bottom: 70px;
  }

  .sfeerfoto {
    transform: none;
    margin-bottom: 0;
  }
}
