:root {
  color-scheme: dark;
  --ink: #120f0d;
  --ink-soft: #1b1612;
  --cream: #f4eee2;
  --cream-2: #e9dfd0;
  --gold: #d3ae63;
  --gold-light: #ead39e;
  --muted: #bfb2a3;
  --line: rgba(234, 211, 158, 0.22);
  --surface: #211a15;
  --light-surface: #ebe1d3;
  --light-ink: #211a15;
  --max: 1240px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.viewer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-180%);
  padding: 11px 16px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

p {
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  color: var(--cream);
}

.button--ghost:hover {
  background: var(--gold);
  color: var(--ink);
}

.text-link {
  color: var(--gold-light);
  font-weight: 700;
  text-underline-offset: 0.25em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(234, 211, 158, 0.14);
  background: rgba(18, 15, 13, 0.93);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 84px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 25px);
}

.desktop-nav a {
  position: relative;
  color: var(--cream-2);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-book {
  padding: 12px 17px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero::before {
  position: absolute;
  top: -20%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: rgba(211, 174, 99, 0.08);
  content: "";
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  min-height: min(820px, calc(100svh - 84px));
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(76px, 9vw, 140px) clamp(30px, 7vw, 110px) clamp(76px, 9vw, 140px) max(20px, calc((100vw - var(--max)) / 2));
}

.hero-copy h1 {
  margin-top: 22px;
  max-width: 820px;
}

.hero-copy .lede {
  max-width: 650px;
  margin-top: 28px;
}

.hero-copy .button-row {
  margin-top: 38px;
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-picture--home-hero img {
  object-position: center 42%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 24%, transparent 75%, rgba(18, 15, 13, 0.18) 100%);
  content: "";
  pointer-events: none;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--ink-soft);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 24px clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  text-align: left;
}

.trust-list li:last-child {
  border-right: 0;
}

.trust-list strong {
  display: block;
  margin-top: 9px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.68rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.trust-list span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trust-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.philosophy-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 14vw, 190px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 42%, rgba(211, 174, 99, 0.12), transparent 30%),
    var(--ink);
}

.philosophy-section::after {
  position: absolute;
  top: 50%;
  right: -8vw;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(211, 174, 99, 0.16);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.philosophy-section__inner {
  position: relative;
  z-index: 1;
}

.philosophy-section h2 {
  max-width: 980px;
  margin-top: 22px;
}

.section {
  padding-block: clamp(82px, 11vw, 150px);
}

.section--tight {
  padding-block: clamp(62px, 8vw, 105px);
}

.section--light {
  background: var(--light-surface);
  color: var(--light-ink);
}

.section--soft {
  background: var(--ink-soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-head > div {
  max-width: 760px;
}

.section-head h2 {
  margin-top: 18px;
}

.section-head p {
  max-width: 500px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 500px;
  overflow: hidden;
  background: var(--surface);
  color: var(--cream);
  text-decoration: none;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
  min-height: 440px;
}

.service-card picture,
.service-card img {
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(12, 9, 7, 0.88) 100%);
  content: "";
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-offering-list {
  display: grid;
  gap: clamp(34px, 6vw, 78px);
}

.service-offering {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  overflow: hidden;
  border: 1px solid rgba(33, 26, 21, 0.14);
  background: rgba(255, 255, 255, 0.22);
}

.service-offering--reverse .service-offering__media {
  order: 2;
}

.service-offering__media,
.service-offering__media picture,
.service-offering__media img {
  width: 100%;
  height: 100%;
}

.service-offering__media img {
  min-height: 560px;
  object-fit: cover;
}

.service-offering__copy {
  align-self: center;
  padding: clamp(38px, 6vw, 78px);
}

.service-offering__copy h2 {
  margin-top: 16px;
  color: var(--light-ink);
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

.service-offering__copy .lede {
  max-width: 62ch;
  margin-top: 24px;
  color: #3f352d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.72;
}

.service-offering__copy ul {
  display: grid;
  gap: 12px;
  max-width: 62ch;
  margin: 28px 0 0;
  padding: 0;
  color: #41372f;
  font-size: 0.98rem;
  line-height: 1.55;
  list-style: none;
}

.service-offering__copy li {
  position: relative;
  padding-left: 22px;
}

.service-offering__copy li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #9a712e;
  content: "";
  transform: rotate(45deg);
}

.service-offering__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.service-offering__actions .text-link {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid #8c6425;
  color: #5f4218;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.service-offering__actions .text-link:hover {
  background: #8c6425;
  color: #fff9ef;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.experience-grid article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink-soft);
}

.experience-grid h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.55rem);
  line-height: 1.08;
}

.experience-grid p {
  margin-top: 22px;
  color: var(--muted);
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(48px, 9vw, 130px);
}

.review-feature__meta h2 {
  max-width: 500px;
  margin-top: 18px;
}

.review-feature__meta > p:last-child {
  color: #6e6257;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-stars {
  margin-top: 26px;
  color: #8f6a2e;
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.review-feature blockquote {
  margin: 0;
  padding: clamp(34px, 5vw, 62px);
  border-left: 2px solid #a87b31;
  background: rgba(255, 255, 255, 0.28);
}

.review-feature blockquote > p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.14;
  text-wrap: balance;
}

.review-feature blockquote footer {
  display: grid;
  gap: 2px;
  margin-top: 30px;
  color: #574b40;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-feature blockquote footer strong {
  color: var(--light-ink);
}

.review-feature blockquote .text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--light-ink);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.industry-card {
  min-height: 290px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink-soft);
  color: var(--cream);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.industry-card:hover {
  z-index: 1;
  background: #2b211a;
  transform: translateY(-3px);
}

