:root {
  --ink: #17262b;
  --ink-soft: #44555a;
  --gold: #b98516;
  --gold-dark: #93630b;
  --paper: #f4fbfc;
  --mist: #e7f1f3;
  --blue: #d8e8ec;
  --line: rgba(42, 72, 78, .18);
  --shadow: 0 26px 70px rgba(23, 38, 43, .12);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Prevent trackpad/touch momentum from triggering a browser back/forward
     swipe or bounce-lock once a visitor reaches the top or bottom of the
     one-page site. */
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  overscroll-behavior-y: none;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(255,255,255,.94), transparent 28rem),
    linear-gradient(135deg, #f8fcfd 0%, var(--blue) 100%);
  font-family: var(--sans);
  font-weight: 300;
}

main {
  background: #dfecef;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

/* Logo bar: anchored at the top of the page but NOT sticky — it scrolls
   away with the hero so it never overlaps content further down. */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 22px clamp(24px, 3.4vw, 56px);
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

/* Social bar: fixed top-right, replaces the old nav links. */
.social-bar {
  /* Absolute (not fixed) so it scrolls away with the header instead of
     staying pinned while the page scrolls — matches .site-header. */
  position: absolute;
  top: 22px;
  /* Match .page's own horizontal padding (clamp(34px,5vw,74px)) exactly,
     PLUS whatever extra centering slack .home-hero picks up once it hits
     its own 1900px cap on very wide/zoomed-out screens — otherwise the
     icons stay pinned to the raw viewport edge while the hero (and its
     photo) center inward, drifting out of alignment. */
  right: calc(clamp(34px, 5vw, 74px) + max(0px, (100vw - clamp(68px, 10vw, 148px) - 1900px) / 2));
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-bar a,
.social-bar-btn {
  display: flex;
  color: var(--ink);
  transition: color .2s ease;
}

.social-bar a:hover,
.social-bar-btn:hover {
  color: var(--gold-dark);
}

.social-bar svg {
  width: 27px;
  height: 27px;
  /* CSS stroke-width overrides each icon's inline stroke-width="1.3"
     attribute, giving both icons a bolder line without touching every
     inline SVG individually. */
  stroke-width: 1.9;
}

.social-bar-btn {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.brand {
  order: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: clamp(48px, 4vw, 60px);
  height: clamp(48px, 4vw, 60px);
  object-fit: cover;
  object-position: center center;
  /* Fade the emblem's square background so it blends into the header. */
  -webkit-mask-image: radial-gradient(circle at center, #000 52%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 52%, transparent 70%);
}

.brand-text {
  display: grid;
  gap: 5px;
  justify-items: center;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 600;
  letter-spacing: .18em;
}

.brand-text em {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-indent: .24em;
  color: var(--gold-dark);
  font-style: normal;
  font-size: clamp(8px, .68vw, 10px);
  font-weight: 500;
  letter-spacing: .24em;
}

.brand-text em::before,
.brand-text em::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(10px, 1vw, 16px);
  height: 1px;
  background: currentColor;
  opacity: .85;
  text-indent: 0;
}

.page {
  position: relative;
  overflow: hidden;
  min-height: auto;
  border: 1px solid rgba(42, 72, 78, .16);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.98), rgba(255,255,255,.3) 42%, transparent 72%),
    linear-gradient(135deg, #edf7fa 0%, #d6e8ec 100%);
  /* Same vertical padding on every section so each transition/hairline
     break down the page has consistent breathing room above and below it. */
  padding: clamp(52px, 5vw, 88px) clamp(34px, 5vw, 74px);
  /* Clear the fixed header bar when jumping to in-page anchors. */
  scroll-margin-top: clamp(96px, 8vw, 120px);
}

/* First visible section on standalone pages needs to clear the fixed header. */
main > .page:first-child:not(.home-page) {
  padding-top: clamp(92px, 9vw, 124px);
}

.home-page {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  background:
    radial-gradient(70% 60% at 28% 42%, rgba(255,255,255,.55), transparent 62%),
    radial-gradient(120% 120% at 50% 0%, rgba(120,150,165,.16), transparent 55%),
    linear-gradient(165deg, #e6eef2 0%, #d9e5eb 48%, #cadbe2 100%);
}

.one-page-site .page + .page {
  border-top: 0;
}

.section-label {
  color: var(--gold-dark);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.005em;
}

h1 {
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.05;
}

h3 {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.18;
}

p {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.7;
}

.accent-line {
  width: 58px;
  height: 2px;
  margin: 24px 0 28px;
  background: var(--gold);
}

.script-line {
  margin-top: 12px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-style: italic;
  line-height: 1.16;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: linear-gradient(180deg, #cfa647, var(--gold-dark));
  color: #fff;
  box-shadow: 0 18px 36px rgba(147, 99, 11, .18);
}

.home-hero {
  position: relative;
  z-index: 1;
  align-self: start;
  display: grid;
  /* Text column stays flexible (1fr) so it fills to the page's padded
     edge like every other section — that's what keeps the photo's right
     edge flush with the social icons above it. The photo column is
     bounded so it can't grow past a sensible size, and the whole row
     gets an outer cap + centering purely as a safety net for ultra-wide
     or heavily zoomed-out windows. */
  grid-template-columns: minmax(340px, 1fr) minmax(400px, 600px);
  align-items: start;
  gap: clamp(24px, 3vw, 56px);
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding-top: clamp(88px, 7.4vw, 118px);
  padding-bottom: clamp(18px, 2.4vw, 36px);
  /* Clip the globe's horizon lines to the hero row so they never bleed into
     the proof strip below. */
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.hero-copy .script-line {
  margin-top: clamp(34px, 3.2vw, 50px);
}

.hero-copy .button {
  margin-top: clamp(58px, 7vw, 104px);
}

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(24px, 4vw, 46px);
}

.hero-logo-row img {
  width: clamp(72px, 6vw, 104px);
  height: clamp(72px, 6vw, 104px);
  object-fit: cover;
  object-position: center center;
  /* Fade the emblem's square background out so it blends into the page. */
  -webkit-mask-image: radial-gradient(circle at center, #000 52%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 52%, transparent 70%);
}

.hero-wordmark {
  display: grid;
  gap: 7px;
  text-transform: uppercase;
}

.hero-wordmark strong {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: .22em;
}

.hero-wordmark span {
  color: var(--gold-dark);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: .34em;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(34px, 3.1vw, 48px);
  text-transform: uppercase;
}

.hero-copy > p:not(.script-line) {
  max-width: 52ch;
  margin-top: clamp(32px, 3vw, 44px);
  font-weight: 400;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 18px;
}

.founder-card img {
  width: 72px;
  height: 72px;
  border: 4px solid rgba(255,255,255,.72);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.founder-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
}

.founder-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 400;
}

.hero-globe {
  position: relative;
  min-height: clamp(500px, 52vw, 800px);
  isolation: isolate;
}

.hero-globe::before {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-53%);
  width: min(46vw, 720px);
  aspect-ratio: 1086 / 1448;
  background: url("../images/leslie-simon-globe-rich.png") center / contain no-repeat;
  opacity: 1;
  z-index: -1;
  /* Keep the sphere fully visible, then gradually fade the horizon lines
     that radiate outward below it so they lessen in intensity toward the
     bottom edge instead of cutting off abruptly. */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 76%,
    rgba(0, 0, 0, 0.85) 84%,
    rgba(0, 0, 0, 0.4) 94%,
    rgba(0, 0, 0, 0.15) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 76%,
    rgba(0, 0, 0, 0.85) 84%,
    rgba(0, 0, 0, 0.4) 94%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
}

.proof-item {
  display: block;
  min-height: 168px;
  padding: 26px clamp(18px, 2.4vw, 30px) 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.15;
}

.proof-item span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.about-page {
  display: grid;
  grid-template-rows: 1fr auto;
  /* Flat light-blue base with a soft white-to-blue fade painted over the
     top ~150px, so the white Experience section above eases into this
     one instead of cutting hard. */
  background:
    linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 150px) top / 100% 150px no-repeat,
    #d8e8f0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, .85fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.about-copy {
  max-width: 610px;
}

.about-copy p + p {
  margin-top: 18px;
}

/* Two-column editorial bio, used when there's no portrait alongside it. */
.about-layout--full {
  display: block;
}

.about-intro {
  max-width: 760px;
  margin-bottom: clamp(30px, 3.4vw, 46px);
}

.about-columns {
  columns: 2;
  column-gap: clamp(40px, 5vw, 72px);
  column-rule: 1px solid rgba(176, 141, 63, .3);
}

.about-columns p {
  break-inside: avoid;
}

.about-columns p + p {
  margin-top: 18px;
}

.portrait-hero {
  align-self: center;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow);
  /* Soften the hard rectangular cutoff with a gentle edge feather. */
  -webkit-mask-image: radial-gradient(ellipse at center, #000 88%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 88%, transparent 100%);
}

.hero-portrait {
  align-self: center;
  max-width: 600px;
  aspect-ratio: 5 / 6;
  /* Center within its track instead of hugging the right edge (the base
     .portrait-hero rule right-aligns it for the About page's layout). */
  margin: 0 auto;
  /* The photo's background is transparent and blends into the page, so the
     card-style drop shadow from .portrait-hero would just read as a stray
     box around it — drop it here. */
  box-shadow: none;
}

.portrait-hero img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.icon-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}

/* Areas of Expertise (10 items): two even rows of 5 instead of 8-wide. */
.icon-strip.icon-strip--expertise {
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(40px, 5vw, 68px);
}

.icon-strip-title {
  grid-column: 1 / -1;
  padding: 18px clamp(26px, 5vw, 64px) 0;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.icon-item {
  display: grid;
  gap: 8px;
  place-items: center;
  /* Pack icon+label at the top of the cell so any extra height from taller
     (2-line) neighbors in the same row falls below the label, not as a gap
     between the icon and its text. */
  align-content: start;
  min-height: 112px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.icon-item:last-child {
  border-right: 0;
}

.icon-item b {
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  font-size: 25px;
  line-height: 1;
}

.icon-item b svg {
  width: 27px;
  height: 27px;
}

.icon-item b svg.icon-fashion {
  width: 38px;
  height: auto;
}

.icon-item span {
  max-width: 16ch;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.28;
}

.services-page,
.contact-page {
  display: grid;
  align-items: center;
}

.divider-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.divider-title::before,
.divider-title::after {
  content: "";
  height: 1px;
  background: rgba(185, 133, 22, .28);
}

.services-page {
  /* Flat white: pairs with About's flat light-blue for a crisp, clean
     seam at the top of this section (mirrors the Hero/Experience cut). */
  background: #ffffff;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(230px, 300px) 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.services-copy p {
  max-width: 30ch;
  margin-top: 26px;
  font-weight: 500;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 295px;
  padding: 12px clamp(18px, 2.4vw, 36px);
  border-right: 1px solid var(--line);
}

.service-card-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 34px;
}

.service-card-icon svg {
  width: 34px;
  height: 34px;
}

.service-card h3,
.model-item h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

/* Reserve enough title height for the longest heading in each row (up to 4
   lines for services, 3 for models) so every description starts on the
   same horizontal line regardless of how many lines its own title wraps to. */
.service-card h3 {
  min-height: 5.6em;
}

.model-item h3 {
  min-height: 4.2em;
}

.service-card p {
  font-size: 15px;
  font-weight: 400;
}

.models {
  margin-top: 38px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.model-item {
  padding: 12px clamp(18px, 2.4vw, 36px);
  border-right: 1px solid var(--line);
}

.model-item:last-child {
  border-right: 0;
}

.model-item p {
  font-size: 15px;
  font-weight: 400;
}

.contact-page {
  padding-right: clamp(26px, 4vw, 62px);
  /* Flat light-blue base with a soft white-to-blue fade painted over the
     top ~150px, so the white Services section above eases into this one
     instead of cutting hard (same treatment as About). */
  background:
    linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 150px) top / 100% 150px no-repeat,
    #d8e8f0;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 410px) minmax(360px, 1fr) minmax(230px, 310px);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.contact-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.contact-intro img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.contact-intro h1,
.contact-intro h2 {
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.2;
}

.contact-intro p {
  margin-top: 22px;
  font-weight: 400;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(42, 72, 78, .16);
  background: rgba(255, 255, 255, .58);
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.form-status {
  margin-top: 4px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(185, 133, 22, .1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.form-status.is-error {
  border-left-color: #b3402f;
  background: rgba(179, 64, 47, .1);
}

.connect-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  list-style: none;
}

.connect-list li {
  font-size: 15px;
  font-weight: 500;
}

.connect-note {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}

.contact-globe {
  position: absolute;
  right: clamp(-220px, -12vw, -90px);
  bottom: clamp(-115px, -9vw, -56px);
  width: min(34vw, 520px);
  opacity: .23;
  pointer-events: none;
}

.brand-tagline {
  padding: 22px clamp(24px, 5vw, 74px) 26px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--ink-soft);
  background: rgba(244, 251, 252, .74);
}

.brand-tagline span {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.site-footer {
  display: none;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 5vw, 74px);
  border-top: 1px solid var(--line);
  background: rgba(244, 251, 252, .74);
}

.site-footer p,
.site-footer a {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

/* Contact's three-column grid (minmax 260/360/230 + gaps) needs more room
   than the other layouts before it can comfortably fit, so it gets its
   own, higher breakpoint instead of sharing the 860px one below. */
@media (max-width: 1020px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .home-hero,
  .about-layout,
  .services-layout {
    grid-template-columns: 1fr;
  }

  .hero-globe {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: -1;
  }

  .hero-globe::before {
    left: 50%;
    right: auto;
    top: 46%;
    width: min(118vw, 760px);
    transform: translate(-50%, -50%);
    opacity: .16;
  }

  .portrait-hero,
  .portrait-hero img {
    min-height: 420px;
  }

  .about-columns {
    columns: 1;
    column-rule: 0;
  }

  .service-grid,
  .model-grid,
  .proof-strip,
  .icon-strip,
  .icon-strip.icon-strip--expertise {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-globe {
    width: 460px;
    opacity: .14;
  }
}

@media (max-width: 760px) {
  .social-bar {
    top: 16px;
    right: 16px;
    gap: 12px;
  }

  .social-bar svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.9;
  }

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

  .brand-text strong {
    font-size: 24px;
  }

  .brand-text em {
    font-size: 11px;
  }

  .home-hero {
    display: block;
  }

  .hero-portrait {
    margin-top: clamp(28px, 6vw, 40px);
    max-width: none;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-logo-row {
    align-items: flex-start;
  }

  /* Compact the icon/stat strips into 2 columns so these sections are far
     shorter on phones instead of one tall single-file list. */
  .proof-strip,
  .icon-strip,
  .icon-strip.icon-strip--expertise {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item,
  .icon-item {
    min-height: 0;
    padding: 16px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .icon-item span {
    max-width: none;
  }

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

  .contact-form,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 20px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    font-size: 24px;
  }

  .service-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-card p {
    font-size: 13px;
  }

  .model-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .model-item h3 {
    text-align: center;
  }

  .portrait-hero,
  .portrait-hero img {
    min-height: 340px;
  }

  .contact-intro img {
    width: 128px;
    height: 128px;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* ---------- Brand marquee section (slide 2) ---------- */

.brandbar-page {
  /* Solid white background: the recolored logo knockouts are filled with
     this exact color, so it must stay flat (no gradient). Pairs with the
     hero's blue for a crisp, clean seam at the top of this section. */
  background: #ffffff;
  /* Vertical padding now comes from the shared .page rule, so this section's
     rhythm matches About/Services/Contact instead of running its own scale. */
}

.brandbar-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.14;
  color: var(--ink);
  text-align: center;
  margin: 0;
}

/* LS crest at the top of the slide: monogram between fading hairlines. */
.brandbar-crest {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  margin-bottom: clamp(24px, 2.8vw, 40px);
}

.brandbar-crest::before,
.brandbar-crest::after {
  content: "";
  flex: 1;
  height: 1px;
}

.brandbar-crest::before {
  background: linear-gradient(to right, transparent, rgba(176, 141, 63, .55));
}

.brandbar-crest::after {
  background: linear-gradient(to left, transparent, rgba(176, 141, 63, .55));
}

.brandbar-crest img {
  width: clamp(58px, 5.4vw, 84px);
  height: auto;
  /* Same treatment as the header brand mark: fade the emblem's square
     background so only the round LS seal shows. */
  -webkit-mask-image: radial-gradient(circle at center, #000 52%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 52%, transparent 70%);
}

/* Hairline–diamond–hairline flourish beneath the headline. */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  margin: clamp(22px, 2.6vw, 34px) auto 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(176, 141, 63, .6);
}

.ornament-divider span {
  width: 7px;
  height: 7px;
  background: #b08d3f;
  transform: rotate(45deg);
}

/* Full-bleed hairlines framing the logo band, matching the crest gold. */
.marquee-band {
  border-top: 1px solid rgba(176, 141, 63, .45);
  border-bottom: 1px solid rgba(176, 141, 63, .45);
  margin: clamp(34px, 4.4vw, 62px) calc(-1 * clamp(34px, 5vw, 74px)) clamp(40px, 5vw, 72px);
  padding: clamp(24px, 2.8vw, 40px) 0;
}

.logo-marquee {
  overflow: hidden;
  /* Fade the strip edges for an editorial feel. */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 80s linear infinite;
}

.logo-marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes brand-marquee {
  to { transform: translateX(-50%); }
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: clamp(44px, 4.8vw, 78px);
  padding-right: clamp(44px, 4.8vw, 78px);
}

.marquee-set img {
  display: block;
  width: auto;
  max-width: none;
}

.marquee-set .logo-lg { height: 46px; }
.marquee-set .logo-md { height: 32px; }
.marquee-set .logo-sm { height: 24px; }
.marquee-set .logo-xw { height: auto; width: 180px; }

.logo-mlbpa {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .32em;
  line-height: 1.75;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #b08d3f;
}

.brand-exp {
  max-width: 1040px;
  margin: 0 auto;
}

.brand-exp .section-label {
  text-align: center;
  margin: 0 0 clamp(22px, 2.4vw, 34px);
}

.brand-exp-list {
  columns: 3;
  column-gap: clamp(44px, 6vw, 96px);
  column-rule: 1px solid rgba(176, 141, 63, .35);
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-exp-list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.15;
  color: var(--ink);
  break-inside: avoid;
}

@media (max-width: 760px) {
  .brand-exp-list { columns: 2; }
  .marquee-set .logo-lg { height: 38px; }
  .marquee-set .logo-md { height: 26px; }
  .marquee-set .logo-sm { height: 20px; }
  .marquee-set .logo-xw { width: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
