:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #f7f2ea;
  --white: #ffffff;
  --navy: #0b1224;
  --navy-2: #111b33;
  --gold: #c8a45d;
  --gold-soft: #eadbb8;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 28px 70px rgba(6, 10, 24, 0.18);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(200, 164, 93, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, #f6f0e6 34%, #fbfaf7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 70%);
}

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

.section-padding { padding: 112px 0; }

a { color: inherit; text-decoration: none; }
p { margin: 0; }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(11, 18, 36, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 16px 50px rgba(11, 18, 36, 0.22);
  color: var(--white);
  transition: background .25s ease, transform .25s ease;
}
.site-header.is-scrolled { background: rgba(11, 18, 36, 0.91); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, #f5deb3, var(--gold));
  font-size: 13px;
}
.brand-text { font-size: 15px; }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.site-nav .nav-cta { color: var(--navy); background: var(--gold-soft); font-weight: 700; }
.site-nav .nav-cta:hover { background: #f5ddb0; color: var(--navy); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 9px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 3px; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .65fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
  margin-bottom: 18px;
}
h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.055em; }
h1 {
  font-size: clamp(48px, 8vw, 98px);
  max-width: 920px;
}
h2 { font-size: clamp(34px, 5vw, 64px); }
h3 { font-size: 24px; letter-spacing: -.035em; }
.hero-lede {
  margin-top: 26px;
  max-width: 740px;
  color: #3e4654;
  font-size: clamp(18px, 2vw, 23px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 34px rgba(11, 18, 36, .22); }
.button.secondary { background: rgba(255,255,255,.56); border-color: var(--line); color: var(--navy); }
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.signal-row span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: #3f4756;
  font-size: 14px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -130px;
  top: -130px;
  background: radial-gradient(circle, rgba(200,164,93,.48), transparent 65%);
  z-index: -1;
}
.portrait-card { display: flex; gap: 18px; align-items: center; }
.portrait-photo {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px;
  border: 2px solid rgba(234, 219, 184, .55);
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}
.portrait-orb {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(145deg, #fff4dc, var(--gold));
  color: var(--navy);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -.04em;
}
.card-kicker { color: var(--gold-soft); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 6px; }
.portrait-card h2 { font-size: 34px; margin-bottom: 8px; }
.portrait-card p:last-child { color: rgba(255,255,255,.72); }
.card-divider { height: 1px; background: rgba(255,255,255,.14); margin: 28px 0; }
.quote { color: rgba(255,255,255,.82); font-size: 20px; line-height: 1.45; }
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.mini-metrics div { padding: 18px 14px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.mini-metrics strong { display: block; font-size: 26px; }
.mini-metrics span { display: block; color: rgba(255,255,255,.66); font-size: 12px; margin-top: 2px; }

.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading p:not(.eyebrow), .split-copy p, .impact-copy p, .profile-copy p, .thought-leadership p, .contact-card p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(17, 24, 39, 0.09);
  box-shadow: 0 18px 48px rgba(17, 24, 39, .06);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(17, 24, 39, .1); background: var(--white); }
.service-index { color: var(--gold); font-weight: 900; display: inline-block; margin-bottom: 48px; }
.service-card p { color: var(--muted); margin-top: 16px; }

.split-section {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: start;
}
.split-copy { position: sticky; top: 130px; }
.text-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 900;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
}
.method-stack { display: grid; gap: 16px; }
.method-item {
  padding: 28px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
}
.method-item span { color: var(--gold-soft); font-weight: 900; font-size: 22px; letter-spacing: -.03em; }
.method-item p { color: rgba(255,255,255,.74); }

.impact-band {
  padding: 92px 0 28px;
  background: var(--navy);
  color: var(--white);
}
.impact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: center;
}
.impact-copy p { color: rgba(255,255,255,.68); }
.impact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.impact-cards div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.impact-cards strong { font-size: clamp(36px, 5vw, 58px); line-height: 1; color: var(--gold-soft); letter-spacing: -.055em; }
.impact-cards span { color: rgba(255,255,255,.68); margin-top: 14px; }
.footnote { color: rgba(255,255,255,.48); font-size: 13px; margin-top: 32px; }

