:root{
  --bg:#0f0e0d;
  --paper:#f4efe7;
  --ink:#f6f0e7;
  --warm-ink:#1d1914;
  --muted:#c8bfb0;
  --warm-muted:#665d51;
  --line:rgba(246,240,231,.13);
  --warm-line:rgba(29,25,20,.12);
  --accent:#caa15f;
  --deep:#0f0e0d;
  --premium-dark-bg:
    radial-gradient(circle at 82% 12%, rgba(202,161,95,.18), transparent 30rem),
    radial-gradient(circle at 18% 86%, rgba(202,161,95,.11), transparent 26rem),
    radial-gradient(circle at 52% 48%, rgba(202,161,95,.055), transparent 34rem),
    var(--bg);
  --shadow:0 30px 90px rgba(0,0,0,.30);
  --container:1180px;
  --panel-top:118px;
  --panel-bottom:62px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Instrument Sans",system-ui,sans-serif;
  color:var(--ink);
  background:var(--premium-dark-bg);
  background-attachment:fixed;
  background-repeat:no-repeat;
  background-size:cover;
  font-size:1.06rem;
  line-height:1.68;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

.fresh-container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */

.site-shell{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:120;
  width:100%;
  transform:translateY(0);
  transition:transform .42s ease, opacity .32s ease;
  pointer-events:none;
  padding:8px 10px 0;
}

.site-shell.is-hidden{
  transform:translateY(-125%);
  opacity:0;
}

.shell-bar{
  width:100%;
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 22px;
  border:1px solid rgba(246,240,231,.14);
  border-radius:0 0 44px 44px;
  background:
    linear-gradient(90deg, rgba(202,161,95,.10), rgba(255,255,255,.03) 28%, rgba(202,161,95,.12) 72%, rgba(255,255,255,.03)),
    rgba(15,14,13,.86);
  backdrop-filter:blur(18px);
  box-shadow:
    0 18px 46px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.05);
  position:relative;
  overflow:visible;
  pointer-events:auto;
}

.shell-bar::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255,255,255,.07) 26%,
      rgba(202,161,95,.12) 50%,
      rgba(255,255,255,.07) 74%,
      transparent 100%
    );
  pointer-events:none;
  opacity:.95;
}

.shell-bar::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:
    inset 0 -1px 0 rgba(246,240,231,.06),
    inset 0 1px 0 rgba(255,255,255,.03);
  pointer-events:none;
}

.brand-mark,
.floating-nav,
.menu-toggle{
  position:relative;
  z-index:2;
}

.brand-mark{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}

.brand-mark img{
  height:58px;
  width:auto;
}

.floating-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1 1 auto;
  justify-content:flex-end;
}

.floating-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:999px;
  color:#f6f0e7;
  font-size:.98rem;
  font-weight:700;
  letter-spacing:-.01em;
  border:1px solid rgba(246,240,231,.04);
  background:rgba(246,240,231,.025);
  transition:
    transform .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    color .22s ease;
  overflow:hidden;
}

.floating-nav a::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  opacity:.18;
  transition:opacity .22s ease;
  pointer-events:none;
}

.floating-nav a::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-46%;
  width:42%;
  background:linear-gradient(115deg, transparent 0%, rgba(255,255,255,.24) 48%, transparent 100%);
  transform:skewX(-18deg);
  opacity:0;
  transition:left .5s ease, opacity .22s ease;
  pointer-events:none;
}

.floating-nav a:hover{
  color:#fffaf2;
  background:rgba(246,240,231,.07);
  border-color:rgba(246,240,231,.16);
  box-shadow:
    0 10px 24px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.05);
  transform:translateY(-1px);
}

.floating-nav a:hover::before{
  opacity:1;
}

.floating-nav a:hover::after{
  left:115%;
  opacity:1;
}

.floating-nav a:focus-visible{
  outline:none;
  border-color:rgba(202,161,95,.44);
  box-shadow:
    0 0 0 3px rgba(202,161,95,.14),
    0 10px 24px rgba(0,0,0,.14);
}

