:root {
  --cream: #f6efe6;
  --ivory: #fdfaf6;
  --blush: #f3ddd7;
  --rose: #e4c2bb;
  --dust: #5c3a34;
  --ink: #2c2623;
  --muted: #6a5d56;
  --line: rgba(44, 38, 35, 0.12);
  --white: #fffdfb;
  --shadow: 0 18px 40px rgba(80, 52, 46, 0.06);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --radius: 18px;
  --header: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.7rem;
}

p,
ul {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 40;
  padding: 0.55rem 0.8rem;
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.preview-bar {
  margin: 0;
  padding: 0.45rem 1rem;
  background: #2c2623;
  color: #f6efe6;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--dust);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #433833;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 239, 230, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.logo-text strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-size: 0.85rem;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--header) + 1.7rem);
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

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

.nav a {
  text-decoration: none;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--blush);
}

.nav-cta {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #433833;
  color: var(--ivory);
}

.nav a[aria-current="page"] {
  background: var(--blush);
}

.hero {
  position: relative;
  padding: 2.8rem 0 3.2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(28rem, 80vw);
  height: min(28rem, 80vw);
  right: -6rem;
  top: -5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.hero h1 {
  font-size: clamp(2.2rem, 8.4vw, 4.1rem);
  margin-bottom: 1.35rem;
}

.hero em {
  font-style: italic;
  color: #8d5d57;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.doors,
.diensten,
.over,
.contact,
.page-intro {
  padding: 3.2rem 0;
}

.doors,
.diensten {
  background: var(--ivory);
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
}

.text-link {
  color: var(--muted);
  font-size: 0.92rem;
}

.door-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.door {
  display: flex;
  flex-direction: column;
  min-height: 10.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.15rem 1.1rem;
  text-decoration: none;
}

.door h3 {
  margin-bottom: auto;
  font-size: 1.55rem;
}

.door:hover,
.door:focus-visible {
  border-color: var(--rose);
  background: #fff8f5;
}

.door-go {
  margin: 1rem 0 0;
  color: var(--dust);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.freelance-tile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--blush);
  border: 1px solid #e6c8c1;
  border-radius: var(--radius);
  text-decoration: none;
}

.freelance-tile span {
  color: var(--muted);
  font-size: 0.95rem;
}

.freelance-tile strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.freelance-tile:hover,
.freelance-tile:focus-visible {
  background: #efd2cc;
}

.proof-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.proof-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
}

.proof-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.proof-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.page-intro h1 {
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}

.diensten-cta {
  margin: 2rem 0 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.section-intro {
  color: var(--muted);
}

.service-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.25rem;
  min-height: 100%;
  scroll-margin-top: 6.5rem;
}

.card-num {
  margin: 0 0 0.85rem;
  color: var(--dust);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.service-card h2,
.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
  overflow-wrap: break-word;
}

.card-line {
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.card-expect {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.card-expect span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--dust);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.over,
.contact {
  scroll-margin-top: 5.5rem;
}

.contact {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 42%);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-direct,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}

.contact-direct h3,
.contact-form h3 {
  font-size: 1.7rem;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dust);
}