.industry-card > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.industry-card h3 {
  margin-top: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.industry-card p {
  margin-top: 20px;
  color: var(--muted);
}

.industry-cta {
  margin-top: 34px;
}

.newsletter-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 50%, rgba(211, 174, 99, 0.12), transparent 28%),
    #0c0a09;
}

.newsletter-preview {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
}

.newsletter-preview h2 {
  max-width: 700px;
  margin-top: 18px;
}

.newsletter-preview__cover {
  width: min(100%, 310px);
  justify-self: center;
  border: 1px solid rgba(234, 211, 158, 0.24);
  background: #fff;
  box-shadow: var(--shadow);
}

.newsletter-preview__copy {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.newsletter-preview__copy .lede {
  margin-top: 16px;
}

.newsletter-preview__copy .button-row {
  margin-top: 28px;
}

.update-kicker {
  color: var(--cream-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.update-kicker span {
  margin-left: 12px;
  padding-left: 13px;
  border-left: 1px solid currentColor;
  color: var(--gold);
}

.service-card__copy {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  left: 26px;
}

.service-card__copy span {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-card__copy h3 {
  margin-top: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 8vw, 120px);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.split__media {
  position: relative;
}

.split__media::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 56%;
  height: 48%;
  border: 1px solid var(--gold);
  content: "";
  opacity: 0.6;
}

.split__media img {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
}

.split__copy h2 {
  margin-top: 18px;
}

.split__copy .lede {
  margin-top: 26px;
}

.split__copy .button-row {
  margin-top: 32px;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--surface);
}

.feature-strip__media {
  min-height: 540px;
}

.feature-strip__media picture,
.feature-strip__media img {
  width: 100%;
  height: 100%;
}

.feature-strip__media img {
  object-fit: cover;
}

.feature-strip__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(44px, 7vw, 94px);
}

.feature-strip__copy h2 {
  margin-top: 16px;
}

.feature-strip__copy .lede {
  margin-top: 24px;
}

.feature-strip__copy .button {
  margin-top: 30px;
}

.feature-strip__copy .button-row {
  margin-top: 30px;
}

.feature-strip__copy .button-row .button {
  margin-top: 0;
}

.feature-strip--event .feature-strip__media img {
  object-position: center 30%;
}

.feature-strip--event .update-kicker {
  margin-top: 22px;
  color: #5e5145;
}

.feature-strip--event .update-kicker span {
  color: #8c6425;
}

.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
}