.profile-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  padding: 42px;
  border-radius: 32px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17, 24, 39, .08);
}
.profile-copy p + p { margin-top: 18px; }
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.credential-grid article {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .08);
}
.credential-grid p { color: var(--muted); margin-top: 14px; }

.thought-leadership { padding-top: 0; }

.image-story {
  padding-top: 36px;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 48px rgba(17,24,39,.08);
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0 0 58px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,18,36,.02), rgba(11,18,36,.12));
  mix-blend-mode: multiply;
}
.image-card img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(.88) contrast(.96) brightness(.98);
  transform: scale(1.01);
}
.image-card figcaption {
  padding: 18px 20px 22px;
  color: var(--muted);
  font-weight: 700;
}
.profile-showcase {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items: stretch;
}
.profile-showcase-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(17,24,39,.1);
}
.profile-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.profile-showcase-image.is-portrait {
  background: linear-gradient(145deg, #ffffff, #f2eadf);
}
.profile-showcase-image.is-portrait img {
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.98) contrast(1.02);
}
.profile-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #f7efe1);
  border: 1px solid rgba(17,24,39,.08);
}
.profile-showcase-copy p:not(.eyebrow) {
  color: var(--muted);
}
.studio-signature {
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--muted);
}
.publication-card {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f6eddf);
  border: 1px solid rgba(17, 24, 39, .09);
  box-shadow: 0 18px 46px rgba(17, 24, 39, .07);
}
.publication-card span { color: var(--gold); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .16em; }
.publication-card h3 { margin-top: 14px; max-width: 860px; }

.contact-section { padding-top: 0; }
.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 46px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--navy), #17223e);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -180px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(200, 164, 93, .4), transparent 68%);
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card p { color: rgba(255,255,255,.72); max-width: 680px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-card .button.primary { background: var(--gold-soft); color: var(--navy); }
.contact-card .button.secondary { background: rgba(255,255,255,.09); color: var(--white); border-color: rgba(255,255,255,.16); }

.site-footer {
  display: block;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 14px;
}
.footer-stack {
  display: grid;
  gap: 6px;
  align-items: start;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-grid, .split-section, .impact-grid, .profile-panel, .contact-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .service-grid, .credential-grid, .impact-cards, .image-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-showcase { grid-template-columns: 1fr; }
  .split-copy { position: static; }
  .contact-actions { align-items: start; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 28px, var(--max)); }
  .section-padding { padding: 78px 0; }
  .site-header { top: 10px; border-radius: 24px; align-items: flex-start; }
  .brand { padding-top: 2px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 62px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 20px;
    background: rgba(11, 18, 36, .96);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 16px; }
  .hero { padding-top: 112px; }
  .hero-card, .profile-panel, .contact-card, .publication-card { padding: 26px; }
  .portrait-card { align-items: flex-start; flex-direction: column; }
  .portrait-photo { width: 112px; height: 112px; }
  .mini-metrics, .service-grid, .credential-grid, .impact-cards, .image-grid { grid-template-columns: 1fr; }
  .image-card img { height: 260px; }

.profile-showcase-image.is-portrait {
  background: linear-gradient(145deg, #ffffff, #f2eadf);
}
.profile-showcase-image.is-portrait img {
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.98) contrast(1.02);
}
.profile-showcase-copy { padding: 24px; }
  .method-item { grid-template-columns: 1fr; gap: 8px; }
  .impact-cards div { min-height: 168px; }

}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, .96) 0%, rgba(255, 249, 239, .84) 42%, rgba(11, 18, 36, .22) 100%),
    url("assets/paris-executive-view-realistic.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #fbfaf7 86%);
}
.hero-content {
  padding: 30px 0;
}
.button.ghost {
  background: rgba(255,255,255,.42);
  border-color: rgba(11,18,36,.13);
  color: var(--navy);
}
.button.ghost:hover { background: rgba(255,255,255,.72); }
.visual-break {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 38px;
  margin-top: 4px;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.visual-break-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 26, .82), rgba(8, 13, 26, .18) 70%),
    url("assets/strategy-room-realistic.jpg") center / cover no-repeat;
  transform: scale(1.01);
  z-index: -2;
}
.visual-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(200,164,93,.32), transparent 34rem);
  z-index: -1;
}
.visual-break-copy {
  max-width: 760px;
  padding: clamp(34px, 7vw, 74px);
  color: var(--white);
}
.visual-break-copy h2 { max-width: 760px; }
.visual-break-copy .eyebrow { color: var(--gold-soft); }
.impact-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 13, 26, .95), rgba(8, 13, 26, .84)),
    url("assets/paris-night-realistic.jpg") center / cover no-repeat;
}
.contact-card {
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(11,18,36,.96), rgba(23,34,62,.88)),
    url("assets/paris-night-realistic.jpg") center / cover no-repeat;
}
.contact-card::after { opacity: .75; }
.contact-intro { display: flex; flex-direction: column; justify-content: space-between; gap: 34px; }
.contact-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 20px; }
.text-link.light { color: var(--gold-soft); border-color: rgba(234,219,184,.65); }
.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-form textarea { resize: vertical; min-height: 136px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-soft);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(234,219,184,.18);
}
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { color: rgba(255,255,255,.56) !important; font-size: 12px !important; margin-top: -4px !important; }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
.site-footer a { color: var(--navy); font-weight: 800; border-bottom: 1px solid rgba(200,164,93,.65); }

