/* ============================================================
   ROOIBOS BUSINESS DEVELOPMENT — Four Seasons Edition
   Typography: Cormorant Garamond (headings) + Inter (body)
   Palette: Black · Cream · White · Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   Variables
   ============================================================ */
:root {
  --black:      #090909;
  --dark:       #1A1A1A;
  --text:       #252220;
  --muted:      #7A7368;
  --gold:       #B8975A;
  --gold-light: #D4B57A;
  --cream:      #F7F5F0;
  --warm:       #EEEADF;
  --white:      #FFFFFF;
  --border:     #E5E2DA;
  --border-dark: rgba(255,255,255,0.12);

  --font-serif: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 80px;
  --max-w: 1160px;

  --ease: all 0.35s ease;
  --ease-slow: all 0.6s ease;
}

/* ============================================================
   Reset
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; transition: var(--ease); }
ul,ol { list-style: none; }
button,input,textarea,select { font-family: inherit; font-weight: 300; }

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--dark);
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.25rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: 1.35rem; font-weight: 400; }
p  { font-size: 1rem; line-height: 1.85; font-weight: 300; }

em  { font-style: italic; }

/* ============================================================
   Utilities
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.wrap--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
.wrap--wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

.section       { padding: 120px 0; }
.section--sm   { padding: 80px 0; }
.section--xs   { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark); }
.section--black { background: var(--black); }

.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,0.6); }
.section--black h1,.section--black h2,.section--black h3 { color: var(--white); }
.section--black p { color: rgba(255,255,255,0.55); }

/* Eyebrow labels */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow--dark { color: var(--muted); }

/* Gold rule */
.rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.rule--center { margin: 28px auto; }
.rule--light  { background: rgba(255,255,255,0.3); }
.rule--long   { width: 80px; }

/* Section header */
.s-header           { margin-bottom: 72px; }
.s-header--center   { text-align: center; }
.s-header__sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 18px;
}
.s-header--center .s-header__sub { margin: 18px auto 0; }

.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

/* ============================================================
   Navigation — black bar, logo image
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--black);
  height: var(--nav-h);
  transition: var(--ease);
}
.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  object-position: center;
  /* logo is white on black – blends into black nav perfectly */
}
.nav__logo-text {}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav__logo-sub {
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--ease);
}
.nav__link:hover,
.nav__link.active   { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 9px 20px;
  border-radius: 0;
  transition: var(--ease);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold); color: var(--black) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1px;
  background: rgba(255,255,255,0.7); transition: var(--ease);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 40px 36px;
  gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 0.8rem; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7); letter-spacing: 0.15em;
}
.nav__mobile .nav__cta {
  margin-top: 24px; text-align: center; display: block; padding: 14px;
  color: var(--gold) !important;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid transparent;
  cursor: pointer; transition: var(--ease);
  border-radius: 0;
}
.btn--gold {
  background: var(--gold); color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn--outline-gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold); color: var(--black);
}
.btn--outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  border-color: var(--white); background: rgba(255,255,255,0.06);
}
.btn--outline-dark {
  background: transparent; color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark); color: var(--white);
}
.btn svg { width: 14px; height: 14px; }

/* ============================================================
   Hero — Full screen, centered, dark luxury
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  background-image: url('../images/office-biophilic.jpg');
  background-size: cover;
  background-position: center 35%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
  text-align: center;
}
.hero__noise {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom, rgba(9,9,9,0.70) 0%, rgba(9,9,9,0.82) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(184,151,90,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(184,151,90,0.06) 0%, transparent 50%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: 0 40px 100px;
  max-width: 960px;
}

/* Logo in hero (large, centered) */
.hero__logo {
  width: 88px; height: 88px;
  margin: 0 auto 36px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero__eyebrow {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.hero__rule {
  display: block;
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 36px auto;
}

.hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: 16px; justify-content: center; flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineDown 2.4s ease-in-out infinite;
}
@keyframes lineDown {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.9; transform: scaleY(0.55); }
}

/* ============================================================
   Manifesto / Intro strip
   ============================================================ */
.manifesto {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.manifesto-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.manifesto-item:first-child { padding-left: 0; border-left: none; }
.manifesto-item:last-child  { border-right: none; padding-right: 0; }
.manifesto-item__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
}
.manifesto-item__label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Editorial intro (split text)
   ============================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.intro-split__left {
  padding-right: 80px;
  border-right: 1px solid var(--border);
}
.intro-split__right {
  padding-left: 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.intro-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 32px;
}
.intro-body {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Intro split — image variant (right panel as photo) */
.intro-split__right--img {
  padding-left: 0;
  overflow: hidden;
  min-height: 520px;
}
.intro-split__right--img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1s ease;
  display: block;
}
.intro-split:hover .intro-split__right--img img {
  transform: scale(1.04);
}

/* ============================================================
   Editorial image break — full-width photo with quote overlay
   ============================================================ */