.contact-direct a {
  font-family: var(--serif);
  font-size: 1.35rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-direct a:hover,
.contact-direct a:focus-visible {
  border-bottom-color: var(--dust);
}

.contact-direct small,
.preview-tag {
  margin-left: 0.35rem;
  color: var(--dust);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-note,
.form-hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form label {
  display: block;
  margin: 0.85rem 0 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 1.1rem;
}

.field-error {
  color: #8a3b36;
  font-size: 0.85rem;
  margin: 0 0 0.2rem;
}

.form-success {
  margin: 0.9rem 0 0;
  color: #3f5a3f;
}

.site-footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 0.35rem;
}

.footer-brand {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer a {
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact .social-links {
  margin: 0;
}

.site-footer .social-link {
  width: 2.75rem;
  height: 2.75rem;
  justify-content: center;
  border-radius: 999px;
}

.site-footer .social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .wrap {
    width: min(1120px, calc(100% - 3.5rem));
  }

  .door-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-footer {
    padding: 2rem 0 2.4rem;
  }

  .footer-logo {
    height: 2.9rem;
    max-width: 9rem;
  }

  .site-footer nav[aria-label="Footer"] {
    justify-content: flex-end;
    gap: 0.8rem 1.25rem;
  }

  .site-footer .social-link {
    width: 2.5rem;
    height: 2.5rem;
  }

  .site-footer .social-icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .hero-inner {
    margin-left: 0;
    padding-inline: clamp(1.5rem, 5vw, 3.25rem);
  }

  .contact-form .btn {
    width: auto;
  }
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav a {
    padding: 0.45rem 0.75rem;
  }

  .door-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .door {
    padding: 1.25rem 1.2rem 1.15rem;
  }

  .door h3 {
    font-size: 1.4rem;
  }

  .service-grid-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .service-card {
    padding: 1.4rem 1.35rem 1.45rem;
  }

  .service-card h2,
  .service-card h3 {
    font-size: 1.55rem;
  }

  .hero {
    padding: 4.4rem 0 4.6rem;
  }

  .hero-inner {
    padding-inline: clamp(1.75rem, 5vw, 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


@media (min-width: 900px) {
  .service-grid-detail {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1.15rem;
  }

  .door-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}


.over-slim p + p {
  margin-top: 0.85rem;
}

/* v4: thicker content + mood images */
.hero-split {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
}

.hero-figure,
.over-figure,
.page-intro-figure,
.mood-strip {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-figure img,
.over-figure img,
.page-intro-figure img,
.mood-strip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-figure img {
  aspect-ratio: 4 / 3;
}

.door-blurb {
  margin: 0.35rem 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.over-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.over-copy {
  max-width: 36rem;
}

.over-close {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--dust);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.35;
}

.werkwijze {
  padding: 3.2rem 0;
  background: var(--ivory);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

.mood-strip img {
  aspect-ratio: 21 / 9;
  max-height: 14rem;
  object-fit: cover;
}

.page-intro-split {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.page-intro-figure img {
  aspect-ratio: 16 / 9;
  max-height: 12rem;
  object-fit: cover;
}

.card-list {
  margin: 0 0 0.9rem;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-list li {
  margin-bottom: 0.35rem;
}

.card-list li:last-child {
  margin-bottom: 0;
}

.service-card-wide {
  grid-column: 1 / -1;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .hero {
    padding: 3.2rem 0 3.6rem;
  }

  .over-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.75rem;
  }

  .page-intro-split {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .mood-strip img {
    max-height: 16rem;
  }
}


/* v7 Dor Support wordmark */
.logo-img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(15rem, 58vw);
}

.footer-logo {
  display: block;
  height: 2.6rem;
  width: auto;
  max-width: 9rem;
}

@media (min-width: 720px) {
  .logo-img {
    height: 3.1rem;
    max-width: 17rem;
  }
}


/* v8: Bel/mail zichtbaar op 390 naast Menu */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #433833;
}

@media (min-width: 1100px) {
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }
}

/* v12: 390 header overflow — logo shrinks, Menu label hides on narrow */
.header-inner {
  min-width: 0;
}

.logo {
  min-width: 0;
  flex: 1 1 auto;
}

.logo-img {
  max-width: calc(100vw - 11.5rem);
  max-height: 2.15rem;
  height: auto;
  width: auto;
}

.header-actions {
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .logo-img {
    max-height: 1.95rem;
    max-width: calc(100vw - 9.5rem);
  }
}

/* v19: Over page stacked full portrait + teaser + lightbox bio */
/* Home teaser: small circular portrait */
.over-teaser .over-portrait-circle.over-portrait-sm,
.over-portrait-circle.over-portrait-sm {
  max-width: 8.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.over-teaser .over-portrait-circle.over-portrait-sm img,
.over-portrait-circle.over-portrait-sm img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.over-portrait-circle {
  max-width: 250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.over-portrait-circle img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.over-teaser .over-split {
  align-items: center;
}

@media (min-width: 900px) {
  .over-teaser .over-split {
    grid-template-columns: auto 1fr;
    gap: 2rem;
  }

  .over-teaser .over-portrait-circle.over-portrait-sm,
  .over-portrait-circle.over-portrait-sm {
    max-width: 10rem;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Over page: side-by-side on desktop (text left, full photo right);
   mobile: photo first for visual impact, then copy */
.over-page {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.over-page .over-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

/* Mobile: photo above text (DOM is copy then figure) */
.over-page .over-copy {
  order: 2;
  width: 100%;
  max-width: 36rem;
  margin: 0;
}

.over-page .over-portrait-full {
  order: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 865 / 1189;
}

.over-page .over-portrait-full img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.over-page .over-copy h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  margin-bottom: 0.55rem;
  line-height: 1.15;
}

@media (min-width: 900px) {
  .over-page .over-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.75rem;
    align-items: center;
    max-width: none;
  }

  .over-page .over-copy {
    order: 0;
    max-width: 36rem;
    margin: 0;
  }

  .over-page .over-portrait-full {
    order: 0;
    max-width: none;
    width: 100%;
    margin: 0;
    aspect-ratio: 865 / 1189;
  }

  .over-page .over-portrait-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.over-lead {
  margin: 0 0 1rem;
  max-width: 32rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
}

/* Portrait lightbox with bio under circle */
.portrait-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.portrait-lightbox[hidden] {
  display: none;
}

.portrait-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 38, 35, 0.42);
  backdrop-filter: blur(2px);
}

.portrait-lightbox-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(92vw, 26rem);
  max-height: min(92vh, 40rem);
  overflow-y: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 28px 60px rgba(80, 52, 46, 0.18);
}

.portrait-lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--blush);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.portrait-lightbox-close:hover,
.portrait-lightbox-close:focus-visible {
  background: var(--rose);
  outline: none;
}

.portrait-lightbox-figure {
  margin: 0;
  width: min(68vw, 18rem);
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.portrait-lightbox-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.portrait-lightbox-bio {
  margin: 0;
  max-width: 22rem;
  text-align: center;
}

.portrait-lightbox-bio p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}

.portrait-lightbox-actions {
  margin: 0.15rem 0 0;
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.portrait-lightbox-open {
  overflow: hidden;
}


/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0.75rem 0 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--dust);
  text-decoration: none;
  font-size: 0.92rem;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.social-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  display: block;
}

.social-links-contact {
  margin-top: 0.35rem;
}