.floating-nav a[aria-current="page"]{
  color:#fffaf2;
  background:rgba(246,240,231,.08);
  border-color:rgba(246,240,231,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.floating-nav a[aria-current="page"]::before{
  opacity:1;
}

.menu-toggle{
  display:none;
  width:52px;
  height:52px;
  padding:0;
  border:1px solid rgba(246,240,231,.14);
  border-radius:999px;
  background:rgba(246,240,231,.05);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  color:#f6f0e7;
  margin-left:auto;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .24s ease, opacity .24s ease;
}

.menu-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* OVERLAY PANELS */

.brand-hero,
.manifest-section,
.values-section,
.project-story{
  position:sticky;
  top:0;
  min-height:100svh;
  display:flex;
  align-items:flex-start;
  padding-top:var(--panel-top);
  padding-bottom:var(--panel-bottom);
  overflow:hidden;
}

.brand-hero{
  z-index:1;
  background:var(--premium-dark-bg);
}

.manifest-section{
  z-index:2;
  background:var(--premium-dark-bg);
  box-shadow:0 -34px 90px rgba(0,0,0,.34);
}

.values-section{
  z-index:3;
  background:var(--paper);
  color:var(--warm-ink);
  border-top:1px solid var(--warm-line);
  border-bottom:1px solid var(--warm-line);
  box-shadow:0 -34px 90px rgba(0,0,0,.22);
}

.project-story{
  z-index:4;
  background:var(--premium-dark-bg);
  box-shadow:0 -34px 90px rgba(0,0,0,.34);
}

.brand-hero,
.manifest-section,
.project-story{
  background-attachment:fixed;
  background-repeat:no-repeat;
  background-size:cover;
}

.overlay-section{
  --overlay-progress:0;
  transform:translate3d(0, calc((1 - var(--overlay-progress)) * 6svh), 0);
}

.scroll-stack{
  position:relative;
  isolation:isolate;
  z-index:1;
}

/* HERO */

.hero-layout{
  display:grid;
  grid-template-columns:minmax(340px,.76fr) minmax(0,.94fr);
  grid-template-areas:
    "image heading"
    "image copy";
  gap:clamp(34px,5vw,72px);
  align-items:start;
}

.hero-center,
.hero-copy{
  max-width:690px;
}

.hero-center{
  grid-area:heading;
}

.hero-copy{
  grid-area:copy;
}

.chapter-label{
  margin:0 0 14px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  font-weight:900;
}

.hero-center h1,
.manifest-top h2,
.section-intro h2,
.project-copy h2,
.process-title h2,
.personal-copy h2,
.final-cta h2{
  margin:0;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-weight:700;
  color:var(--ink);
  letter-spacing:-.045em;
}

.hero-center h1{
  font-size:clamp(2.7rem,5vw,4.9rem);
  line-height:.94;
}

.hero-copy p:not(.chapter-label){
  max-width:620px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.72;
}

.hero-kicker{
  margin-top:14px !important;
  color:var(--accent) !important;
  font-size:1.04rem !important;
  font-weight:700;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.button-dark,
.button-line{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
  transition:transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.button-dark{
  background:linear-gradient(135deg,#f6f0e7,#d7bd86);
  color:#171410;
  box-shadow:0 16px 38px rgba(202,161,95,.22);
}

.button-line{
  border:1px solid rgba(246,240,231,.16);
  background:rgba(246,240,231,.04);
  color:var(--ink);
}

.button-line-warm{
  border-color:rgba(29,25,20,.18);
  background:rgba(29,25,20,.04);
  color:var(--warm-ink);
}

.button-dark:hover,
.button-line:hover{
  transform:translateY(-2px);
}

.hero-image-strip{
  grid-area:image;
  position:relative;
  justify-self:start;
  width:min(118%, 620px);
  margin:-24px 0 0 -72px;
  padding-bottom:50px;
  min-width:0;
  filter:drop-shadow(0 34px 80px rgba(0,0,0,.46));
}

.hero-image-strip img{
  width:100%;
  height:auto;
  animation:hero-float 7s ease-in-out infinite;
  transform:translate3d(0,0,0);
  will-change:transform;
}

.hero-meta{
  position:absolute;
  left:20px;
  right:20px;
  bottom:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.hero-meta span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border:1px solid rgba(246,240,231,.16);
  border-radius:999px;
  background:rgba(15,14,13,.62);
  color:#f6f0e7;
  backdrop-filter:blur(12px);
  font-size:.8rem;
  font-weight:700;
}

@keyframes hero-float{
  0%,
  100%{
    transform:translate3d(0,0,0) rotate(-.6deg);
  }

  50%{
    transform:translate3d(0,-12px,0) rotate(.5deg);
  }
}

/* MANIFEST / 001 - VISIE */

.manifest-top{
  max-width:760px;
  margin-bottom:74px;
}

.manifest-top h2,
.section-intro h2,
.project-copy h2,
.process-title h2,
.personal-copy h2,
.final-cta h2{
  font-size:clamp(2rem,3.6vw,3.8rem);
  line-height:1.02;
}

.manifest-body{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(280px,.72fr);
  gap:clamp(44px,6vw,88px);
  align-items:end;
}

.manifest-visual{
  margin:0;
  width:100%;
  padding-top:42px;
  align-self:end;
}

.manifest-visual img{
  width:100%;
  height:clamp(250px,26vw,350px);
  object-fit:cover;
  object-position:center;
  border-radius:28px;
  box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease;
}

.manifest-visual img:hover{
  transform:scale(1.01);
  box-shadow:0 34px 90px rgba(0,0,0,.30);
}

.manifest-copy{
  color:var(--muted);
  font-size:1.14rem;
  line-height:1.74;
  max-width:520px;
  min-height:calc(clamp(250px,26vw,350px) + 42px);
  padding-top:42px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-self:end;
}

.manifest-copy p{
  margin:0 0 18px;
}

.manifest-copy p:last-child{
  margin-bottom:0;
}

/* VALUES */

.values-section .chapter-label,
.values-section .value-row span{
  color:#a56e2f;
}

.values-section .section-intro h2,
.values-section .value-row h3{
  color:var(--warm-ink);
}

.values-top{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
  gap:clamp(28px,5vw,58px);
  align-items:end;
  margin-bottom:22px;
}

.section-intro{
  max-width:1000px;
  margin-bottom:28px;
}

.values-top .section-intro{
  margin-bottom:0;
  max-width:860px;
}

.values-section .section-intro h2{
  font-size:clamp(1.9rem,3vw,3.2rem);
  line-height:1.02;
  max-width:900px;
}

.values-visual{
  margin:0;
  justify-self:end;
  width:min(100%, 420px);
}

.values-visual img{
  width:100%;
  height:clamp(220px,25vw,320px);
  object-fit:cover;
  object-position:center;
  border-radius:26px;
  box-shadow:var(--shadow);
  transition:transform .35s ease, box-shadow .35s ease;
}

.values-visual img:hover{
  transform:scale(1.02);
  box-shadow:0 34px 90px rgba(0,0,0,.24);
}

.value-stack{
  border-top:1px solid var(--warm-line);
}

.value-row{
  display:grid;
  grid-template-columns:48px minmax(220px,.5fr) minmax(0,1fr);
  gap:22px;
  padding:20px 0;
  border-bottom:1px solid var(--warm-line);
  align-items:start;
}

.value-row span{
  color:var(--accent);
  font-weight:900;
  letter-spacing:.14em;
}

.value-row h3{
  margin:0;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-weight:700;
  font-size:clamp(1.12rem,1.65vw,1.62rem);
  line-height:1.1;
  letter-spacing:-.03em;
}

.value-row p,
.project-copy p,
.process-list p,
.personal-copy p{
  margin:0;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.7;
}

.values-section .value-row p{
  color:var(--warm-muted);
}

/* PROJECT */

.project-story-grid{
  display:grid;
  grid-template-columns:minmax(300px,.52fr) minmax(0,1fr);
  gap:clamp(34px,6vw,86px);
  align-items:center;
}

.project-story-grid:not(:has(.project-mosaic)){
  grid-template-columns:1fr;
}

.project-story-grid:not(:has(.project-mosaic)) .project-copy{
  max-width:1040px;
}

.project-story-grid:not(:has(.project-mosaic)) .project-copy h2{
  max-width:900px;
}

.project-copy p{
  max-width:560px;
  margin:20px 0 22px;
  font-size:1.08rem;
  line-height:1.72;
}

.project-story-grid:not(:has(.project-mosaic)) .project-copy p{
  max-width:820px;
}

.project-mosaic{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:16px;
  align-items:start;
}

.project-mosaic:has(img:only-child){
  grid-template-columns:1fr;
  align-self:center;
}

.project-mosaic img{
  width:100%;
  object-fit:cover;
  object-position:center;
  border-radius:24px;
  box-shadow:var(--shadow);
}

.project-mosaic img:first-child{
  height:460px;
}

.project-mosaic img:only-child{
  height:clamp(360px,38vw,540px);
}

.project-mosaic img:not(:first-child){
  height:370px;
  margin-top:42px;
}

/* REST */

.process-section,
.personal-section,
.faq-section,
.final-cta{
  padding:104px 0;
}

.process-section{
  background:transparent;
  color:#fffdf8;
  position:relative;
  z-index:5;
}

.process-grid{
  display:grid;
  grid-template-columns:minmax(0,.62fr) minmax(420px,1fr);
  gap:clamp(44px,7vw,92px);
  align-items:start;
}

.process-section .chapter-label{
  color:#f3c86b;
}

.process-title h2,
.final-cta h2{
  color:#fffdf8;
}

.process-list{
  border-top:1px solid rgba(255,253,248,.18);
}

.process-list article{
  display:grid;
  grid-template-columns:minmax(170px,.38fr) 1fr;
  gap:26px;
  padding:24px 0;
  border-bottom:1px solid rgba(255,253,248,.18);
}

.process-list span{
  color:#fffdf8;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-size:1.24rem;
  line-height:1.12;
  font-weight:800;
}

.process-list p{
  color:rgba(255,253,248,.74);
  font-size:1.06rem;
  line-height:1.7;
}

.personal-section{
  background:var(--paper);
  color:var(--warm-ink);
  position:relative;
  z-index:5;
}

.personal-section .chapter-label{
  color:#a56e2f;
}

.personal-copy h2{
  color:var(--warm-ink);
}

.personal-copy p{
  color:var(--warm-muted);
}

.personal-grid{
  display:grid;
  grid-template-columns:minmax(280px,380px) minmax(0,1fr);
  gap:clamp(44px,7vw,92px);
  align-items:center;
}

.personal-grid--text{
  display:block;
}

.personal-grid--text .personal-copy{
  max-width:860px;
}

.portrait-frame{
  position:relative;
}

.portrait-frame::before{
  content:"";
  position:absolute;
  inset:30px -18px -18px 32px;
  border-radius:28px;
  background:#dfd2bd;
}

.portrait-frame img{
  position:relative;
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  object-position:center 8%;
  border-radius:28px;
  box-shadow:var(--shadow);
}

.personal-copy p{
  max-width:680px;
  margin:20px 0 22px;
  font-size:1.08rem;
  line-height:1.72;
}

.faq-section{
  background:transparent;
  border-top:1px solid var(--line);
  position:relative;
  z-index:5;
}

.faq-list{
  border-top:1px solid var(--line);
}

.faq-item{
  display:grid;
  grid-template-columns:minmax(260px,.42fr) minmax(0,1fr);
  gap:34px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
}

.faq-item h3{
  margin:0;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-weight:700;
  font-size:clamp(1.18rem,1.6vw,1.6rem);
  line-height:1.14;
  letter-spacing:-.03em;
}

.faq-item p{
  margin:0;
  color:var(--muted);
  font-size:1.06rem;
  line-height:1.7;
}

.final-cta{
  background:transparent;
  text-align:center;
  position:relative;
  z-index:5;
}

.final-cta-inner{
  max-width:900px;
}

.final-cta .chapter-label{
  color:#f3c86b;
}

.final-cta h2{
  margin-bottom:24px;
}

.fresh-footer{
  padding:34px 0 46px;
  background:#0b0a09;
  color:#fffdf8;
  border-top:1px solid rgba(255,253,248,.12);
  position:relative;
  z-index:5;
}

.fresh-footer-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:40px;
  align-items:start;
}

.fresh-footer h3,
.fresh-footer p{
  margin:0;
}

.fresh-footer h3{
  font-size:1.25rem;
  line-height:1.1;
  color:var(--accent);
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-weight:700;
}

.fresh-footer p,
.fresh-footer a{
  color:var(--muted);
}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-column-left{
  justify-self:start;
  text-align:left;
}

.footer-column-center{
  justify-self:center;
  text-align:center;
}

.footer-column-right{
  justify-self:end;
  text-align:right;
}

.footer-column-right a{
  font-size:1.05rem;
  color:var(--muted);
}

.footer-legal-data{
  margin-top:42px;
  color:var(--muted);
  font-weight:700;
}

.whatsapp-link{
  display:inline-flex;
  width:max-content;
  color:rgba(255,253,248,.78);
}

.footer-socials{
  flex-direction:row;
  align-items:center;
  justify-content:center;
  gap:16px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  border:1px solid rgba(255,253,248,.14);
  border-radius:999px;
  background:rgba(255,253,248,.04);
  transition:background-color .22s ease, border-color .22s ease;
}

.social-link:hover{
  background:rgba(255,253,248,.08);
  border-color:rgba(202,161,95,.38);
}

.social-icon{
  width:28px;
  height:28px;
  object-fit:contain;
}

/* Subpagina basis: oude pagina-structuur, nieuwe visuele taal */
.container{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:fixed;
  top:18px;
  left:0;
  right:0;
  z-index:100;
  pointer-events:none;
}

.header-inner{
  min-height:66px;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(246,240,231,.14);
  border-radius:999px;
  background:rgba(15,14,13,.76);
  box-shadow:0 20px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(18px);
  pointer-events:auto;
}

.logo,
.logo-image{
  display:block;
}

.logo-image{
  width:138px;
  height:auto;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border:1px solid rgba(246,240,231,.12);
  border-radius:999px;
  background:rgba(246,240,231,.055);
}

.main-nav a{
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-size:.9rem;
  font-weight:800;
}

.main-nav a:hover,
.main-nav a[aria-current="page"]{
  color:var(--ink);
  background:rgba(246,240,231,.09);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  line-height:1;
}

.btn-primary{
  color:#1d1710;
  background:linear-gradient(135deg,#fff68a,#f1b85f);
  box-shadow:0 18px 45px rgba(202,161,95,.25);
}

.btn-outline,
.btn-ghost{
  color:var(--ink);
  border-color:rgba(246,240,231,.18);
  background:rgba(246,240,231,.05);
}

.section-dark{
  background:transparent;
  color:var(--ink);
}

.section-cream{
  background:var(--paper);
  color:#241f1a;
}

.light-panel-section{
  background:transparent;
  color:#241f1a;
}

.page-hero{
  padding:168px 0 92px;
  background:transparent;
}

.page-hero-inner{
  max-width:980px;
}

.eyebrow,
.section-label{
  margin:0 0 18px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  font-weight:900;
}

.page-title,
.section-head h2,
.statement h2,
.cta-box h2,
.info-card h2,
.contact-copy h2{
  margin:0;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  color:inherit;
  line-height:.98;
  letter-spacing:-.055em;
}

.page-title{
  max-width:980px;
  font-size:clamp(2.35rem,5.1vw,4.55rem);
}

.page-intro{
  max-width:780px;
  margin:24px 0 0;
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.72;
}

.section-head{
  max-width:920px;
  margin-bottom:34px;
}

.section-head h2,
.statement h2,
.cta-box h2,
.info-card h2,
.contact-copy h2{
  font-size:clamp(2rem,4.4vw,4rem);
}

.section-head p:not(.section-label),
.statement p,
.cta-box p,
.info-card p,
.contact-copy p{
  max-width:760px;
  color:var(--muted);
  font-size:1.04rem;
  line-height:1.72;
}

.extra-info,
.portfolio-feature,
.portfolio-overview,
.portfolio-gallery,
.statement,
.cta,
.contact-section{
  padding:96px 0;
}

.extra-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.info-card,
.cta-box,
.legal-content{
  border:1px solid rgba(246,240,231,.12);
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
  box-shadow:0 24px 70px rgba(0,0,0,.18);
}

.info-card{
  padding:34px;
}

.cta-box{
  padding:clamp(30px,5vw,56px);
}

.light-panel-section .cta-box{
  max-width:980px;
  margin:0 auto;
  border-color:rgba(36,31,26,.10);
  background:
    radial-gradient(circle at 85% 15%, rgba(202,161,95,.18), transparent 28%),
    #fffaf3;
  color:#241f1a;
  box-shadow:0 24px 70px rgba(34,27,18,.10);
}

.light-panel-section .section-label{
  color:#b7843e;
}

.light-panel-section .cta-box p{
  color:#61584f;
}

.light-panel-section .cta-box h2{
  max-width:640px;
  font-size:clamp(1.45rem,2.15vw,2.15rem);
  line-height:1.16;
}

.statement-grid,
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  gap:54px;
  align-items:start;
}

.portfolio-feature-copy p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.72;
}

.portfolio-preview-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 320px), 420px));
  gap:24px;
  align-items:start;
}