@media (max-width: 960px) {
  .contact-card { grid-template-columns: 1fr; }
  .visual-break { min-height: 360px; }
}

@media (max-width: 760px) {
  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(255, 249, 239, .97) 0%, rgba(255, 249, 239, .90) 52%, rgba(11, 18, 36, .22) 100%),
      url("assets/paris-executive-view-realistic.jpg") center / cover no-repeat;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 18px; }
  .visual-break { border-radius: 26px; min-height: 420px; }
}

.site-nav a.is-active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.page-main {
  padding-top: 120px;
}
.page-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
  padding: 84px 0 72px;
}
.page-hero-copy h1 {
  font-size: clamp(44px, 6.5vw, 86px);
}
.page-hero-image {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  min-height: 520px;
  background: #fff;
}
.page-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.95) contrast(.98);
}
.contact-hero .page-hero-image img {
  filter: saturate(.9) contrast(.96) brightness(.95);
}
.home-previews {
  padding-bottom: 72px;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.preview-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,24,39,.09);
  box-shadow: 0 18px 48px rgba(17,24,39,.07);
}
.preview-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(.94) contrast(.98);
}
.preview-card > div {
  padding: 30px;
}
.preview-card p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 14px;
}
.preview-card .button {
  margin-top: 24px;
}
.closing-cta {
  margin-bottom: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(145deg, var(--navy), #17223e);
  color: var(--white);
  box-shadow: var(--shadow);
}
.closing-cta p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
  margin-top: 14px;
  font-size: 18px;
}
.closing-cta .button.primary {
  background: var(--gold-soft);
  color: var(--navy);
  flex: 0 0 auto;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reason-card {
  min-height: 280px;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(17,24,39,.09);
  box-shadow: 0 18px 48px rgba(17,24,39,.06);
}
.reason-card span {
  color: var(--gold);
  font-weight: 900;
  display: inline-block;
  margin-bottom: 38px;
}
.reason-card p {
  color: var(--muted);
  margin-top: 16px;
}
.why-band {
  padding: 92px 0;
  background: var(--navy);
  color: var(--white);
}
.why-band .split-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}
.why-band .text-link.light {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}
@media (max-width: 960px) {
  .page-hero, .preview-grid, .reason-grid { grid-template-columns: 1fr; }
  .page-hero-image, .page-hero-image img { min-height: 420px; }
  .closing-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .page-main { padding-top: 96px; }
  .page-hero { min-height: auto; padding: 46px 0 58px; }
  .page-hero-image, .page-hero-image img { min-height: 360px; }
  .preview-card img { height: 240px; }
  .reason-card { min-height: auto; }
  .closing-cta { padding: 28px; margin-bottom: 52px; }
}