.img-break {
  width: 100%;
  height: 580px;
  overflow: hidden;
  position: relative;
}
.img-break__bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: absolute; inset: 0;
}
.img-break__overlay {
  position: absolute; inset: 0;
  background: rgba(9,9,9,0.52);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
}
.img-break__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 820px;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.img-break__quote::before {
  content: '"';
  display: block;
  font-size: 4.5rem;
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 18px;
}
.img-break__attr {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 32px;
}

/* About image column */
.about-img-col {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(145deg, #E8E4DB 0%, #D5D0C6 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder svg { width: 56px; height: 56px; opacity: 0.18; }
.about-gold-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 1px solid var(--gold);
  z-index: -1; opacity: 0.4;
}

/* ============================================================
   Services — editorial list style
   ============================================================ */
.services-editorial {
  display: flex; flex-direction: column; gap: 0;
}
.svc-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 56px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: var(--ease);
  cursor: default;
}
.svc-item:first-child { border-top: 1px solid var(--border); }
.svc-item:hover { background: var(--cream); margin: 0 -40px; padding: 52px 40px; }
.svc-item__num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: var(--ease);
}
.svc-item:hover .svc-item__num { color: var(--gold); opacity: 0.6; }
.svc-item__body {}
.svc-item__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--dark);
}
.svc-item__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}
.svc-item__arrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transition: var(--ease);
}
.svc-item__arrow svg { width: 16px; height: 16px; transition: transform 0.2s; }
.svc-item:hover .svc-item__arrow { opacity: 1; }
.svc-item:hover .svc-item__arrow svg { transform: translateX(4px); }

/* ============================================================
   Approach — numbered list, cream bg
   ============================================================ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.approach-col {
  padding: 56px 48px;
  border-right: 1px solid var(--border);
}
.approach-col:last-child { border-right: none; }
.approach-col:first-child { padding-left: 0; }
.approach-col__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 24px;
}
.approach-col__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark);
}
.approach-col__text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
}

/* ============================================================
   CTA — minimal, centered
   ============================================================ */
.cta-minimal {
  text-align: center;
  padding: 140px 0;
  background: var(--black);
  position: relative; overflow: hidden;
}
.cta-minimal::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,151,90,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.cta-minimal__inner { position: relative; z-index: 1; }
.cta-minimal__rule {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 40px;
}
.cta-minimal__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-minimal__title em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-minimal__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  max-width: 460px; margin: 0 auto 52px;
  line-height: 1.9;
}
.cta-minimal__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.cta-minimal__foot-rule {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to top, transparent, var(--gold));
  margin: 52px auto 0;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.4);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo-wrap { margin-bottom: 20px; }
.footer__logo-img  { height: 52px; width: 52px; object-fit: cover; }
.footer__desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
  margin-bottom: 28px;
}
.footer__social { display: flex; gap: 12px; }
.footer__soc {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); font-size: 0.8rem;
  transition: var(--ease);
}
.footer__soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__col-head {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link  {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  transition: var(--ease);
  letter-spacing: 0.02em;
}
.footer__link:hover { color: var(--white); }
.footer__contact-item { margin-bottom: 14px; }
.footer__contact-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block; margin-bottom: 4px;
}
.footer__contact-val {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.footer__contact-val a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}
.footer__bottom a { color: rgba(255,255,255,0.25); }
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   Page hero (inner pages) — centered, dark
   ============================================================ */
.page-hero {
  min-height: 52vh;
  background: var(--black);
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(184,151,90,0.07) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__crumb {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 28px;
}
.page-hero__crumb a { color: rgba(255,255,255,0.28); }
.page-hero__crumb a:hover { color: rgba(255,255,255,0.55); }
.page-hero__crumb span { margin: 0 10px; color: rgba(255,255,255,0.15); }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  max-width: 720px;
  line-height: 1.1;
}
.page-hero__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  max-width: 540px;
  margin-top: 22px;
  line-height: 1.9;
  font-weight: 300;
}

/* ============================================================
   Services detail page
   ============================================================ */
.svc-detail-list { display: flex; flex-direction: column; }
.svc-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail__meta { position: sticky; top: calc(var(--nav-h) + 28px); }
.svc-detail__num {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1; margin-bottom: 20px;
}
.svc-detail__title { font-size: 1.625rem; font-weight: 400; }
.svc-detail__body > p {
  color: var(--muted);
  line-height: 1.9; margin-bottom: 20px;
  font-size: 0.9375rem;
}
.svc-deliverables { margin-top: 40px; }
.svc-deliverables__head {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.deliverable { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; font-size: 0.9rem; }
.deliverable::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}