.portfolio-preview a {
  position: relative;
  display: block;
  overflow: hidden;
}

.portfolio-preview a:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
}

.portfolio-preview a:nth-child(2) {
  grid-column: span 3;
  grid-row: span 2;
}

.portfolio-preview a:nth-child(3) {
  grid-column: span 4;
  grid-row: span 3;
}

.portfolio-preview a:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.portfolio-preview a:nth-child(5) {
  grid-column: span 5;
  grid-row: span 2;
}

.portfolio-preview a:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.portfolio-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.portfolio-preview a:hover img {
  transform: scale(1.025);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 130px) 24px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(211, 174, 99, 0.13), transparent 54%);
  content: "";
}

.cta-panel > * {
  position: relative;
}

.cta-panel h2 {
  max-width: 940px;
  margin: 18px auto 0;
}

.cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
}

.cta-panel .button-row {
  justify-content: center;
  margin-top: 34px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: end;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media picture,
.page-hero__media img {
  width: 100%;
  height: 100%;
}

.page-hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero-picture--hero-neon img {
  object-position: center 54%;
}

.hero-picture--services-hero img {
  object-position: center 52%;
}

.hero-picture--event-hero img,
.hero-picture--branding-hero img {
  object-position: center 6%;
}

.hero-picture--portrait-hero img {
  object-position: center 38%;
}

.hero-picture--maternity-hero img {
  object-position: center 54%;
}

.hero-picture--wedding-hero img {
  object-position: center 40%;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 15, 13, 0.28), rgba(18, 15, 13, 0.93));
  content: "";
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  padding-block: clamp(100px, 15vw, 170px) clamp(70px, 9vw, 110px);
}

.page-hero__copy h1 {
  max-width: 1050px;
  margin-top: 18px;
}

.page-hero__copy .lede {
  max-width: 720px;
  margin-top: 24px;
  color: var(--cream-2);
}

.page-hero--brand {
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 48%, rgba(211, 174, 99, 0.18), transparent 28%),
    linear-gradient(135deg, #120f0d 0%, #1d1712 58%, #0c0a09 100%);
}

.page-hero--brand::before,
.page-hero--brand::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(211, 174, 99, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero--brand::before {
  top: 12%;
  right: 7%;
  width: min(46vw, 620px);
  aspect-ratio: 1;
}

.page-hero--brand::after {
  top: 22%;
  right: 13%;
  width: min(34vw, 460px);
  aspect-ratio: 1;
}

.page-hero__brandmark {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(28px, 10vw, 170px);
  color: var(--gold);
  opacity: 0.2;
  transform: translateY(-50%);
}

.page-hero__brandmark .brand-mark {
  width: clamp(260px, 36vw, 520px);
  height: auto;
}

.page-hero--brand .page-hero__copy {
  z-index: 1;
}

.page-hero--brand .page-hero__copy h1 {
  max-width: 860px;
}

.services-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 8vw, 120px);
}

.services-intro__copy > * + * {
  margin-top: 24px;
}

.included-list,
.area-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  border-top: 1px solid var(--line);
}

.included-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--cream-2);
}

.included-list li::before {
  position: absolute;
  top: 27px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.faq-list summary {
  position: relative;
  padding: 22px 62px 22px 24px;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 820px;
  padding: 0 24px 24px;
  color: var(--muted);
}

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream-2);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.portfolio-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-story[hidden] {
  display: none;
}

.portfolio-story button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--surface);
  color: var(--cream);
  cursor: pointer;
  text-align: left;
}

.portfolio-story picture,
.portfolio-story img {
  width: 100%;
  height: 100%;
}