.site-header .linkedin-link {
  white-space: nowrap;
}
.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(255, 249, 239, .96) 0%, rgba(255, 249, 239, .84) 42%, rgba(11, 18, 36, .22) 100%),
    url("assets/paris-executive-view-realistic.jpg") center / cover no-repeat;
}
.impact-band {
  background:
    radial-gradient(circle at 10% 10%, rgba(200, 164, 93, .16), transparent 34rem),
    linear-gradient(145deg, #0b1224, #17223e);
}
.contact-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 164, 93, .18), transparent 32rem),
    linear-gradient(135deg, rgba(11,18,36,.98), rgba(23,34,62,.94));
}
.portrait-photo,
.portrait-hero-image img,
.preview-portrait,
.profile-showcase-image.is-portrait img {
  object-position: center center !important;
  background: #f2f0ef;
}
.page-hero-image.portrait-hero-image {
  background: #f4f1ee;
}
.portrait-hero-image img {
  object-fit: cover;
  object-position: center center !important;
}
.preview-card-text {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 164, 93, .22), transparent 24rem),
    linear-gradient(145deg, #ffffff, #f6efe3);
}
.preview-symbol {
  height: 300px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(11, 18, 36, .95), rgba(17, 27, 51, .86));
  color: var(--gold-soft);
  font-size: clamp(58px, 12vw, 132px);
  font-weight: 900;
  letter-spacing: -.08em;
}
.preview-card-text .preview-symbol + div {
  padding: 30px;
}
.site-nav a.is-active {
  background: rgba(255,255,255,.14);
  color: #fff;
}
.page-hero-image img {
  filter: saturate(.88) contrast(.96) brightness(.98);
}
.contact-hero .page-hero-image img {
  filter: saturate(.86) contrast(.95) brightness(.93);
}
.site-footer .footer-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.studio-signature {
  margin: 0;
  align-self: flex-start;
}
@media (max-width: 760px) {
  .preview-symbol { height: 240px; }
}

.brand-logo-mark {
  background: transparent;
  border: 1px solid rgba(255,255,255,.16);
  padding: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.brand-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.preview-logo-panel {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 48px);
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 164, 93, .18), transparent 24rem),
    linear-gradient(145deg, #ffffff, #f7f1e8);
}
.preview-logo-panel img {
  display: block;
  width: min(92%, 620px);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(11,18,36,.08));
}
@media (max-width: 760px) {
  .preview-logo-panel { min-height: 220px; padding: 24px; }
  .preview-logo-panel img { width: 94%; }
}
:root {
  --max: 1680px;
}

body {
  min-width: 100%;
}

.section-shell {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 120px)));
}

.site-header {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - clamp(24px, 4vw, 72px));
  max-width: none;
  padding: 10px clamp(12px, 2vw, 22px);
  border-radius: 24px;
  background: rgba(11, 18, 36, 0.86);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 52px rgba(11, 18, 36, 0.18);
}

.site-header.is-scrolled {
  background: rgba(11, 18, 36, 0.94);
}

.brand {
  min-width: 240px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.brand-text {
  font-size: 16px;
  white-space: nowrap;
}

.site-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a.is-active {
  background: rgba(255,255,255,.16);
}

.site-nav .linkedin-link {
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 900;
}

.site-nav .linkedin-link:hover {
  background: #f5ddb0;
  color: var(--navy);
}

.hero-grid,
.page-hero,
.impact-grid,
.split-section,
.profile-panel,
.preview-grid,
.reason-grid,
.contact-card,
.closing-cta {
  max-width: var(--max);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .72fr);
  gap: clamp(34px, 5vw, 82px);
}

.hero-content {
  max-width: 980px;
}

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

.page-hero {
  max-width: var(--max);
}

@media (min-width: 1400px) {
  h1 {
    font-size: clamp(64px, 6.6vw, 112px);
  }

  .page-hero-copy h1 {
    font-size: clamp(58px, 5.6vw, 96px);
  }

  .hero-card {
    min-height: 470px;
  }
}