.portfolio-preview{
  width:100%;
}

.portfolio-preview-title{
  margin:0 0 12px;
  color:#b7843e;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.76rem;
  font-weight:900;
}

.portfolio-preview-image{
  display:block;
  overflow:hidden;
  border:1px solid rgba(36,31,26,.12);
  border-radius:26px;
  background:#fffaf3;
  box-shadow:0 24px 70px rgba(34,27,18,.12);
}

.portfolio-preview-image img{
  width:100%;
  height:260px;
  object-fit:contain;
  object-position:top center;
  background:#fffaf3;
}

.portfolio-preview-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.portfolio-preview-actions .btn-ghost{
  color:#241f1a;
  border-color:rgba(36,31,26,.22);
  background:rgba(36,31,26,.045);
}

.portfolio-preview-actions .btn-ghost:hover{
  background:rgba(36,31,26,.08);
}

.portfolio-meta{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin:34px 0;
  overflow:hidden;
  border:1px solid rgba(246,240,231,.12);
  border-radius:24px;
  background:rgba(246,240,231,.10);
}

.portfolio-meta-item{
  padding:22px;
  background:rgba(15,14,13,.72);
}

.portfolio-meta-label{
  display:block;
  margin-bottom:8px;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.7rem;
  font-weight:900;
}