.portfolio-story img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-story button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 9, 7, 0.02) 35%, rgba(12, 9, 7, 0.94) 100%);
  content: "";
}

.portfolio-story button:hover img,
.portfolio-story button:focus-visible img {
  transform: scale(1.025);
}

.portfolio-story__copy {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
}

.portfolio-story__copy > span,
.portfolio-story__copy small {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.portfolio-story__copy strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.portfolio-story__copy small {
  margin-top: 14px;
  color: var(--cream-2);
}

.portfolio-viewer {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.portfolio-viewer[hidden] {
  display: none;
}

.portfolio-viewer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 6, 5, 0.94);
  cursor: zoom-out;
}

.portfolio-viewer__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  max-height: calc(100svh - 44px);
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.portfolio-viewer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.portfolio-viewer__header h2 {
  max-width: 760px;
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.portfolio-viewer__close {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portfolio-viewer__figure {
  display: grid;
  min-height: 0;
  place-items: center;
  margin: 0;
}

.portfolio-viewer__figure img {
  width: auto;
  max-width: 100%;
  max-height: 65svh;
  object-fit: contain;
}

.portfolio-viewer__figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-viewer__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.portfolio-viewer__controls .button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  transform: none;
}

.gallery {
  columns: 3;
  column-gap: 14px;
}

.gallery figure {
  position: relative;
  break-inside: avoid;
  margin: 0 0 14px;
  overflow: hidden;
  background: var(--surface);
}

.gallery figure[hidden] {
  display: none;
}

.gallery img {
  width: 100%;
  transition: filter 250ms ease, transform 650ms ease;
}

.gallery figure:hover img {
  transform: scale(1.015);
}

.gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 16px 13px;
  background: linear-gradient(transparent, rgba(12, 9, 7, 0.82));
  color: var(--cream);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.gallery figure:hover figcaption,
.gallery figure:focus-within figcaption {
  opacity: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
}

.contact-details {
  display: grid;
  gap: 26px;
  align-content: start;
}

.contact-card {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  display: block;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: inline-block;
  margin-top: 8px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.3;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--cream-2);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(234, 211, 158, 0.3);
  border-radius: 0;
  background: var(--ink-soft);
  color: var(--cream);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8f8377;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
}

.check-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.88rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.86rem;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.event-feature__date {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(211, 174, 99, 0.18), transparent 34%),
    #0c0a09;
  text-align: center;
}

.event-feature__date > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.event-feature__date strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(7.8rem, 14vw, 12rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.event-feature__date p {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.event-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px);
}

.event-feature__copy h2 {
  max-width: 850px;
  margin-top: 18px;
}

.event-feature__copy .lede {
  max-width: 780px;
  margin-top: 30px;
}

.event-feature__copy .button-row {
  margin-top: 36px;
}

.event-facts {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.event-facts > div {
  padding: 22px;
  background: var(--ink-soft);
}

.event-facts dt {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 9px 0 0;
  color: var(--cream-2);
  line-height: 1.45;
}

.event-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid rgba(91, 72, 54, 0.2);
  background: rgba(91, 72, 54, 0.2);
}

.event-benefit {
  min-height: 300px;
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.28);
}

.event-benefit > span {
  color: #8c6425;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.event-benefit h3 {
  margin-top: 48px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.event-benefit p {
  margin-top: 22px;
  color: #5e5145;
}

.updates-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  padding: clamp(42px, 7vw, 88px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(211, 174, 99, 0.13), transparent 30%),
    var(--ink-soft);
}

.updates-panel h2 {
  margin-top: 18px;
}

.updates-panel .lede {
  max-width: 670px;
  margin-top: 28px;
}

.updates-form {
  display: grid;
  gap: 17px;
}

.updates-form__email {
  display: grid;
  gap: 8px;
}

