/* ---------------------------------------------------------------------------
   Brand typography — self-hosted webfonts
   Futura PT Demi · Silk Serif Light Italic · Mr Eaves XL Modern OT
   Source archives: OnlineWebFonts.com (see assets/fonts/LICENSE-onlinewebfonts.txt)
   NOTE: these are commercial retail typefaces. Confirm you hold a webfont
   licence from the foundries (Paratype/Adobe, Type Dynamic, Emigre).
   To revert: delete this @font-face block and the "Brand typography overrides"
   block at the end of this file, and restore --sans to "Outfit".
   --------------------------------------------------------------------------- */
@font-face {
  font-family: "Futura PT Demi";
  src: url("../fonts/futura-pt-demi.woff2") format("woff2"),
       url("../fonts/futura-pt-demi.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Silk Serif Light Italic";
  src: url("../fonts/silk-serif-light-italic.woff2") format("woff2"),
       url("../fonts/silk-serif-light-italic.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mr Eaves XL Modern";
  src: url("../fonts/mr-eaves-xl-modern.woff2") format("woff2"),
       url("../fonts/mr-eaves-xl-modern.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f4efe7;
  --ivory: #faf7f2;
  --paper: #ebe4d8;
  --charcoal: #2f2d2a;
  --ink: #1c1b19;
  --muted: #6f6a63;
  --sage: #6a7468;
  --petal: #d9cfc2;
  --script: #b9a894;
  --white: #ffffff;
  --header-h: 72px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Mr Eaves XL Modern", "Outfit", "Helvetica Neue", sans-serif;
  --display-sans: "Futura PT Demi", "Outfit", "Helvetica Neue", sans-serif;
  --serif-italic: "Silk Serif Light Italic", "Cormorant Garamond", Georgia, serif;
  --script-font: "Great Vibes", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  background: var(--white);
  border-bottom: 1px solid rgba(47, 45, 42, 0.06);
}

.menu-btn {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.menu-btn span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-btn i {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.wordmark {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.header-nav {
  justify-self: end;
  display: flex;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-nav a[aria-current="page"] {
  color: var(--sage);
}

.header-nav ul,
.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* The header sets its own gap below; without this the footer menu rendered
   as one run-on word (HOMEPORTFOLIOABOUTEXPERIENCEINQUIRE), because the WP
   <li> markup carries no whitespace between items the way the static
   bare-<a> footer does. */
.site-footer nav ul {
  gap: 16px 22px;
  justify-content: center;
}

.header-nav ul {
  justify-content: flex-end;
  gap: 16px;
}

.header-nav li,
.overlay nav li,
.site-footer nav li {
  list-style: none;
  margin: 0;
}

.header-nav .current-menu-item > a,
.overlay nav .current-menu-item > a {
  color: var(--sage);
}

.wordmark img {
  display: block;
  max-height: 36px;
  width: auto;
}

.overlay nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-101%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.55s var(--ease), visibility 0s 0.55s;
}

.overlay.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.55s var(--ease), visibility 0s;
}

.overlay__visual {
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.15), rgba(28, 27, 25, 0.45)),
    url("../images/about-portrait.jpg"),
    url("../images/placeholders/hero-left.svg");
  background-size: cover;
  background-position: center;
}

.overlay__panel {
  padding: 36px 56px;
  display: flex;
  flex-direction: column;
}

.overlay__close {
  align-self: flex-end;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
}

.overlay nav {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.overlay nav a {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
}

.overlay nav a:hover {
  color: var(--script);
}

.overlay__foot {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--petal);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  overflow: hidden;
  background: var(--charcoal);
}

.hero__col {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__brand {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  text-shadow: 0 1px 24px rgba(28, 27, 25, 0.45);
}

.hero__kicker,
.hero__tag {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero__kicker {
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(36px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero__tag {
  margin-top: 18px;
  max-width: 34rem;
}

.chapter {
  padding: 96px 8vw;
}

.chapter--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.chapter--cream {
  background: var(--cream);
}

.kicker {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
}

.chapter--dark .kicker {
  color: var(--petal);
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
  margin: 0 0 24px;
}

.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  margin: 0;
}

.chapter--dark .lede {
  color: var(--petal);
}

.signature {
  font-family: var(--script-font);
  font-size: clamp(48px, 7vw, 88px);
  color: var(--script);
  line-height: 1;
  margin: 8px 0 36px;
}

.center {
  text-align: center;
}

.center .lede {
  margin-inline: auto;
}

.frame {
  position: relative;
  width: min(420px, 86vw);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper);
}

.frame__track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.frame__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 14px 28px;
  border: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

.chapter--dark .btn:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}

.manifesto {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 80px 8vw;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.35), rgba(28, 27, 25, 0.45)),
    var(--wdw-manifesto, url("../images/placeholders/hero-right.svg")) center/cover;
}

.split-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.portrait {
  min-height: 72vh;
  background:
    var(--wdw-about-portrait, url("../images/placeholders/hero-left.svg")) center/cover;
}

.press {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
  text-align: center;
}

.press p {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

.press strong {
  display: block;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
}

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

.card {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  color: var(--white);
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 27, 25, 0.72));
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
}

.card .btn {
  margin-top: 0;
  border-color: var(--white);
}

.card .btn:hover {
  background: var(--white);
  color: var(--ink);
}

.card--weddings {
  background-image: var(--wdw-cat-weddings);
}

.card--portraits {
  background-image: var(--wdw-cat-portraits);
}

.card--editorial {
  background-image: var(--wdw-cat-editorial);
}

.quote {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.quote p {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-style: italic;
  line-height: 1.45;
}

.quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: 1fr;
}

.feature {
  min-height: 70vh;
  display: grid;
  place-items: end start;
  padding: 48px 8vw;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.feature h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
}

.page-hero {
  min-height: 54vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 80px 24px 48px;
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.3), rgba(28, 27, 25, 0.45)),
    var(--page-image, url("../images/placeholders/hero-right.svg")) center/cover;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 36px 16px 8px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.filters a,
