/* ============================================================
   Dutch Orange Holdings — site styles
   Flat single-colour design. The whole page sits on one colour,
   set with --bg below. Change that one value to recolour the site.
   ============================================================ */

:root {
  --bg:        #BFBBB9;   /* page colour — the whole site */
  --brand:     #FF6A00;   /* Dutch Orange */
  --brand-dark:#C8540A;
  --ink:       #1A1A1A;
  --body:      #262626;
  --muted:     #57534F;
  --bar:       #222222;   /* dark accent bands (top bar / footer) */
  --line:      #9E9A98;   /* hairline rules on the grey */
  --field:     #8F8B89;   /* form / placeholder borders */
  --radius:    12px;
  --maxw:      1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--brand-dark); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--brand-dark); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Top contact bar ---------- */
.topbar { background: var(--bar); color: #fff; font-size: .85rem; }
.topbar .container { display: flex; gap: 8px 22px; justify-content: center; align-items: center;
  flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; text-align: center; }
.topbar a { color: #fff; }
.topbar .sep { color: #888; }

/* ---------- Header / logo ---------- */
.site-header { padding: 22px 0 8px; text-align: center; }
.site-header .logo { height: clamp(110px, 16vw, 168px); width: auto; margin: 0 auto; }

/* ---------- Nav ---------- */
.mainnav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mainnav ul { list-style: none; margin: 0; padding: 12px 0; display: flex; justify-content: center;
  flex-wrap: wrap; gap: 8px 38px; }
.mainnav a { color: var(--ink); font-weight: 600; font-size: 1rem; }
.mainnav a:hover { color: var(--brand-dark); text-decoration: none; }
.mainnav a.active { color: var(--brand-dark); }

/* ---------- Sections ---------- */
section { padding: clamp(34px, 5vw, 56px) 0; }
.section-tight { padding: clamp(18px, 3vw, 28px) 0; }
.eyebrow { display: inline-block; color: var(--brand-dark); font-weight: 700; font-size: .8rem;
  letter-spacing: .09em; text-transform: uppercase; margin-bottom: 10px; }
.lead { font-size: 1.18rem; color: var(--ink); max-width: 760px; }
.narrow { max-width: 820px; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 6px 0 0; }

/* ---------- Feature columns (flat, no cards) ---------- */
.cols { display: grid; gap: 30px; margin-top: 6px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.col h3 { margin-bottom: 6px; }
.col p { color: var(--body); margin: 0; }

/* ---------- Lists ---------- */
ul.check, ul.plain { list-style: none; padding: 0; margin: 0 0 1rem; }
ul.check li, ul.plain li { position: relative; padding-left: 26px; margin-bottom: 10px; }
ul.check li::before { content: "›"; position: absolute; left: 6px; top: -1px;
  color: var(--brand); font-weight: 800; font-size: 1.1rem; }
ul.plain li::before { content: "•"; position: absolute; left: 8px; color: var(--brand-dark); font-weight: 800; }

/* ---------- Process steps ---------- */
.steps { display: grid; gap: 18px; margin-top: 8px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.step .n { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--brand); color: var(--brand-dark); font-weight: 800; }
.step h3 { margin: 4px 0 4px; }
.step p { margin: 0; }

/* ---------- Founders ---------- */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 8px; }
.person .role { color: var(--brand-dark); font-weight: 600; font-size: .95rem; margin: -2px 0 10px; }
.photo { width: 100%; aspect-ratio: 4/3; border: 1px solid var(--field); border-radius: var(--radius);
  display: grid; place-items: center; text-align: center; color: var(--muted); font-style: italic;
  font-size: .9rem; padding: 14px; margin-bottom: 12px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.socials a { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600;
  color: var(--brand-dark); border: 1.5px solid var(--brand); padding: 6px 14px; border-radius: 999px; }
.socials a:hover { background: var(--brand); color: #fff; text-decoration: none; }

/* ---------- Companies owned ---------- */
.owned li { margin-bottom: 12px; }
.owned .name { font-weight: 700; color: var(--ink); }

/* ---------- Buttons / CTA ---------- */
.btn { display: inline-block; background: var(--brand); color: #fff; padding: 13px 28px;
  border-radius: 999px; font-weight: 600; border: 2px solid var(--brand); cursor: pointer;
  transition: background .2s, transform .2s; }
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); text-decoration: none; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--brand-dark); }
.btn.ghost:hover { background: rgba(255,106,0,.12); color: var(--brand-dark); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.cta { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff;
  text-align: center; border-radius: var(--radius); padding: clamp(34px, 6vw, 60px) 24px; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.94); max-width: 560px; margin: 0 auto 6px; }

/* ---------- Contact form ---------- */
.form { max-width: 640px; display: grid; gap: 16px; margin-top: 6px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 600; color: var(--ink); font-size: .9rem; display: block; margin-bottom: 6px; }
input, textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--field); border-radius: 10px;
  font: inherit; color: var(--ink); background: transparent; }
input:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,106,0,.18); }
textarea { min-height: 140px; resize: vertical; }

/* ---------- Contact details ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 16px; }
.contact-list strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bar); color: #d6d3d1; padding: 44px 0 26px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.site-footer a { color: #d6d3d1; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid #3a3a3a; margin-top: 32px; padding-top: 18px; font-size: .85rem;
  color: #9a9a9a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Images ---------- */
.wrap-right { float: right; height: 220px; width: auto; max-width: 46%;
  margin: 4px 0 12px 28px; border-radius: 12px; object-fit: cover; }
.full-img { width: 100%; height: auto; display: block; border-radius: 12px; margin: 12px 0 4px; }
.glance-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 10px;
  margin-top: 14px; display: block; }
.about-hero-img { width: 100%; max-height: 470px; object-fit: cover; border-radius: 12px;
  margin-top: 6px; display: block; }

/* founder bios: text left, photo right */
.team { grid-template-columns: 1fr; gap: 30px; }
.person { display: grid; grid-template-columns: 1fr 240px; gap: 30px; align-items: start; }
.person .bio-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; }
.person h3 { margin-top: 0; }
.bio-links { margin-top: 9px; font-size: .82rem; display: grid; gap: 3px; }
.bio-links a { color: var(--brand-dark); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .cols-3, .cols-2, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .person { grid-template-columns: 1fr; }
  .person .bio-photo { max-width: 300px; }
}
@media (max-width: 760px) {
  .wrap-right { float: none; height: auto; width: 100%; max-width: 100%; margin: 0 0 16px; }
}