.updates-form__email span {
  color: var(--cream-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.updates-form__email input {
  width: 100%;
  min-height: 56px;
  padding: 14px 15px;
  border: 1px solid rgba(234, 211, 158, 0.34);
  border-radius: 0;
  background: var(--ink);
  color: var(--cream);
}

.updates-form__email input:focus {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
}

.updates-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.updates-form__consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.updates-form .button {
  width: 100%;
}

.updates-form__status {
  min-height: 1.5em;
  color: var(--gold-light);
  font-size: 0.82rem;
}

.updates-form__privacy {
  color: var(--muted);
  font-size: 0.74rem;
  text-underline-offset: 4px;
}

.newsletter-issue {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
}

.newsletter-issue__cover {
  display: block;
  width: min(100%, 430px);
  justify-self: center;
  border: 1px solid rgba(91, 72, 54, 0.2);
  background: #fff;
  box-shadow: 0 28px 70px rgba(42, 30, 20, 0.22);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.newsletter-issue__cover:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 78px rgba(42, 30, 20, 0.28);
}

.newsletter-issue__copy .update-kicker {
  margin-top: 22px;
  color: #5e5145;
}

.newsletter-issue__copy .update-kicker span {
  color: #8c6425;
}

.newsletter-issue__copy h2 {
  margin-top: 20px;
}

.newsletter-issue__copy .lede {
  margin-top: 28px;
  color: #5e5145;
}

.issue-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.issue-topics li {
  padding: 9px 12px;
  border: 1px solid rgba(91, 72, 54, 0.28);
  color: #5e5145;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-issue__copy .button-row {
  margin-top: 34px;
}

.section--light .button--ghost {
  border-color: #8c6425;
  color: var(--light-ink);
}

.section--light .button--ghost:hover {
  background: #8c6425;
  color: #fff9ef;
}

.document-note {
  margin-top: 18px;
  color: #6e6257;
  font-size: 0.78rem;
}

.legal-copy {
  color: var(--cream-2);
}

.legal-copy > * + * {
  margin-top: 22px;
}

.legal-copy h2 {
  margin-top: 56px;
  font-size: 2.25rem;
}

.legal-copy h3 {
  margin-top: 38px;
  font-size: 1.5rem;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0c0a09;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 44px;
  padding-block: 72px;
}

.footer-column h2 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #8f8377;
  font-size: 0.76rem;
}

.status-card {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(38px, 7vw, 78px);
  border: 1px solid var(--line);
  background: var(--ink-soft);
  text-align: center;
  box-shadow: var(--shadow);
}

.status-card h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.status-card .lede {
  margin-top: 22px;
}

.status-card .button-row {
  justify-content: center;
  margin-top: 30px;
}

.event-modal[hidden],
.event-modal-trigger[hidden] {
  display: none;
}

.event-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.event-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 5, 0.84);
  backdrop-filter: blur(10px);
}

.event-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(960px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  border: 1px solid rgba(234, 211, 158, 0.34);
  background: var(--ink-soft);
  color: var(--cream);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.62);
}

.event-modal__close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(234, 211, 158, 0.4);
  border-radius: 50%;
  background: rgba(18, 15, 13, 0.84);
  color: var(--cream);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  place-items: center;
}

.event-modal__close:hover,
.event-modal__close:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.event-modal__event,
.event-modal__signup {
  padding: clamp(44px, 5vw, 62px);
}

.event-modal__event {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(211, 174, 99, 0.19), transparent 37%),
    #100d0b;
}

.event-modal__event::after {
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(211, 174, 99, 0.22);
  border-radius: 50%;
  content: "";
}

.event-modal__date {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.event-modal__date strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 400;
  line-height: 1;
}

.event-modal__date span {
  padding-left: 20px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.event-modal__event h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(2.7rem, 4.25vw, 4rem);
}

.event-modal__event > p:not(.eyebrow, .event-modal__date, .event-modal__location) {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  margin-top: 20px;
  color: var(--muted);
}