.portfolio-gallery-light{
  background:var(--paper);
  color:#241f1a;
}

.portfolio-gallery-light .section-label,
.portfolio-gallery-light .portfolio-card-copy p{
  color:#b7843e;
}

.portfolio-gallery-light .section-head p:not(.section-label){
  color:#6b6258;
}

.portfolio-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  align-items:start;
}

.portfolio-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(36,31,26,.12);
  border-radius:26px;
  background:#fffaf3;
  color:#241f1a;
  box-shadow:0 22px 55px rgba(34,27,18,.10);
}

.portfolio-card-large{
  grid-row:auto;
}

.portfolio-card-image img{
  width:100%;
  height:220px;
  display:block;
  object-fit:contain;
  object-position:top center;
  background:#fffaf3;
}

.portfolio-card-large .portfolio-card-image img{
  height:220px;
}

.portfolio-card-copy{
  padding:18px 20px 22px;
}

.portfolio-card-copy p{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  font-weight:900;
}

.portfolio-card-copy h3{
  margin:0;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-size:clamp(1.15rem,1.55vw,1.45rem);
  line-height:1.08;
  letter-spacing:-.04em;
}

.anchor-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.anchor-nav a,
.back-to-top-link{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(246,240,231,.14);
  border-radius:999px;
  color:var(--ink);
  background:rgba(246,240,231,.055);
  font-weight:800;
}