.filters button {
  color: inherit;
}

.filters a:hover,
.filters button.is-active {
  color: var(--sage);
}

.gallery-features {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 88px 0 96px;
  overflow: hidden;
}

.gallery-features .kicker {
  color: var(--petal);
  margin-bottom: 18px;
}

.gallery-features .display {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(28px, 4.6vw, 52px);
  margin: 0 auto 8px;
  max-width: 18ch;
}

.reel {
  width: min(1180px, 92vw);
  margin: 52px auto 0;
  overflow: hidden;
}

.reel__track {
  display: flex;
  width: 100%;
  gap: 14px;
}

.reel__item {
  flex: 0 0 calc((100% - 28px) / 3);
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}

.reel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.reel__item:hover img {
  transform: scale(1.04);
}

.masonry {
  columns: 3;
  column-gap: 12px;
  padding: 12px;
}

.masonry figure {
  margin: 0 0 12px;
  break-inside: avoid;
  background: var(--paper);
  cursor: pointer;
}

.masonry img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: opacity 0.45s var(--ease);
}

.masonry figure:hover img {
  opacity: 0.88;
}

.masonry figcaption {
  padding: 10px 4px 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offer {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid rgba(47, 45, 42, 0.08);
}

.offer h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 12px;
}

.form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 12px;
  border: 0;
  border-bottom: 1px solid var(--petal);
  background: transparent;
  font: inherit;
  color: var(--ink);
}

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