@media (max-width: 1120px) {
  .brand {
    min-width: auto;
  }

  .site-nav a {
    padding: 10px 11px;
    font-size: 13px;
  }

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

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 22px;
    padding: 10px;
  }

  .brand-text {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

body {
  background: #f7f5f1;
}
body::before {
  display: none;
}
.section-padding {
  padding: 88px 0;
}
.site-header {
  top: 14px;
  width: min(1360px, calc(100% - 40px));
  border-radius: 18px;
  padding: 12px 18px;
  background: rgba(11, 18, 36, 0.92);
  box-shadow: 0 12px 36px rgba(11,18,36,.14);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.site-nav a {
  padding: 10px 14px;
  font-size: 14px;
}
.hero {
  min-height: auto;
  padding-top: 132px;
  padding-bottom: 42px;
}
.hero-grid {
  align-items: stretch;
}
h1 {
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1.06;
  letter-spacing: -.045em;
}
h2 {
  font-size: clamp(30px, 3.6vw, 52px);
}
.hero-lede,
.section-heading p:not(.eyebrow),
.split-copy p,
.impact-copy p,
.preview-card p:not(.eyebrow),
.reason-card p,
.contact-card p,
.closing-cta p:not(.eyebrow),
.profile-copy p {
  font-size: 17px;
}
.hero-card,
.preview-card,
.reason-card,
.service-card,
.profile-panel,
.contact-card,
.page-hero-image,
.closing-cta {
  border-radius: 24px;
}
.service-card,
.reason-card,
.preview-card,
.profile-panel {
  background: rgba(255,255,255,.9);
}
.split-copy {
  position: static;
}
.method-item {
  border-radius: 20px;
}
.portrait-photo {
  width: 118px;
  height: 140px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 24%;
}
.preview-portrait,
.portrait-hero-image img {
  object-fit: cover !important;
  object-position: center 22% !important;
}
.preview-card img {
  height: 380px;
}
.page-hero-image img {
  object-fit: cover;
  object-position: center 20%;
}
.page-hero {
  min-height: auto;
  padding: 48px 0 48px;
  gap: 36px;
}
.page-main {
  padding-top: 110px;
}
.impact-band {
  padding: 76px 0;
  background: linear-gradient(145deg, #101a31, #1a2747);
}
.impact-cards div {
  min-height: 190px;
}
.site-footer {
  padding-top: 8px;
}
.preview-logo-panel {
  min-height: 240px;
}
@media (max-width: 960px) {
  .site-header {
    width: calc(100% - 24px);
  }
  .preview-card img,
  .page-hero-image img {
    height: auto;
    min-height: 340px;
  }
}
@media (max-width: 760px) {
  .section-padding {
    padding: 68px 0;
  }
  .site-header {
    border-radius: 18px;
    width: calc(100% - 16px);
  }
  .portrait-card {
    align-items: center;
  }
  .portrait-photo {
    width: 110px;
    height: 130px;
  }
}

:root {
  --max: 1240px;
  --radius: 22px;
}

html { scroll-padding-top: 90px; }

body {
  background: #fbfaf7;
}

body::before { display: none; }

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section-padding { padding: 86px 0; }

.site-header {
  position: sticky;
  top: 0;
  left: auto;
  transform: none;
  width: 100%;
  max-width: none;
  z-index: 50;
  border-radius: 0;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(11, 18, 36, .97);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 34px rgba(11, 18, 36, .14);
}

.site-header.is-scrolled { background: rgba(11, 18, 36, .98); }

.brand { gap: 12px; }
.brand-mark { width: 42px; height: 42px; }
.brand-text { font-size: 16px; white-space: nowrap; }

.site-nav { gap: 6px; }
.site-nav a {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
}
.site-nav .linkedin-link {
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 900;
}
.site-nav .linkedin-link:hover { background: #f5ddb0; color: var(--navy); }

.hero {
  min-height: auto;
  padding: 86px 0 76px;
}
.hero-backdrop {
  opacity: .82;
  background:
    linear-gradient(90deg, rgba(255, 249, 239, .97) 0%, rgba(255, 249, 239, .88) 48%, rgba(11, 18, 36, .15) 100%),
    url("assets/paris-executive-view-realistic.jpg") center / cover no-repeat;
}
.hero::after { height: 90px; }
.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .72fr);
  gap: 44px;
}
.hero-content { padding: 0; }
h1 { font-size: clamp(44px, 6.6vw, 82px); }
h2 { font-size: clamp(31px, 4.2vw, 54px); }
.hero-lede { max-width: 680px; font-size: clamp(17px, 1.7vw, 21px); }

.hero-card,
.service-card,
.profile-panel,
.credential-grid article,
.preview-card,
.publication-card,
.contact-card,
.closing-cta,
.reason-card,
.page-hero-image {
  border-radius: 22px;
}

.portrait-photo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 38%;
}

.impact-band { padding: 76px 0; }
.impact-band .footnote { display: none !important; }
.impact-cards div { min-height: 172px; }

.page-main { padding-top: 0; }
.page-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 44px;
  padding: 78px 0 66px;
}
.page-hero-image { min-height: auto; }
.page-hero-image img {
  width: 100%;
  min-height: 0;
  height: 420px;
  object-fit: cover;
  display: block;
}
.hero-logo-panel {
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 164, 93, .18), transparent 22rem),
    linear-gradient(145deg, #fffdfa 0%, #f3ecdf 100%);
  border: 1px solid rgba(200, 164, 93, .24);
}
.hero-logo-panel img {
  height: 100%;
  object-fit: contain;
  padding: clamp(20px, 4vw, 34px);
  filter: drop-shadow(0 16px 28px rgba(11, 18, 36, .08));
}
.contact-graphic-panel {
  overflow: hidden;
  background: #f7f3eb;
}
.contact-graphic-panel img {
  object-fit: cover;
  object-position: center center !important;
}
.portrait-hero-image {
  max-width: 520px;
  justify-self: center;
  background: #f2f0ee;
  box-shadow: 0 18px 50px rgba(17,24,39,.12);
}
.portrait-hero-image img {
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center !important;
}
.preview-portrait {
  object-position: center 24% !important;
}
.preview-card img { height: 280px; }
.preview-card .preview-portrait {
  object-fit: cover;
  object-position: center 22% !important;
}