.legal-content{
  padding:44px;
}

.legal-content h2{
  margin:42px 0 14px;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  color:var(--ink);
  font-size:clamp(1.45rem,2.2vw,2.2rem);
  line-height:1.08;
  letter-spacing:-.035em;
}

.legal-content p,
.legal-content li{
  color:var(--muted);
  font-size:1rem;
  line-height:1.72;
}

.legal-content a,
.blog-inline-link{
  color:var(--accent);
  border-bottom:1px solid currentColor;
}

.contact-form-wrap{
  border-radius:30px;
  padding:28px;
}

.contact-form-wrap--light{
  background:var(--paper);
  color:#241f1a;
  box-shadow:0 24px 70px rgba(0,0,0,.24);
}

.form-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.form-field{
  display:grid;
  gap:8px;
  margin-bottom:18px;
}

.form-field label{
  color:#3a3028;
  font-weight:900;
}

.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  min-height:56px;
  padding:0 18px;
  border:1px solid rgba(36,31,26,.12);
  border-radius:18px;
  background:#fff;
  color:#241f1a;
  font:inherit;
}

.form-field textarea{
  min-height:170px;
  padding-top:16px;
  resize:vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:2px solid rgba(202,161,95,.45);
  outline-offset:2px;
}

.hp-field{
  position:absolute;
  left:-9999px;
}

.site-footer{
  padding:54px 0;
  background:#0d0c0b;
  border-top:1px solid rgba(246,240,231,.10);
}

.footer-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:28px;
  align-items:start;
}

.footer-title{
  margin:0 0 8px;
  color:var(--accent);
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  font-size:1.35rem;
  letter-spacing:-.03em;
}

.bg-orb,
.noise{
  display:none;
}

.services-overview{
  padding:96px 0;
}

.blog-article-section{
  background:
    linear-gradient(180deg,#f4efe7 0%,#fffaf3 100%);
  color:#241f1a;
}

.process-card{
  width:min(860px,100%);
  margin:0 auto;
  padding:clamp(26px,5vw,56px);
  border:1px solid rgba(36,31,26,.10);
  border-radius:32px;
  background:rgba(255,250,243,.82);
  box-shadow:0 24px 70px rgba(34,27,18,.10);
}

.process-card p,
.process-card li{
  color:#5f564d;
  font-size:1.08rem;
  line-height:1.78;
}

.process-card h2{
  margin:46px 0 16px;
  font-family:"Bricolage Grotesque",system-ui,sans-serif;
  color:#241f1a;
  font-size:clamp(1.7rem,3vw,2.65rem);
  line-height:1.02;
  letter-spacing:-.045em;
}

.process-card p:first-child{
  margin-top:0;
}

.process-card p:last-child{
  margin-bottom:0;
}

.blog-hero .page-hero-inner{
  max-width:900px;
}

.about-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.52fr);
  gap:54px;
  align-items:center;
}

