/* =========================================================
   HERENHAVEN — design tokens
   ========================================================= */
:root{
	--c-bg:        #f6f4ef;
	--c-bg-2:      #ece8de;
	--c-panel:     #fffefb;
	--c-charcoal:  #22252b;
	--c-charcoal-2:#15171b;
	--c-gold:      #b3925a;
	--c-gold-2:    #d9bc84;
	--c-text:      #212224;
	--c-text-dim:  #6d6a63;
	--c-line:      #ddd7c9;
	--f-display:   "Italiana", serif;
	--f-body:      "Albert Sans", sans-serif;
	--radius:      4px;
	--maxw:        1220px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
	margin:0;
	background:var(--c-bg);
	color:var(--c-text);
	font-family:var(--f-body);
	line-height:1.65;
	font-size:16px;
}
img{ width:100%!important; height:auto!important; object-fit:cover!important; display:block; }
a{ color:var(--c-charcoal); text-decoration:none; }
h1,h2,h3,h4{
	font-family:var(--f-display);
	font-weight:400;
	line-height:1.08;
	letter-spacing:.01em;
	margin:0 0 .5em;
	color:var(--c-charcoal-2);
}
h1{ font-size:clamp(2.8rem,6vw,4.6rem); }
h2{ font-size:clamp(2rem,3.8vw,2.9rem); }
h3{ font-size:1.5rem; font-family:var(--f-body); font-weight:700; }
p{ margin:0 0 1em; color:var(--c-text-dim); }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:88px 0; }
.btn{
	display:inline-flex; align-items:center; gap:8px;
	padding:14px 30px; border-radius:var(--radius); border:1px solid var(--c-charcoal); cursor:pointer;
	font-family:var(--f-body); font-weight:600; font-size:.92rem; letter-spacing:.04em; text-transform:uppercase;
	background:var(--c-charcoal); color:#fdfcf8;
}
.btn.btn-ghost{
	background:transparent; color:var(--c-charcoal); border:1px solid var(--c-charcoal);
}
.eyebrow{
	font-family:var(--f-body); text-transform:uppercase; letter-spacing:.18em;
	color:var(--c-gold); font-size:.78rem; font-weight:700; margin-bottom:.6em; display:block;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.hh-header{
	position:sticky; top:0; z-index:100;
	background:rgba(246,244,239,.92); backdrop-filter:blur(8px);
	border-bottom:1px solid var(--c-line);
}
.hh-header .container{ display:flex; align-items:center; justify-content:space-between; height:82px; }
.hh-logo{ font-family:var(--f-display); font-size:1.7rem; color:var(--c-charcoal-2); letter-spacing:.02em; }
.hh-nav-desktop ul{ display:flex; gap:26px; list-style:none; margin:0; padding:0; }
.hh-nav-desktop a{ color:var(--c-text); font-weight:500; font-size:.92rem; text-transform:uppercase; letter-spacing:.04em; }
.hh-nav-desktop a:hover{ color:var(--c-gold); }
.hh-header-cta{ padding:10px 22px; font-size:.82rem; white-space:nowrap; }
.hh-burger{
	display:none; width:44px; height:44px; border:1px solid var(--c-line); border-radius:var(--radius);
	background:transparent; color:var(--c-charcoal-2); font-size:1.3rem; cursor:pointer;
}
.hh-mobile-menu{
	position:fixed; top:0; right:-100%; width:82%; max-width:340px; height:100vh;
	background:var(--c-panel); border-left:1px solid var(--c-line);
	transition:right .3s ease; z-index:200; padding:32px 24px; overflow-y:auto;
}
.hh-mobile-menu.is-open{ right:0; }
.hh-mobile-menu ul{ list-style:none; padding:0; margin:40px 0 0; display:flex; flex-direction:column; gap:18px; }
.hh-mobile-menu a{ color:var(--c-charcoal-2); font-family:var(--f-display); font-size:1.4rem; }
.hh-mobile-close{ background:none; border:none; color:var(--c-charcoal-2); font-size:1.5rem; cursor:pointer; }
.hh-mobile-overlay{
	position:fixed; inset:0; background:rgba(21,23,27,.5); opacity:0; pointer-events:none;
	transition:opacity .3s ease; z-index:150;
}
.hh-mobile-overlay.is-open{ opacity:1; pointer-events:auto; }

@media (max-width:900px){
	.hh-nav-desktop{ display:none; }
	.hh-header-cta{ display:none; }
	.hh-burger{ display:block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hh-hero{
	position:relative; padding:140px 0 120px; overflow:hidden;
	background:url('../images/hero-canal-houses.jpg') center/cover no-repeat;
}
.hh-hero::before{
	content:''; position:absolute; inset:0;
	background:linear-gradient(180deg, rgba(21,23,27,.4) 0%, rgba(15,15,12,.8) 80%, var(--c-bg) 100%);
}
.hh-hero .container{ position:relative; z-index:2; max-width:720px; }
.hh-hero .eyebrow{ color:var(--c-gold-2); }
.hh-hero h1{ color:#fdfcf8; }
.hh-hero p.lead{ font-size:1.15rem; color:#e6e3da; max-width:540px; }
.hh-hero .cta-row{ display:flex; gap:16px; margin-top:26px; flex-wrap:wrap; }

/* =========================================================
   DIAMOND DIVIDER
   ========================================================= */
.hh-diamonddiv{ display:flex; align-items:center; justify-content:center; gap:16px; padding:8px 0 40px; }
.hh-diamonddiv .line{ width:100px; height:1px; background:var(--c-line); }
.hh-diamonddiv .diamond{ width:9px; height:9px; background:var(--c-gold); transform:rotate(45deg); }

/* =========================================================
   INTRO SPLIT
   ========================================================= */
.hh-split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.hh-split.rev{ direction:rtl; }
.hh-split.rev > *{ direction:ltr; }
@media (max-width:880px){ .hh-split{ grid-template-columns:1fr; } }

/* =========================================================
   WOONWENS CONFIGURATOR
   ========================================================= */
.hh-configurator{ background:var(--c-panel); border:1px solid var(--c-line); padding:40px; }
.hh-config-sliders{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-bottom:32px; }
@media (max-width:880px){ .hh-config-sliders{ grid-template-columns:1fr; } }
.hh-config-sliders .opt-label{ display:block; font-weight:700; margin-bottom:12px; font-size:.92rem; }
.hh-config-sliders input[type=range]{ width:100%; accent-color:var(--c-gold); }
.hh-config-sliders select{
	width:100%; padding:12px 14px; border-radius:var(--radius); border:1px solid var(--c-line);
	background:var(--c-bg); font-family:var(--f-body); font-size:.95rem;
}
.hh-config-result{
	text-align:center; padding:24px; background:var(--c-charcoal); color:#fdfcf8;
}
.hh-result-count{ font-family:var(--f-display); font-size:3rem; color:var(--c-gold-2); display:block; }
.hh-result-label{ font-size:.9rem; text-transform:uppercase; letter-spacing:.1em; color:#cfcbc0; }

/* =========================================================
   CAROUSEL
   ========================================================= */
.hh-carousel{ position:relative; }
.hh-carousel-track{
	display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding:6px 4px 20px;
}
.hh-carousel-track::-webkit-scrollbar{ height:6px; }
.hh-carousel-track::-webkit-scrollbar-thumb{ background:var(--c-line); }
.hh-carousel-card{
	flex:0 0 340px; scroll-snap-align:start; background:var(--c-panel); border:1px solid var(--c-line);
}
.hh-carousel-card .card-img{ aspect-ratio:4/3; overflow:hidden; }
.hh-carousel-card .card-body{ padding:22px; }
.hh-carousel-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:14px; }
.hh-price{ font-family:var(--f-display); font-size:1.3rem; color:var(--c-gold); }
.hh-carousel-nav{ display:flex; gap:10px; justify-content:center; margin-top:14px; }
.hh-carousel-nav button{
	width:40px; height:40px; border-radius:50%; border:1px solid var(--c-charcoal); background:transparent;
	font-size:1.2rem; cursor:pointer; color:var(--c-charcoal);
}

/* Grid version for Woningen page */
.hh-listing-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:880px){ .hh-listing-grid{ grid-template-columns:1fr; } }
.hh-card{ background:var(--c-panel); border:1px solid var(--c-line); }
.hh-card .card-img{ aspect-ratio:4/3; overflow:hidden; }
.hh-card .card-body{ padding:20px; }

/* =========================================================
   TIMELINE
   ========================================================= */
.hh-timeline{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media (max-width:880px){ .hh-timeline{ grid-template-columns:1fr; } }
.hh-t-step{ text-align:center; padding:0 10px; }
.hh-t-num{
	width:46px; height:46px; border:1px solid var(--c-gold); border-radius:50%; margin:0 auto 16px;
	display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-size:1.3rem; color:var(--c-gold);
}

/* =========================================================
   SIGNED LETTER TESTIMONIALS
   ========================================================= */
.hh-letters{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:20px; }
.hh-letter{
	background:var(--c-panel); border:1px solid var(--c-line); padding:32px 36px; position:relative;
}
.hh-letter-stamp{
	position:absolute; top:24px; right:28px; width:64px; height:64px; border-radius:50%;
	border:2px solid var(--c-gold); color:var(--c-gold); display:flex; align-items:center; justify-content:center;
	font-family:var(--f-display); font-size:.72rem; text-align:center; transform:rotate(8deg); letter-spacing:.02em;
}
.hh-letter-text{ font-family:var(--f-display); font-size:1.15rem; font-style:italic; color:var(--c-text); max-width:88%; }
.hh-letter-sign{ margin-top:16px; font-family:var(--f-display); font-size:1.1rem; color:var(--c-charcoal-2); }
.hh-letter-meta{ font-size:.85rem; color:var(--c-text-dim); }

/* =========================================================
   CTA
   ========================================================= */
.hh-cta{ background:var(--c-charcoal); color:#fdfcf8; text-align:center; }
.hh-cta h2{ color:#fdfcf8; }
.hh-cta p{ color:#c9c6bd; }

/* =========================================================
   GENERIC / FAQ / FORMS
   ========================================================= */
.hh-faq-item{ border-bottom:1px solid var(--c-line); padding:18px 0; }
.hh-faq-item h4{ margin-bottom:6px; color:var(--c-charcoal-2); font-family:var(--f-body); font-weight:700; }

.hh-flex-wrap{ display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.hh-flex-wrap > *{ flex:1 1 260px; max-width:340px; }

.hh-form{ max-width:560px; }
.hh-form label{ display:block; margin-bottom:16px; font-weight:600; }
.hh-form input, .hh-form textarea, .hh-form select{
	width:100%; margin-top:6px; padding:12px 14px; border-radius:var(--radius); border:1px solid var(--c-line);
	background:var(--c-panel); font-family:var(--f-body);
}
.hh-form .hp-field{ position:absolute; left:-9999px; }
.hh-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px){ .hh-form-row{ grid-template-columns:1fr; } }

.hh-notice{ padding:14px 18px; border-radius:var(--radius); margin-bottom:20px; }
.hh-notice.ok{ background:rgba(179,146,90,.12); border:1px solid var(--c-gold); }
.hh-notice.err{ background:rgba(180,60,60,.1); border:1px solid #b43c3c; }

/* =========================================================
   FOOTER
   ========================================================= */
.hh-footer{ background:var(--c-charcoal-2); color:#d7d4cb; padding:56px 0 28px; }
.hh-footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:32px; }
@media (max-width:880px){ .hh-footer-grid{ grid-template-columns:1fr; } }
.hh-footer h4{ color:#fdfcf8; font-family:var(--f-display); font-size:1.15rem; }
.hh-footer ul{ list-style:none; padding:0; margin:0; }
.hh-footer li{ margin-bottom:8px; }
.hh-footer a{ color:#b9b6ac; }
.hh-footer-bottom{
	margin-top:40px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1);
	color:#93908a; font-size:.85rem; text-align:center;
}
.hh-legal-links{ margin-top:10px; display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.hh-legal-links a{ color:#93908a; text-decoration:underline; }
.hh-legal-links a:hover{ color:var(--c-gold-2); }

/* Cookie banner */
.hh-cookie{
	position:fixed; left:0; right:0; bottom:0; z-index:300;
	background:var(--c-charcoal-2); color:#fdfcf8; border-top:1px solid rgba(255,255,255,.12);
	padding:16px 24px; display:none; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.hh-cookie.is-visible{ display:flex; }
.hh-cookie a{ color:var(--c-gold-2); }
.hh-cookie p{ margin:0; font-size:.9rem; color:#d7d4cb; }

/* Blog */
.hh-post-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
@media (max-width:880px){ .hh-post-grid{ grid-template-columns:1fr; } }
.hh-post-card{ background:var(--c-panel); border:1px solid var(--c-line); }