.event-modal__location {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-modal__event .button {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.event-modal__signup {
  align-self: center;
  background: #211a15;
}

.event-modal__signup h3 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.event-modal__signup > p:not(.eyebrow) {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-modal__signup form {
  display: grid;
  gap: 17px;
  margin-top: 23px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.event-modal__email {
  display: grid;
  gap: 8px;
}

.event-modal__email span {
  color: var(--cream-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-modal__email input {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgba(234, 211, 158, 0.34);
  border-radius: 0;
  background: #120f0d;
  color: var(--cream);
}

.event-modal__email input:focus {
  border-color: var(--gold);
  outline: 1px solid var(--gold);
}

.event-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.event-modal__consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.event-modal__signup .button {
  width: 100%;
}

.event-modal__status {
  min-height: 1.5em;
  color: var(--gold-light);
  font-size: 0.82rem;
}

.event-modal__privacy {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  text-underline-offset: 4px;
}

.event-modal-trigger {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 17px;
  border: 1px solid rgba(234, 211, 158, 0.44);
  background: #120f0d;
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.38);
}

.event-modal-trigger span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-modal-trigger strong {
  padding: 8px 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.event-modal-trigger:hover,
.event-modal-trigger:focus-visible {
  border-color: var(--gold);
  background: #211a15;
}

body.event-modal-open {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-book {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .event-modal__dialog {
    grid-template-columns: 1fr;
  }

  .event-modal__event,
  .event-modal__signup {
    padding: 52px;
  }

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

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 84px 0 0;
    display: none;
    overflow-y: auto;
    padding: 28px 20px 60px;
    background: rgba(18, 15, 13, 0.99);
  }

  .mobile-nav[data-open="true"] {
    display: block;
  }

  .mobile-nav a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.1;
    text-decoration: none;
  }

  .mobile-nav .button {
    display: flex;
    margin-top: 26px;
    font-family: var(--sans);
    font-size: 0.72rem;
  }

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

  .hero-copy {
    padding-left: 28px;
  }

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

  .service-card {
    grid-column: span 6;
  }

  .service-card:last-child {
    grid-column: 4 / span 6;
  }

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

  .portfolio-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }

  .footer-column:last-child {
    grid-column: 2;
  }
}

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

  .nav-shell {
    min-height: 74px;
  }

  .mobile-nav {
    inset: 74px 0 0;
  }

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .brand-copy small {
    font-size: 0.5rem;
  }

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

  .hero-copy {
    order: 2;
    padding: 56px 20px 70px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14.5vw, 5.3rem);
  }

  .hero-media {
    min-height: 52svh;
    max-height: 720px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, var(--ink) 0%, transparent 30%, rgba(18, 15, 13, 0.12) 100%);
  }

  .hero-picture--home-hero img {
    object-position: center 34%;
  }


  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-list li:last-child {
    border-bottom: 0;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:last-child {
    min-height: 420px;
    grid-column: 1;
  }

  .service-offering {
    min-height: 0;
    grid-template-columns: 1fr;
    border: 0;
    background: var(--cream);
    box-shadow: none;
  }

  .service-offering-list {
    gap: 32px;
  }

  .service-offering--reverse .service-offering__media {
    order: 0;
  }

  .service-offering__media {
    overflow: hidden;
    height: auto;
    aspect-ratio: 4 / 3;
    background: transparent;
  }

  .service-offering__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .service-offering__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .service-offering__copy {
    padding: 44px 28px 50px;
  }

  .service-offering__copy h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 1;
  }

  .service-offering__copy .lede {
    margin-top: 22px;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .service-offering__copy ul {
    gap: 14px;
    margin-top: 26px;
  }

  .service-offering__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .service-offering__actions .button,
  .service-offering__actions .text-link {
    width: 100%;
  }

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

  .review-feature,
  .newsletter-preview {
    grid-template-columns: 1fr;
  }

  .newsletter-preview__copy {
    margin-top: 24px;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .industry-card {
    min-height: 0;
  }

  .split,
  .split--reverse,
  .services-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split__media {
    order: -1;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip__media {
    min-height: 440px;
  }

  .portfolio-preview {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
  }

  .portfolio-preview a:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .portfolio-preview a:nth-child(1),
  .portfolio-preview a:nth-child(4) {
    grid-row: span 2;
  }

  .page-hero {
    min-height: 560px;
  }

  .hero-picture--services-hero img {
    object-position: 58% center;
  }

  .hero-picture--event-hero img,
  .hero-picture--portrait-hero img,
  .hero-picture--branding-hero img {
    object-position: center 32%;
  }

  .page-hero__copy h1 {
    font-size: clamp(3.25rem, 16vw, 5.8rem);
  }

  .page-hero--brand::before {
    top: 15%;
    right: -24%;
    width: 118vw;
  }

  .page-hero--brand::after {
    top: 24%;
    right: -8%;
    width: 86vw;
  }

  .page-hero__brandmark {
    right: 50%;
    opacity: 0.14;
    transform: translate(50%, -50%);
  }

  .page-hero__brandmark .brand-mark {
    width: min(78vw, 380px);
  }

  .included-list {
    grid-template-columns: 1fr;
  }

  .gallery {
    columns: 2;
  }

  .portfolio-viewer {
    padding: 8px;
  }

  .portfolio-viewer__dialog {
    max-height: calc(100svh - 16px);
    padding: 18px;
  }

  .portfolio-viewer__header h2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .portfolio-viewer__figure img {
    max-height: 56svh;
  }

  .event-modal {
    align-items: end;
    padding: 10px;
  }

  .event-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 20px);
  }

  .event-modal__close {
    top: 13px;
    right: 13px;
    width: 42px;
    height: 42px;
  }

  .event-modal__event,
  .event-modal__signup {
    padding: 48px 24px;
  }

  .event-modal__event {
    padding-top: 62px;
  }

  .event-modal__event h2 {
    font-size: clamp(2.55rem, 12.5vw, 4rem);
  }

  .event-modal__date {
    align-items: flex-start;
  }

  .event-modal__date strong {
    font-size: 2.2rem;
  }

  .event-modal__event .button {
    width: 100%;
  }

  .event-modal-trigger {
    z-index: 80;
    right: 16px;
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    max-width: calc(100vw - 32px);
    white-space: nowrap;
  }

  .event-feature,
  .updates-panel,
  .newsletter-issue {
    grid-template-columns: 1fr;
  }

  .event-feature__date {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-feature__date strong {
    font-size: clamp(7.5rem, 34vw, 11rem);
  }

  .event-feature__copy {
    padding: 48px 26px 56px;
  }

  .event-facts,
  .event-benefits {
    grid-template-columns: 1fr;
  }

  .event-benefit {
    min-height: 0;
  }

  .event-benefit h3 {
    margin-top: 32px;
  }

  .updates-panel {
    gap: 42px;
    padding: 46px 26px;
  }

  .newsletter-issue__cover {
    width: min(100%, 390px);
  }

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

  .field--full,
  .check-field,
  .form-note {
    grid-column: 1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    padding-block: 22px;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .button-row {
    display: grid;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .portfolio-preview {
    grid-auto-rows: 170px;
  }

  .portfolio-story-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-story button {
    aspect-ratio: 4 / 4.6;
  }

  .portfolio-viewer__header {
    display: grid;
  }

  .portfolio-viewer__close {
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .portfolio-viewer__header > div {
    padding-right: 72px;
  }

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

  .gallery {
    columns: 1;
  }

  .gallery figcaption {
    opacity: 1;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1;
  }
}

@media (max-width: 340px) {
  .event-modal__event .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }

  .event-modal__date {
    gap: 12px;
  }

  .event-modal__date strong {
    font-size: 1.95rem;
    white-space: nowrap;
  }

  .event-modal__date span {
    padding-left: 12px;
    font-size: 0.64rem;
  }

  .event-modal__event h2 {
    font-size: 2.15rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