.service-grid,
.credential-grid,
.reason-grid { gap: 18px; }

.closing-cta { margin-bottom: 62px; }
.site-footer { padding: 30px 0 42px; }

@media (max-width: 980px) {
  .hero-grid,
  .page-hero,
  .split-section,
  .impact-grid,
  .profile-panel,
  .contact-card,
  .preview-grid,
  .reason-grid { grid-template-columns: 1fr; }
  .site-header { padding-inline: 18px; }
  .hero { padding-top: 64px; }
  .service-grid, .credential-grid, .impact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 28px, var(--max)); }
  .section-padding { padding: 62px 0; }
  .site-header { align-items: center; border-radius: 0; }
  .site-nav {
    top: 66px;
    left: 10px;
    right: 10px;
    background: rgba(11, 18, 36, .98);
  }
  .brand-text { font-size: 14px; }
  .hero { padding: 58px 0 56px; }
  h1 { font-size: clamp(40px, 12vw, 58px); }
  .mini-metrics, .service-grid, .credential-grid, .impact-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 54px 0 48px; }
  .page-hero-image img { height: 320px; }
  .hero-logo-panel img { padding: 18px; }
  .portrait-hero-image img { height: auto; }
  .preview-card img { height: 230px; }
  .preview-card .preview-portrait { object-position: center 18% !important; }
  .contact-form { padding: 18px; }
}

.preview-logo-panel {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 164, 93, .22), transparent 22rem),
    linear-gradient(145deg, #fffdfa 0%, #f3ecdf 100%);
}
.preview-logo-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200, 164, 93, .28);
  border-radius: 22px;
  pointer-events: none;
}
.preview-logo-panel img {
  position: relative;
  z-index: 1;
  width: min(96%, 780px);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(11, 18, 36, .10));
}