.site-footer {
  padding: 64px 8vw 40px;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.site-footer .wordmark {
  display: inline-block;
  margin-bottom: 28px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer small {
  display: block;
  margin-top: 36px;
  color: var(--petal);
  letter-spacing: 0.12em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 72px 24px 48px;
  background: rgba(28, 27, 25, 0.92);
  color: var(--ivory);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__stage {
  margin: 0;
  text-align: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox__caption,
.lightbox__count {
  margin: 16px 0 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--petal);
}

.lightbox__count {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
}

.lightbox__prev,
.lightbox__next {
  padding: 12px;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }

  .hero,
  .split-copy,
  .triptych,
  .press,
  .offer-grid,
  .overlay {
    grid-template-columns: 1fr;
  }

  .hero__col + .hero__col {
    display: none;
  }

  .overlay__visual {
    display: none;
  }

  .masonry {
    columns: 1;
  }

  .reel__item {
    flex-basis: 100%;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 64px 16px 80px;
  }

  .lightbox__prev,
  .lightbox__next {
    position: absolute;
    bottom: 20px;
  }

  .lightbox__prev {
    left: 16px;
  }

  .lightbox__next {
    right: 16px;
  }

  .portrait,
  .card,
  .feature {
    min-height: 56vh;
  }
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}


/* ---------------------------------------------------------------------------
   Brand typography overrides
   Applies the self-hosted faces to the display roles. Delete this whole block
   (and the @font-face block at the top) to fall back to Google Fonts.
   --------------------------------------------------------------------------- */
.wordmark,
.site-footer .wordmark,
.hero h1,
.kicker,
.chapter--dark .kicker,
.gallery-features .kicker,
.header-nav,
.overlay nav {
  font-family: var(--display-sans);
}

.quote p {
  font-family: var(--serif-italic);
  font-style: normal;
}

.font-credit {
  display: block;
  margin-top: 6px;
  opacity: 0.45;
  font-size: 9px;
}

.font-credit a {
  color: inherit;
}


/* ---------------------------------------------------------------------------
   Statement — the large mixed-weight display line in the dark studio chapter.
   Serif lines set against sans lines, with an italic serif connector word.
   Inspired treatment only; the wording is our own.
   --------------------------------------------------------------------------- */
.statement {
  margin: 6px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.statement span {
  display: block;
}

.statement .statement__serif {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 7.4vw, 104px);
  letter-spacing: 0.005em;
}

.statement .statement__sans {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(31px, 6.1vw, 86px);
  letter-spacing: 0.004em;
}

.statement em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92em;
  text-transform: lowercase;
  letter-spacing: 0;
}

.statement + .signature {
  font-size: clamp(34px, 4.6vw, 60px);
  margin: -2px 0 30px;
}

/* Header layout — hamburger, wordmark, centred nav, Contact button, one row.
   Four children, four columns; the nav must sit in column 3 only. Spanning it
   to the last column makes the Contact button wrap onto a second row.
   Header UI type uses Outfit, because the body face is single-weight and
   cannot be lightened with font-weight. */
:root {
  --header-h: 96px;
  --ui-sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

.site-header {
  grid-template-columns: auto auto 1fr auto;
  gap: 0 44px;
  padding: 0 40px;
  align-items: center;
}

.site-header .menu-btn {
  display: flex;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  font-family: var(--ui-sans);
  font-weight: 300;
  font-size: 0;
  gap: 0;
}

.site-header .menu-btn i { width: 26px; }

.site-header .wordmark {
  grid-column: 2;
  justify-self: start;
  align-self: center;
  font-family: var(--ui-sans);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 0.3em;
}

.site-header .header-nav {
  grid-column: 3;
  justify-self: center;
  align-self: center;
}

/* True optical centring, so the nav does not drift when the wordmark or the
   button changes width. `grid-column: auto` is required: an absolutely
   positioned grid child WITH an explicit grid-column is contained by that
   grid AREA, so left:50% would centre it inside column 3 instead of the bar. */
@media (min-width: 1100px) {
  .site-header .header-nav {
    grid-column: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.site-header .header-nav ul { justify-content: center; gap: 48px; }

.site-header .header-nav a {
  font-family: var(--ui-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--charcoal);
}

.site-header .header-nav a:hover,
.site-header .header-nav a[aria-current="page"] { color: var(--sage); }

.header-cta {
  grid-column: 4;
  justify-self: end;
  align-self: center;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.header-cta:hover,
.header-cta:focus-visible { background: var(--charcoal); color: var(--cream); }

@media (max-width: 900px) {
  :root { --header-h: 76px; }
  .site-header { grid-template-columns: 1fr auto 1fr; gap: 12px; padding: 0 18px; }
  .site-header .menu-btn { grid-column: 1; justify-self: start; }
  .site-header .wordmark { grid-column: 2; justify-self: center; font-size: 14px; letter-spacing: 0.22em; }
  .site-header .header-nav { display: none; }
  .header-cta { grid-column: 3; padding: 11px 16px; letter-spacing: 0.14em; }
}

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


/* Manifesto legibility — the kicker inherited --sage and the lede --muted,
   which vanish against a bright backlit photograph; only the large serif
   line survived. Cream type, and a deeper overlay weighted to the middle of
   the band where the small type sits. Any moving background needs this or
   more. */
.manifesto {
  background-image:
    linear-gradient(
      180deg,
      rgba(24, 23, 21, 0.42) 0%,
      rgba(24, 23, 21, 0.62) 45%,
      rgba(24, 23, 21, 0.58) 100%
    ),
    var(--wdw-manifesto, url("../images/placeholders/hero-right.svg"));
}

.manifesto .kicker { color: var(--cream); opacity: 0.92; }
.manifesto .lede { color: var(--cream); opacity: 0.96; }

/* ===========================================================================
   ABOUT PAGE
   Two-column hero, pull quote, staggered story, two-up team cards, a dark
   closing banner, a strip of recent work and an optional newsletter.
   Palette and type are the theme's own; the sand accent maps to --script,
   which the brand already carries.
   =========================================================================== */

.about-hero {
  padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 90px) clamp(40px, 6vw, 80px);
  background: var(--ivory);
}

.about-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-hero__frame {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--paper);
}

.about-hero__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-title {
  margin: 6px 0 22px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12;
  text-wrap: balance;
}

.about-title em {
  font-style: italic;
  font-family: var(--serif-italic, var(--serif));
}

.about-hero__copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  max-width: 54ch;
}

.about-hero__copy p { margin: 0 0 16px; }
.about-hero__copy .btn { margin-top: 0; }

.about-quote {
  padding: clamp(60px, 8vw, 110px) 24px;
  background: var(--cream);
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  text-align: center;
}

.about-quote__mark {
  display: block;
  font-family: var(--serif);
  font-size: 84px;
  line-height: 0.6;
  color: var(--script);
  margin-bottom: 6px;
}

.about-quote blockquote {
  margin: 0 auto 22px;
  max-width: 44ch;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.32;
}

.about-quote__cite {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-story {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 120px) clamp(24px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.about-story__copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
  max-width: 50ch;
}

.about-story__copy p { margin: 0 0 16px; }

.about-story__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-story__images img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-story__images img:nth-child(2) { margin-top: 44px; }

.about-team {
  padding: clamp(60px, 9vw, 120px) clamp(24px, 6vw, 90px);
  background: var(--cream);
  border-top: 1px solid var(--paper);
  text-align: center;
}

.about-team__grid {
  max-width: 1100px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.about-card { text-align: left; }

.about-card__photo { overflow: hidden; margin-bottom: 22px; }

.about-card__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-card:hover .about-card__photo img { transform: scale(1.03); }

.about-card__role {
  margin: 0 0 6px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--script);
}

.about-card__name {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
}

.about-card__bio {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.about-card__bio p { margin: 0 0 12px; }

.about-banner {
  padding: clamp(80px, 12vw, 150px) 24px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(28, 27, 25, 0.68), rgba(28, 27, 25, 0.74)),
    var(--banner, var(--wdw-manifesto)) center/cover;
}

.about-banner .about-title { color: var(--white); }

.about-banner__text {
  max-width: 52ch;
  margin: 0 auto 8px;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.92;
}

.btn--light { border-color: var(--white); color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); }

.about-strip {
  padding: clamp(60px, 8vw, 100px) 0 0;
  background: var(--ivory);
  text-align: center;
}

.about-strip__handle {
  margin: 6px 0 26px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
}

.about-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.about-strip__tile {
  display: block;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-size: cover;
  transition: opacity 0.3s var(--ease);
}

.about-strip__tile:hover { opacity: 0.85; }

.about-news {
  padding: clamp(60px, 8vw, 100px) 24px;
  background: var(--cream);
  border-top: 1px solid var(--paper);
  text-align: center;
}

.about-news__head {
  margin: 8px 0 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 40px);
}

.about-news__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.about-news__form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--paper);
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
}

.about-news__form input:focus { outline: 1px solid var(--sage); }
.about-news__form .btn { margin-top: 0; }

@media (max-width: 940px) {
  .about-hero__inner,
  .about-story,
  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-story__images img:nth-child(2) { margin-top: 0; }
  .about-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .about-news__form { flex-direction: column; }
}