.about-hero-copy{
  max-width:780px;
}

.about-hero-visual{
  justify-self:end;
  width:min(380px,100%);
}

.about-portrait-shell{
  position:relative;
  padding:12px;
  border:1px solid rgba(246,240,231,.12);
  border-radius:34px;
  background:rgba(246,240,231,.045);
  box-shadow:0 24px 70px rgba(0,0,0,.26);
}

.about-portrait-shape{
  overflow:hidden;
  border-radius:26px;
  aspect-ratio:4/5;
}

.about-portrait-shape img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.light-inset{
  background:transparent;
}

.light-inset .statement-grid{
  padding:40px;
  border:1px solid rgba(246,240,231,.12);
  border-radius:30px;
  background:rgba(246,240,231,.045);
}

.section-return{
  margin-top:28px;
}

.footer-column-left p{
  margin-top:22px;
}

/* Over mij pagina */
.about-page .about-intro-scroll{
  background:transparent;
}

.about-page .about-intro-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,410px);
  gap:clamp(42px,7vw,92px);
  align-items:start;
}

.about-page .about-intro-copy{
  min-width:0;
}

.about-page .about-hero{
  padding:168px 0 54px;
  background:transparent;
}

.about-page .about-hero-grid{
  grid-template-columns:minmax(0,1fr) minmax(280px,410px);
  gap:clamp(42px,7vw,92px);
  align-items:center;
}

.about-page .about-hero-copy{
  max-width:760px;
}

.about-page .about-hero-visual{
  justify-self:center;
  width:min(410px,100%);
  position:sticky;
  top:124px;
  align-self:start;
  margin-top:168px;
  z-index:2;
}

.about-page .about-portrait-shell{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.about-page .about-portrait-shape{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  border:1px solid rgba(202,161,95,.50);
  border-radius:64% 36% 58% 42% / 42% 56% 44% 58%;
  box-shadow:0 34px 90px rgba(0,0,0,.34);
}

.about-page .about-portrait-shape::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 0 12px rgba(246,240,231,.035);
  pointer-events:none;
}

.about-page .about-portrait-shape img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 12%;
  transform:scale(1.02);
}

.about-page .extra-info{
  padding:86px 0;
}

.about-page .about-origin-section{
  padding-top:20px;
  padding-bottom:110px;
}

.about-page .extra-info-grid{
  max-width:1100px;
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}

.about-page .info-card{
  display:grid;
  grid-template-columns:minmax(260px,.42fr) minmax(0,1fr);
  column-gap:clamp(72px,8vw,128px);
  row-gap:18px;
  padding:42px 0;
  border:0;
  border-top:1px solid rgba(246,240,231,.12);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.about-page .info-card:last-child{
  border-bottom:1px solid rgba(246,240,231,.12);
}

.about-page .info-card .section-label{
  grid-column:1;
  margin-top:6px;
}

.about-page .info-card h2{
  grid-column:1;
  font-size:clamp(1.65rem,3.2vw,3rem);
}

.about-page .info-card-copy{
  grid-column:2;
  max-width:720px;
}

.about-page .info-card-copy p{
  margin:0;
}

.about-page .info-card-copy p + p{
  margin-top:16px;
}

.about-page .light-inset{
  background:var(--paper);
  color:#241f1a;
}

.about-page .light-inset .statement-grid{
  padding:clamp(34px,5vw,64px);
  border:1px solid rgba(36,31,26,.10);
  border-radius:30px;
  background:#fffaf3;
  box-shadow:0 24px 70px rgba(34,27,18,.10);
}

.about-page .light-inset .section-label{
  color:#b7843e;
}

.about-page .light-inset .statement-left h2{
  max-width:620px;
  font-size:clamp(1.75rem,3.1vw,3.2rem);
  line-height:1.08;
}

.about-page .light-inset .statement-right p{
  color:#61584f;
}

/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .72s ease, transform .72s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.22s}

@media (min-width:761px){
  .process-section{
    margin-top:-30svh;
  }
}

/* MEDIUM */

@media (max-width:1040px){
  .hero-layout,
  .manifest-body,
  .project-story-grid,
  .process-grid,
  .personal-grid,
  .values-top{
    grid-template-columns:1fr;
  }

  .hero-layout{
    grid-template-areas:
      "heading"
      "image"
      "copy";
  }

  .hero-center,
  .hero-copy{
    max-width:820px;
  }

  .hero-image-strip{
    justify-self:start;
    width:min(100%, 560px);
    margin:0;
    max-width:660px;
    padding-bottom:46px;
    filter:drop-shadow(0 24px 56px rgba(0,0,0,.42));
  }

  .project-mosaic img:first-child{
    height:420px;
  }

  .value-row{
    grid-template-columns:42px minmax(200px,.48fr) minmax(0,1fr);
    gap:18px;
  }

  .values-visual{
    justify-self:start;
    width:min(100%, 520px);
  }

  .manifest-top{
    margin-bottom:42px;
  }

  .manifest-body{
    gap:28px;
  }

  .manifest-visual{
    padding-top:0;
  }

  .manifest-visual img{
    height:clamp(220px,30vw,320px);
  }

  .manifest-copy{
    min-height:auto;
    padding-top:0;
    max-width:680px;
    display:block;
  }
}