/* ============================================================
   Values — cream grid
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
}
.value-item {
  background: var(--cream);
  padding: 52px 48px;
}
.value-item__bar { width: 32px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.value-item__title { font-size: 1.25rem; font-weight: 400; margin-bottom: 14px; }
.value-item__text  { font-size: 0.875rem; color: var(--muted); line-height: 1.85; font-weight: 300; }

/* ============================================================
   About page — profile
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.profile-img-wrap { position: relative; }
.profile-img-wrap img,
.profile-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.profile-placeholder {
  background: linear-gradient(145deg, #E8E4DB, #D5D0C6);
  display: flex; align-items: center; justify-content: center;
}
.profile-placeholder svg { opacity: 0.18; width: 64px; }
.profile-gold-frame {
  position: absolute; bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  border: 1px solid rgba(184,151,90,0.4);
  z-index: -1;
}
.profile-content { padding-top: 12px; }
.profile-content p { color: var(--muted); margin-bottom: 20px; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0A66C2; color: var(--white);
  padding: 12px 22px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px; transition: var(--ease);
}
.linkedin-btn:hover { background: #0854A0; }
.linkedin-btn svg { width: 16px; height: 16px; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-aside { position: sticky; top: calc(var(--nav-h) + 32px); }
.contact-block { margin-bottom: 40px; }
.contact-block__lbl {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.contact-block__val {
  font-family: var(--font-serif);
  font-size: 1.125rem; font-weight: 400;
  color: var(--dark);
}
.contact-block__val a:hover { color: var(--gold); }

/* Form */
.form-wrap {
  background: var(--cream);
  padding: 56px 56px;
}
.form-title { font-size: 2.5rem; font-weight: 300; margin-bottom: 6px; }
.form-sub   { font-size: 0.875rem; color: var(--muted); margin-bottom: 44px; line-height: 1.75; }
.form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  font-size: 0.9375rem; font-weight: 300;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  transition: var(--ease); outline: none; width: 100%;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.08);
}
.form-textarea { resize: vertical; min-height: 150px; }
.form-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A7368' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-footer {
  margin-top: 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.form-privacy { font-size: 0.78rem; color: var(--muted); }
.form-privacy a { color: var(--gold); }
.form-success {
  display: none;
  background: #F0F7F0; border: 1px solid #C3D9C3;
  padding: 18px 22px; margin-top: 20px;
  font-size: 0.9rem; color: #2D5A2D;
}
.form-error {
  display: none;
  background: #FEF7F0; border: 1px solid #E8C9A0;
  padding: 18px 22px; margin-top: 20px;
  font-size: 0.9rem; color: #7A4A1A;
}

/* ============================================================
   Services quicknav (diensten page)
   ============================================================ */
.svc-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-nav__item {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  transition: var(--ease);
}
.svc-nav__item:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive — tablet ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
  .section { padding: 90px 0; }
  .wrap, .wrap--narrow, .wrap--wide { padding: 0 28px; }
  .nav__inner { padding: 0 28px; }

  .manifesto__inner { grid-template-columns: repeat(2, 1fr); }
  .manifesto-item:nth-child(2) { border-right: none; }
  .manifesto-item:nth-child(3),
  .manifesto-item:nth-child(4) { border-top: 1px solid var(--border); }

  .intro-split { grid-template-columns: 1fr; gap: 56px; }
  .intro-split__left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 56px; }
  .intro-split__right { padding-left: 0; }
  .intro-split__right--img { padding-left: 0; min-height: 300px; }
  .img-break { height: 360px; }
  .img-break__bg { background-attachment: scroll; }
  .about-img-col { display: none; }

  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-col:nth-child(2) { border-right: none; }
  .approach-col:nth-child(3),
  .approach-col:nth-child(4) { border-top: 1px solid var(--border); }
  .approach-col:nth-child(4) { border-right: none; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-img-wrap { display: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { position: static; }

  .svc-detail { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail__meta { position: static; }

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

/* ============================================================
   Responsive — mobile ≤768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 72px 0; }
  .wrap, .wrap--narrow, .wrap--wide { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }

  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile    { padding: 24px 20px 32px; }

  .hero__title { font-size: clamp(2.75rem, 9vw, 4rem); }
  .hero__content { padding: 0 20px 80px; }
  .hero__logo { width: 70px; height: 70px; }

  .manifesto__inner { grid-template-columns: 1fr 1fr; }

  .approach-grid { grid-template-columns: 1fr; }
  .approach-col  { border-right: none; border-top: 1px solid var(--border); }
  .approach-col:first-child { border-top: none; padding-left: 0; }

  .values-grid { grid-template-columns: 1fr; }

  .svc-item { grid-template-columns: 64px 1fr; gap: 24px; }
  .svc-item__arrow { display: none; }
  .svc-item:hover { margin: 0; padding: 52px 0; }

  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .form-footer { flex-direction: column; align-items: stretch; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  .cta-minimal { padding: 100px 0; }

  .page-hero { min-height: 44vh; }

  .hero__actions { flex-direction: column; align-items: center; }
  .cta-minimal__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto-item  { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0; }
  .manifesto-item:last-child { border-bottom: none; }
}