.about-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(200, 164, 93, .13), transparent 32rem),
    linear-gradient(180deg, #fbfaf7 0%, #f7f3eb 48%, #fbfaf7 100%);
}
.about-signature-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .68fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  padding: 82px 0 54px;
}
.about-hero-copy {
  max-width: 780px;
}
.about-hero-copy h1 {
  max-width: 820px;
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.about-portrait-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,238,225,.92));
  border: 1px solid rgba(17, 24, 39, .09);
  box-shadow: 0 26px 70px rgba(11, 18, 36, .14);
}
.about-portrait-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -110px;
  top: -90px;
  background: radial-gradient(circle, rgba(200,164,93,.28), transparent 66%);
}
.about-portrait-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  background: #f1efec;
}
.about-portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.03 / 1;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.98) contrast(1.01);
}
.about-identity-card {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(200,164,93,.26), transparent 18rem),
    linear-gradient(145deg, #0b1224, #182441);
}
.about-identity-card span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-identity-card h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 42px);
}
.about-identity-card p {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
}
.about-flow {
  padding-top: 42px;
}
.about-intro-panel {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 20px 54px rgba(17,24,39,.06);
}
.about-intro-panel p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.about-proof-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 16px 42px rgba(17,24,39,.05);
}
.about-proof-grid strong {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -.06em;
}
.about-proof-grid span {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}
.about-composition {
  padding-bottom: 18px;
}
.about-composition .section-heading {
  max-width: 860px;
}
.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.about-pillar {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 30px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(200,164,93,.25), transparent 18rem),
    linear-gradient(145deg, #0b1224, #17223e);
  box-shadow: 0 18px 44px rgba(11,18,36,.13);
}
.about-pillar span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(234,219,184,.12);
  color: var(--gold-soft);
  font-weight: 900;
  margin-bottom: 58px;
}
.about-pillar p {
  margin-top: 16px;
  color: rgba(255,255,255,.72);
}
.about-journey {
  display: grid;
  grid-template-columns: minmax(240px, .6fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}
.about-journey-heading {
  position: sticky;
  top: 104px;
}
.about-timeline {
  display: grid;
  gap: 16px;
}
.about-timeline article {
  position: relative;
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 16px 42px rgba(17,24,39,.05);
}
.about-timeline article::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200,164,93,.16);
}
.about-timeline span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-timeline h3 {
  margin-top: 10px;
}
.about-timeline p {
  margin-top: 12px;
  color: var(--muted);
}
.about-editorial-band {
  margin: 0 0 72px;
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(200,164,93,.2), transparent 32rem),
    linear-gradient(145deg, #0b1224, #17223e);
}
.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about-editorial-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}
.about-publication {
  color: var(--ink);
  background: linear-gradient(145deg, #fffdfa, #f2e8d8);
}
.about-publication p {
  margin-top: 16px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .about-signature-hero,
  .about-intro-panel,
  .about-journey,
  .about-editorial-grid {
    grid-template-columns: 1fr;
  }
  .about-journey-heading {
    position: static;
  }
  .about-portrait-card {
    max-width: 520px;
  }
  .about-proof-grid,
  .about-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .preview-logo-panel {
    min-height: 230px;
    padding: 20px;
  }
  .preview-logo-panel img {
    max-height: 190px;
    width: 100%;
  }
  .about-signature-hero {
    padding: 52px 0 34px;
  }
  .about-hero-actions {
    margin-top: 26px;
  }
  .about-portrait-card {
    padding: 10px;
    border-radius: 24px;
  }
  .about-identity-card,
  .about-intro-panel,
  .about-proof-grid article,
  .about-pillar,
  .about-timeline article,
  .about-publication {
    padding: 24px;
  }
  .about-proof-grid,
  .about-pillar-grid {
    grid-template-columns: 1fr;
  }
  .about-pillar {
    min-height: auto;
  }
  .about-pillar span {
    margin-bottom: 36px;
  }
  .about-editorial-band {
    padding: 62px 0;
    margin-bottom: 54px;
  }
}