/* SHORT DESKTOP HEIGHTS */

@media (max-height:900px) and (min-width:761px){
  :root{
    --panel-top:100px;
    --panel-bottom:44px;
  }

  .shell-bar{
    min-height:88px;
    padding:12px 20px;
  }

  .brand-mark img{
    height:52px;
  }

  .floating-nav a{
    min-height:46px;
    padding:0 18px;
    font-size:.94rem;
  }

  .hero-center h1{
    font-size:clamp(2.45rem,4.55vw,4.2rem);
  }

  .hero-copy p:not(.chapter-label){
    margin-top:14px;
    font-size:1.04rem;
    line-height:1.64;
  }

  .hero-actions{
    margin-top:18px;
    gap:10px;
  }

  .button-dark,
  .button-line{
    min-height:46px;
    padding:0 18px;
  }

  .hero-image-strip img{
    height:auto;
  }

  .hero-meta{
    left:16px;
    right:16px;
    bottom:0;
  }

  .hero-meta span{
    min-height:30px;
    font-size:.76rem;
  }

  .manifest-top h2,
  .section-intro h2,
  .project-copy h2,
  .process-title h2,
  .personal-copy h2,
  .final-cta h2{
    font-size:clamp(1.8rem,3vw,3rem);
  }

  .section-intro{
    margin-bottom:22px;
  }

  .values-top{
    margin-bottom:18px;
  }

  .values-section .section-intro h2{
    font-size:clamp(1.65rem,2.5vw,2.65rem);
  }

  .manifest-top{
    margin-bottom:48px;
  }

  .manifest-body{
    gap:32px;
  }

  .manifest-visual{
    padding-top:32px;
  }

  .manifest-visual img{
    height:clamp(220px,22vw,300px);
  }

  .manifest-copy{
    min-height:calc(clamp(220px,22vw,300px) + 32px);
    padding-top:32px;
    font-size:1rem;
    line-height:1.6;
  }

  .values-visual img{
    height:clamp(190px,22vw,260px);
  }

  .value-row{
    padding:16px 0;
    gap:16px;
  }

  .value-row h3{
    font-size:clamp(1rem,1.35vw,1.32rem);
  }

  .value-row p,
  .project-copy p,
  .process-list p,
  .personal-copy p,
  .faq-item p{
    font-size:.98rem;
    line-height:1.58;
  }

  .process-list article,
  .faq-item{
    padding:18px 0;
  }

  .process-list span{
    font-size:1.08rem;
  }
}

/* MOBILE */

@media (max-width:760px){
  .fresh-container{
    width:min(100% - 24px, var(--container));
  }

  .site-shell{
    top:0;
    padding:6px 8px 0;
    width:100%;
  }

  .shell-bar{
    min-height:78px;
    padding:10px 12px;
    border-radius:0 0 28px 28px;
  }

  .brand-mark img{
    height:42px;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .floating-nav{
    position:absolute;
    top:calc(100% + 10px);
    right:0;
    left:0;
    display:flex;
    flex-direction:column;
    gap:0;
    padding:8px;
    border:1px solid rgba(246,240,231,.12);
    border-radius:24px;
    background:rgba(15,14,13,.94);
    backdrop-filter:blur(16px);
    box-shadow:0 18px 46px rgba(0,0,0,.22);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .24s ease, transform .24s ease, visibility .24s ease;
    z-index:30;
  }

  .floating-nav.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .floating-nav a{
    min-height:50px;
    padding:0 16px;
    border-radius:16px;
    justify-content:flex-start;
  }

  .floating-nav a::after{
    display:none;
  }

  .floating-nav a::before{
    border-radius:16px;
  }

  .brand-hero,
  .manifest-section,
  .values-section,
  .project-story{
    position:relative;
    top:auto;
    min-height:auto;
    padding-top:64px;
    padding-bottom:56px;
    overflow:hidden;
  }

  .brand-hero{
    padding-top:108px;
  }

  .manifest-section,
  .values-section,
  .project-story,
  .process-section,
  .personal-section,
  .faq-section,
  .final-cta{
    border-radius:28px 28px 0 0;
    box-shadow:0 -18px 46px rgba(0,0,0,.20);
  }

  .manifest-section,
  .values-section,
  .project-story{
    margin-top:-34px;
  }

  .process-section,
  .personal-section,
  .faq-section,
  .final-cta{
    margin-top:-24px;
    padding-top:88px;
    overflow:hidden;
  }

  .overlay-section{
    transform:none !important;
  }

  .overlay-section + .overlay-section{
    margin-top:-34px;
  }

  .hero-layout{
    grid-template-columns:1fr;
    grid-template-areas:
      "heading"
      "image"
      "copy";
    gap:24px;
  }

  .hero-center h1{
    font-size:clamp(2.2rem,10.5vw,3.3rem);
  }

  .hero-copy p:not(.chapter-label){
    font-size:1.02rem;
    line-height:1.64;
  }

  .hero-actions{
    gap:10px;
    margin-top:20px;
  }

  .button-dark,
  .button-line{
    width:100%;
    min-height:48px;
  }

  .hero-image-strip img{
    height:auto;
  }

  .hero-meta{
    left:14px;
    right:14px;
    bottom:0;
  }

  .manifest-top h2,
  .section-intro h2,
  .project-copy h2,
  .process-title h2,
  .personal-copy h2,
  .final-cta h2{
    font-size:clamp(1.85rem,8.7vw,2.8rem);
  }

  .values-section .section-intro h2{
    font-size:clamp(1.6rem,7vw,2.3rem);
  }

  .manifest-top{
    margin-bottom:26px;
  }

  .manifest-body{
    grid-template-columns:1fr;
    gap:20px;
    align-items:start;
  }

  .manifest-visual{
    padding-top:0;
  }

  .manifest-visual img{
    height:220px;
    border-radius:22px;
  }

  .manifest-copy{
    min-height:auto;
    padding-top:0;
    max-width:none;
    display:block;
    font-size:1.04rem;
    line-height:1.66;
  }

  .values-top{
    gap:18px;
    margin-bottom:18px;
  }

  .values-visual{
    width:100%;
  }

  .values-visual img{
    height:220px;
    border-radius:22px;
  }

  .value-row,
  .process-list article,
  .faq-item{
    grid-template-columns:1fr;
    gap:10px;
    padding:18px 0;
  }

  .value-row h3{
    font-size:clamp(1.05rem,6vw,1.45rem);
  }

  .value-row p,
  .project-copy p,
  .process-list p,
  .personal-copy p,
  .faq-item p{
    font-size:1.02rem;
    line-height:1.66;
  }

  .project-mosaic{
    grid-template-columns:1fr;
  }

  .project-mosaic img:first-child,
  .project-mosaic img:not(:first-child){
    grid-row:auto;
    height:220px;
    margin-top:0;
  }

  .process-section,
  .personal-section,
  .faq-section,
  .final-cta{
    padding:88px 0 70px;
  }

  .fresh-footer-inner{
    grid-template-columns:1fr;
    gap:28px;
  }

  .footer-column-left,
  .footer-column-center,
  .footer-column-right{
    justify-self:start;
    text-align:left;
  }

  .footer-socials{
    justify-content:flex-start;
  }

  .footer-legal-data{
    margin-top:22px;
  }

  .container{
    width:min(100% - 28px,1180px);
  }

  .site-header{
    top:12px;
  }

  .header-inner{
    min-height:58px;
    border-radius:26px;
    align-items:flex-start;
  }

  .logo-image{
    width:124px;
  }

  .main-nav{
    position:absolute;
    top:68px;
    left:12px;
    right:12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    border-radius:22px;
    padding:10px;
    background:rgba(15,14,13,.94);
  }

  .main-nav.is-open{
    display:flex;
  }

  .main-nav a{
    width:100%;
    padding:13px 14px;
  }

  .header-cta{
    display:none;
  }

  .page-hero{
    padding:120px 0 62px;
  }

  .page-title{
    font-size:clamp(2rem,9.5vw,3rem);
  }

  .page-intro{
    font-size:1.02rem;
    line-height:1.66;
  }

  .extra-info,
  .portfolio-feature,
  .portfolio-overview,
  .portfolio-gallery,
  .statement,
  .cta,
  .contact-section{
    padding:68px 0;
  }

  .section-head h2,
  .statement h2,
  .cta-box h2,
  .info-card h2,
  .contact-copy h2{
    font-size:clamp(1.85rem,9vw,2.75rem);
  }

  .light-panel-section .cta-box h2{
    font-size:clamp(1.35rem,5.4vw,1.8rem);
  }

  .extra-info-grid,
  .statement-grid,
  .contact-layout,
  .portfolio-meta,
  .portfolio-gallery-grid,
  .form-row{
    grid-template-columns:1fr;
  }

  .info-card,
  .cta-box,
  .legal-content,
  .contact-form-wrap{
    padding:24px;
    border-radius:22px;
  }

  .portfolio-card-large{
    grid-row:auto;
  }

  .portfolio-card-image img,
  .portfolio-card-large .portfolio-card-image img{
    height:220px;
  }

  .portfolio-preview-image img{
    height:220px;
  }

  .portfolio-preview-actions .btn{
    width:100%;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }

  .services-overview{
    padding:68px 0;
  }

  .process-card{
    padding:24px;
    border-radius:22px;
  }

  .process-card p,
  .process-card li{
    font-size:1rem;
    line-height:1.68;
  }

  .about-hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .about-hero-visual{
    justify-self:start;
    width:min(320px,100%);
  }

  .light-inset .statement-grid{
    padding:24px;
    border-radius:22px;
  }

  .about-page .about-hero{
    padding:120px 0 32px;
  }

  .about-page .about-intro-grid,
  .about-page .about-hero-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .about-page .about-hero-visual{
    justify-self:start;
    width:min(300px,86vw);
    position:relative;
    top:auto;
    grid-row:2;
    margin-top:0;
    transform:none;
  }

  .about-page .about-portrait-shape{
    aspect-ratio:3/4;
    border-radius:58% 42% 55% 45% / 38% 54% 46% 62%;
  }

  .about-page .extra-info{
    padding:64px 0;
  }

  .about-page .about-origin-section{
    padding-top:36px;
    padding-bottom:64px;
  }

  .about-page .info-card{
    grid-template-columns:1fr;
    gap:12px;
    padding:30px 0;
  }

  .about-page .info-card .section-label,
  .about-page .info-card h2,
  .about-page .info-card-copy,
  .about-page .info-card p:not(.section-label){
    grid-column:auto;
  }

  .about-page .light-inset .statement-left h2{
    font-size:clamp(1.55rem,6.7vw,2.2rem);
  }

  .reveal{
    transition-duration:.58s;
  }
}
