:root {
  --ink: #050708;
  --ink-2: #0f1415;
  --paper: #f2f4f0;
  --ivory: #f8faf5;
  --muted: rgba(248, 250, 245, .68);
  --muted-dark: rgba(5, 7, 8, .62);
  --rose: #9b4050;
  --rose-deep: #652936;
  --champagne: #b8c9c4;
  --line: rgba(248, 250, 245, .16);
  --line-dark: rgba(5, 7, 8, .14);
  --shadow: 0 44px 120px rgba(0, 0, 0, .38);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1260px;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 18%), rgba(184,201,196,.10), transparent 18rem),
    radial-gradient(circle at 50% 100%, rgba(98,122,116,.10), transparent 24rem);
  opacity: .9;
}
body > * { position: relative; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

.scroll-meter {
  position: fixed;
  left: 1rem;
  top: 50%;
  z-index: 60;
  width: 1px;
  height: 34vh;
  transform: translateY(-50%);
  background: rgba(255,248,239,.16);
  pointer-events: none;
}
.scroll-meter span {
  display: block;
  width: 100%;
  height: calc(var(--scroll-progress, 0) * 100%);
  background: var(--champagne);
  box-shadow: 0 0 18px rgba(184,201,196,.45);
}
.scroll-meter::after {
  content: attr(data-scene);
  position: absolute;
  left: .75rem;
  bottom: 0;
  color: rgba(255,248,239,.54);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cursor-aura {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 55;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(184,201,196,.16), rgba(98,122,116,.08) 34%, transparent 68%);
  mix-blend-mode: screen;
  transition: opacity .35s var(--ease);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ivory);
  color: var(--ink);
  padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .72rem clamp(1rem, 3.5vw, 3rem);
  color: var(--ivory);
  background: linear-gradient(to bottom, rgba(13, 10, 10, .78), rgba(13, 10, 10, .08));
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled,
.site-header.open {
  background: rgba(5, 7, 8, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; }
.brand img {
  width: clamp(106px, 8vw, 148px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .42));
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.6vw, 1.35rem);
  font-size: .67rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav a {
  opacity: .78;
  position: relative;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover,
.nav a.active { opacity: 1; color: var(--champagne); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--ivory);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.button,
button.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .82rem 1.15rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.button > * { position: relative; z-index: 1; }
.button:hover { transform: translateY(-2px); }
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: .12;
  transition: transform .35s var(--ease);
}
.button:hover::before { transform: scaleX(1); }
.button.primary,
.button.dark {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.button.rose {
  background: var(--rose);
  color: var(--ivory);
  border-color: var(--rose);
}
.button.ghost { color: var(--ivory); border-color: rgba(255,248,239,.45); }

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
  isolation: isolate;
}
.hero { min-height: 100dvh; }
.page-hero { min-height: 86dvh; }
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,7,8,.88), rgba(5,7,8,.26) 46%, rgba(5,7,8,.68)),
    linear-gradient(0deg, rgba(5,7,8,.92), rgba(5,7,8,0) 58%);
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}
.hero img.hero-img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  filter: saturate(.76) contrast(1.1) brightness(.92) hue-rotate(-4deg);
  will-change: transform;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}
.page-hero .hero-content { padding-bottom: 5rem; }

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--champagne);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .88;
  letter-spacing: 0;
  text-wrap: balance;
}
h1 {
  max-width: 930px;
  font-size: clamp(4.2rem, 10.8vw, 10.8rem);
}
h2 { font-size: clamp(3.35rem, 7.1vw, 8.2rem); }
h3 { font-size: clamp(2rem, 3.2vw, 3.7rem); }
.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.5;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-note {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 1.2rem;
  z-index: 3;
  max-width: 310px;
  color: rgba(255,248,239,.58);
  font-size: .78rem;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 4vw, 3.4rem);
  background: var(--ink);
  color: var(--ivory);
}
.section.dark { background: var(--ink); }
.section.alt {
  background: var(--paper);
  color: var(--ink);
}
.wrap { width: min(var(--max), 100%); margin: 0 auto; }
.narrow { max-width: 780px; }

.split,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}
.story-grid.reverse { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.copy { max-width: 700px; }
.copy p,
.feature-list div,
.contact-routes a,
.contact-routes span { color: var(--muted); }
.alt .copy p,
.alt .feature-list div,
.alt .contact-routes a,
.alt .contact-routes span,
.section.alt figcaption { color: var(--muted-dark); }
.editorial-panel {
  border-left: 1px solid currentColor;
  padding-left: clamp(1rem, 3vw, 2rem);
  color: inherit;
}

.feature-image,
.enquiry img,
.story-grid img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.feature-image.tall { min-height: 680px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 70vh;
  background: var(--ink);
}
.service-panel {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: clamp(1.2rem, 2vw, 2rem);
  color: var(--ivory);
  background: var(--ink);
  border-right: 1px solid rgba(255,248,239,.14);
}
.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
  filter: saturate(.9) contrast(1.06) brightness(.82);
}
.service-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,7,8,.92), rgba(5,7,8,.15) 58%);
}
.service-panel:hover img { transform: scale(1.06); filter: saturate(1.02) contrast(1.1) brightness(.92); }
.service-panel > div { position: relative; z-index: 1; max-width: 480px; }
.service-panel p { color: rgba(255,248,239,.74); }

.gallery-run,
.mini-gallery {
  display: grid;
  grid-template-columns: 1.35fr .7fr 1fr;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: end;
}
.gallery-run figure,
.mini-gallery figure { margin: 0; }
.gallery-run img,
.mini-gallery img {
  width: 100%;
  height: clamp(410px, 50vw, 760px);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.gallery-run figure:nth-child(2) img,
.mini-gallery figure:nth-child(2) img { height: clamp(310px, 38vw, 560px); }
figcaption {
  margin-top: .7rem;
  color: rgba(255,248,239,.58);
  font-size: .78rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step {
  min-height: 280px;
  padding: clamp(1rem, 2vw, 1.8rem);
  background: rgba(255,248,239,.055);
}
.step strong {
  display: block;
  color: var(--champagne);
  font-size: .7rem;
  letter-spacing: .16em;
}
.step h3 { margin: 1rem 0; font-size: clamp(1.8rem, 2.6vw, 2.7rem); }
.step p { color: rgba(255,248,239,.68); }

.proof-band,
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.proof,
.trust-strip div {
  min-height: 170px;
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
}
.proof strong,
.trust-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 500;
  line-height: .9;
}
.proof span,
.trust-strip span { color: var(--muted-dark); }

.feature-list { display: grid; gap: 0; margin-top: 1.3rem; }
.feature-list div {
  border-top: 1px solid currentColor;
  padding: 1rem 0;
}

.enquiry {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.contact-routes {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}
.contact-routes a,
.contact-routes span {
  display: block;
  border-top: 1px solid var(--line-dark);
  padding: 1rem 0;
}
.form-note,
.status-note { color: var(--muted-dark); font-size: .9rem; }
form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
label {
  display: grid;
  gap: .4rem;
  color: rgba(5,7,8,.72);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(5,7,8,.22);
  border-radius: 0;
  padding: .9rem 1rem;
  background: rgba(255,248,239,.62);
  color: var(--ink);
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(98,122,116,.44);
  outline-offset: 2px;
}
textarea { min-height: 170px; resize: vertical; }
.full { grid-column: 1 / -1; }

.not-found {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  padding: 8rem clamp(1rem, 4vw, 3.2rem) 4rem;
}

.cinematic-home {
  background:
    radial-gradient(circle at 50% 18%, rgba(184,201,196,.10), transparent 22rem),
    radial-gradient(circle at 12% 42%, rgba(98,122,116,.10), transparent 18rem),
    var(--ink);
}
.scene-mark {
  display: block;
  margin-bottom: 1rem;
  color: rgba(184,201,196,.68);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
}
.cinematic-hero h1 {
  max-width: 1040px;
  font-size: clamp(5.2rem, 13.6vw, 14rem);
  line-height: .76;
}
.cinematic-hero .lead { max-width: 500px; }
.cinematic-hero .hero-content { padding-bottom: 6.4rem; }
.atelier-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.atelier-rail div {
  min-height: 178px;
  padding: clamp(1rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.atelier-rail div:hover {
  background: rgba(255,248,239,.045);
  transform: translateY(-3px);
}
.atelier-rail strong {
  display: block;
  margin-bottom: .7rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.9vw, 3.2rem);
  font-weight: 500;
  line-height: .9;
}
.atelier-rail span {
  display: block;
  max-width: 260px;
  color: var(--muted);
  font-size: .9rem;
}
.cinematic-tableau {
  min-height: 96dvh;
  background: var(--ink);
  overflow: hidden;
}
.cinematic-tableau img {
  width: 100%;
  height: 96dvh;
  object-fit: cover;
  filter: saturate(.86) contrast(1.02);
  filter: saturate(.72) contrast(1.08) brightness(.96) hue-rotate(-5deg);
  will-change: transform;
}
.mood-pause {
  min-height: 82dvh;
  display: grid;
  place-items: center;
  text-align: left;
}
.mood-pause .wrap {
  max-width: 980px;
}
.mood-pause h2 {
  max-width: 960px;
}
.mood-pause p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  margin-top: 1.3rem;
}
.planning-path {
  position: relative;
  min-height: 125dvh;
  display: grid;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.planning-path::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,7,8,.92), rgba(5,7,8,.16) 58%, rgba(5,7,8,.9));
}
.planning-path__image,
.planning-path__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.planning-path__image img {
  object-fit: cover;
  filter: brightness(.42) saturate(.62) contrast(1.12) hue-rotate(-8deg);
  will-change: transform;
}
.planning-path__copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 7rem);
}
.planning-path__copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 520px;
  margin-top: 1rem;
}
.story-scenes {
  background: var(--ink);
}
.story-scene {
  position: relative;
  min-height: 112dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.story-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,7,8,.94), rgba(5,7,8,.18) 55%, rgba(5,7,8,.68)),
    linear-gradient(0deg, rgba(5,7,8,.82), rgba(5,7,8,0) 44%);
}
.story-scene.align-right::before {
  background:
    linear-gradient(270deg, rgba(5,7,8,.94), rgba(5,7,8,.2) 55%, rgba(5,7,8,.68)),
    linear-gradient(0deg, rgba(5,7,8,.82), rgba(5,7,8,0) 44%);
}
.story-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.66) brightness(.82) contrast(1.12) hue-rotate(-6deg);
  will-change: transform;
}
.story-scene > div,
.planning-path__copy,
.final-brief__copy,
.mood-pause .wrap {
  transform: translateY(calc((1 - var(--scene-visibility, 1)) * 18px));
  transition: transform .8s var(--ease), opacity .8s var(--ease);
}
.story-scene > div {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 7rem);
}
.story-scene.align-right > div {
  margin-left: auto;
  margin-right: clamp(1rem, 7vw, 7rem);
  text-align: right;
}
.story-scene p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px;
}
.story-scene.align-right p:not(.eyebrow) {
  margin-left: auto;
}
.story-scene a {
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-index .feature-list a {
  display: grid;
  grid-template-columns: .58fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  padding: .25rem 0;
  transition: transform .35s var(--ease);
}
.service-index .feature-list a:hover {
  transform: translateX(.45rem);
}
.service-index .feature-list strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}
.service-index .feature-list div {
  border-color: rgba(255,248,239,.22);
}
.service-index .feature-list span {
  color: var(--muted);
}
.lookbook {
  padding-top: clamp(5rem, 9vw, 8rem);
}
.lookbook__intro {
  max-width: 620px;
  margin-left: auto;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.lookbook__intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 440px;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(.8rem, 1.5vw, 1.2rem);
  align-items: stretch;
}
.lookbook-grid figure {
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  background: var(--ink-2);
}
.lookbook-grid figure:first-child {
  grid-column: span 5;
  grid-row: span 2;
}
.lookbook-grid figure:nth-child(2) { grid-column: span 4; }
.lookbook-grid figure:nth-child(3) { grid-column: span 3; }
.lookbook-grid figure:nth-child(4) { grid-column: span 3; }
.lookbook-grid figure:last-child {
  grid-column: span 7;
}
.lookbook-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(.88) contrast(1.06);
  filter: saturate(.72) contrast(1.1) brightness(.96) hue-rotate(-5deg);
  transition: transform 1s var(--ease), filter 1s var(--ease);
  will-change: transform;
}
.lookbook-grid figure:hover img {
  transform: scale(1.055);
  filter: saturate(1.02) contrast(1.08) brightness(1.02);
}
.lookbook-grid figcaption {
  position: relative;
  margin-top: .55rem;
  padding-left: 1.6rem;
}
.lookbook-grid figcaption::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 1rem;
  height: 1px;
  background: var(--champagne);
}
.final-brief {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.final-brief::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5,7,8,.94), rgba(5,7,8,.18) 56%, rgba(5,7,8,.78));
}
.final-brief img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.48) saturate(.62) contrast(1.12) hue-rotate(-6deg);
  will-change: transform;
}
.final-brief__copy {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 7rem);
}
.final-brief__copy p:not(.eyebrow) {
  color: var(--muted);
  max-width: 480px;
}

.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3.4rem) 2rem;
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: "Elegant Occasions";
  display: block;
  width: min(var(--max), 100%);
  margin: 0 auto 2.4rem;
  color: rgba(255,248,239,.06);
  font-family: var(--serif);
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: .75;
}
.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .65fr);
  gap: 2rem;
}
.footer-brand img {
  width: 166px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.35));
}
.footer-grid a,
.footer-grid p { color: rgba(255,248,239,.66); }
.fine {
  width: min(var(--max), 100%);
  margin: 2.4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(255,248,239,.42);
  font-size: .78rem;
}

[data-reveal] { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .scroll-meter,
  .cursor-aura { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    padding: 1rem;
    background: rgba(5,7,8,.98);
    border-bottom: 1px solid var(--line);
  }
  .site-header.open .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav .button { width: 100%; }
  .hero::before,
  .page-hero::before {
    background: linear-gradient(0deg, rgba(5,7,8,.94), rgba(5,7,8,.2));
  }
  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 2rem);
    margin: 0 auto 1.3rem;
  }
  .split,
  .story-grid,
  .story-grid.reverse,
  .enquiry { grid-template-columns: 1fr; }
  .service-grid,
  .proof-band,
  .trust-strip,
  .process { grid-template-columns: 1fr; }
  .service-panel { min-height: 460px; }
  .gallery-run,
  .mini-gallery { grid-template-columns: 1fr; }
  .gallery-run img,
  .gallery-run figure:nth-child(2) img,
  .mini-gallery img,
  .mini-gallery figure:nth-child(2) img { height: 390px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cinematic-tableau,
  .cinematic-tableau img { min-height: 70dvh; height: 70dvh; }
  .mood-pause { min-height: 70dvh; }
  .planning-path { min-height: 90dvh; }
  .story-scene { min-height: 88dvh; }
  .story-scene > div,
  .story-scene.align-right > div,
  .planning-path__copy,
  .final-brief__copy {
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: left;
  }
  .story-scene.align-right p:not(.eyebrow) { margin-left: 0; }
  .service-index .feature-list a { grid-template-columns: 1fr; }
  .atelier-rail { grid-template-columns: 1fr 1fr; }
  .lookbook__intro { margin-left: 0; }
  .lookbook-grid {
    display: block;
  }
  .lookbook-grid figure,
  .lookbook-grid figure:first-child,
  .lookbook-grid figure:nth-child(2),
  .lookbook-grid figure:nth-child(3),
  .lookbook-grid figure:nth-child(4),
  .lookbook-grid figure:last-child {
    grid-row: auto !important;
    grid-column: auto !important;
    margin-bottom: 1rem;
  }
  .lookbook-grid figure,
  .lookbook-grid img {
    width: 100%;
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header { padding: .62rem 1rem; }
  .brand img { width: 96px; }
  .hero-content {
    width: calc(100% - 2rem);
    padding: 8rem 0 3.4rem;
  }
  .page-hero .hero-content { padding-bottom: 3.4rem; }
  h1 { font-size: clamp(3.55rem, 15.5vw, 5.2rem); }
  .cinematic-hero h1 { font-size: clamp(4rem, 17vw, 5.8rem); }
  h2 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .lead { font-size: 1rem; }
  .hero-actions, .button { width: 100%; }
  .section { padding-left: 1rem; padding-right: 1rem; }
  .feature-image,
  .enquiry img,
  .story-grid img { min-height: 360px; }
  .gallery-run img,
  .gallery-run figure:nth-child(2) img,
  .mini-gallery img,
  .mini-gallery figure:nth-child(2) img { height: 330px; }
  form { grid-template-columns: 1fr; }
  .atelier-rail { grid-template-columns: 1fr; }
  .atelier-rail div { min-height: 136px; }
  .lookbook-grid figure,
  .lookbook-grid img {
    min-height: 300px;
  }
}

/* Fullscreen premium homepage slider. */
.refined-hero {
  min-height: 100svh;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  opacity: 0;
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
  transition: opacity 1900ms var(--ease), transform 11200ms linear, filter 1900ms var(--ease);
}

/* Gallery winning-concept pass */
.gallery-editorial-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(127, 63, 70, .22), transparent 28rem),
    radial-gradient(circle at 82% 35%, rgba(154, 111, 68, .14), transparent 34rem),
    #050a0b;
  color: #fff8ee;
}

.gallery-editorial-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 248, 238, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 238, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.gallery-editorial-page > section {
  position: relative;
  z-index: 1;
}

.gallery-editorial-page .eyebrow {
  color: #c47682;
  letter-spacing: .22em;
}

.gallery-campaign-hero {
  min-height: min(920px, 100svh);
  padding-top: clamp(8.5rem, 13vw, 12.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  background: #050a0b;
}

.gallery-campaign-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, .95) 0%, rgba(3, 7, 8, .76) 28%, rgba(3, 7, 8, .28) 64%, rgba(3, 7, 8, .75) 100%),
    linear-gradient(180deg, rgba(3, 7, 8, .38) 0%, rgba(3, 7, 8, .1) 48%, #050a0b 100%);
}

.gallery-campaign-hero > img {
  width: 72%;
  left: auto;
  object-position: center;
  filter: saturate(.9) contrast(1.12) brightness(.7);
}

.gallery-campaign-hero__content {
  max-width: 680px;
}

.gallery-campaign-hero h1 {
  max-width: 650px;
  font-size: clamp(3.9rem, 7vw, 8.2rem);
  line-height: .9;
}

.gallery-campaign-hero h1 span {
  color: #d27787;
  font-style: italic;
}

.gallery-experience-band {
  margin-top: -1px;
  padding-top: clamp(1.6rem, 3vw, 3rem);
  background: #050a0b;
}

.experience-cover-grid figure {
  min-height: clamp(230px, 20vw, 340px);
  border: 1px solid rgba(255, 248, 238, .16);
  box-shadow: none;
}

.experience-cover-grid strong {
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
}

.eo-dynamic-gallery {
  padding: clamp(4.5rem, 7vw, 7.5rem) clamp(1.25rem, 5vw, 5rem) clamp(5rem, 8vw, 8rem);
  background:
    linear-gradient(180deg, #050a0b 0%, #081112 42%, #050a0b 100%);
  color: #fff8ee;
}

.eo-dynamic-gallery__intro {
  width: min(980px, 100%);
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.eo-dynamic-gallery__intro h2 {
  margin: .22em auto .28em;
  max-width: 820px;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.3vw, 6.6rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}

.eo-dynamic-gallery__intro p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 248, 238, .72);
  line-height: 1.75;
}

.eo-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  width: min(980px, 100%);
  margin: 0 auto clamp(2.2rem, 4vw, 3.6rem);
}

.eo-gallery-tabs button {
  min-height: 2.75rem;
  border: 1px solid rgba(255, 248, 238, .16);
  border-radius: 0;
  padding: .85rem 1.05rem;
  background: rgba(255, 248, 238, .035);
  color: rgba(255, 248, 238, .72);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .24s var(--ease), background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
}

.eo-gallery-tabs button:hover,
.eo-gallery-tabs button:focus-visible,
.eo-gallery-tabs button.is-active {
  border-color: rgba(210, 119, 135, .86);
  background: rgba(210, 119, 135, .15);
  color: #fff8ee;
}

.eo-gallery-tabs button:active {
  transform: translateY(1px) scale(.99);
}

.eo-gallery-panel {
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.eo-gallery-panel__copy {
  position: sticky;
  top: 8.5rem;
  padding-top: .4rem;
}

.eo-gallery-panel__copy h3 {
  margin: .25em 0 .35em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.9rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}

.eo-gallery-panel__copy p:last-child {
  max-width: 420px;
  color: rgba(255, 248, 238, .72);
  line-height: 1.75;
}

.eo-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 12.6vw, 230px);
  gap: .55rem;
}

.eo-gallery-mosaic figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, .13);
  background: #101617;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(14px);
  animation: galleryTileIn .56s var(--ease) forwards;
  animation-delay: var(--delay);
}

.eo-gallery-mosaic figure.wide {
  grid-column: span 2;
}

.eo-gallery-mosaic figure.tall {
  grid-row: span 2;
}

.eo-gallery-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.86);
  transition: transform .7s var(--ease), filter .45s var(--ease);
}

.eo-gallery-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 7, 8, .82) 100%);
  opacity: .72;
  transition: opacity .32s var(--ease);
}

.eo-gallery-mosaic figcaption {
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .8rem;
  z-index: 1;
  color: rgba(255, 248, 238, .86);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.eo-gallery-mosaic figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.08) brightness(.98);
}

.eo-gallery-mosaic figure:hover::after,
.eo-gallery-mosaic figure:focus-visible::after {
  opacity: 1;
}

.eo-gallery-mosaic figure:hover figcaption,
.eo-gallery-mosaic figure:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

@keyframes galleryTileIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-featured-story,
.gallery-editorial-masonry,
.gallery-detail-browser,
.gallery-transformation,
.gallery-signature-details,
.gallery-collection-rails {
  background: #050a0b;
  color: #fff8ee;
}

.gallery-editorial-masonry,
.gallery-detail-browser,
.gallery-signature-details,
.gallery-collection-rails {
  border-top: 1px solid rgba(255, 248, 238, .08);
}

@media (max-width: 980px) {
  .gallery-campaign-hero > img {
    width: 100%;
    opacity: .72;
  }

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

  .experience-cover-grid figure:first-child {
    grid-column: 1 / -1;
  }

  .eo-gallery-panel {
    grid-template-columns: 1fr;
  }

  .eo-gallery-panel__copy {
    position: static;
    text-align: center;
  }

  .eo-gallery-panel__copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .eo-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 31vw, 250px);
  }
}

@media (max-width: 620px) {
  .gallery-campaign-hero {
    min-height: 86svh;
    padding-top: 7rem;
  }

  .gallery-campaign-hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .experience-cover-grid,
  .eo-gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .experience-cover-grid figure,
  .eo-gallery-mosaic figure,
  .eo-gallery-mosaic figure.wide,
  .eo-gallery-mosaic figure.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .eo-gallery-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .5rem;
    scroll-snap-type: x proximity;
  }

  .eo-gallery-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

@media (max-width: 1180px) {
  .reference-header .header-topline,
  .reference-header.scrolled .header-topline,
  .reference-header.open .header-topline {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .reference-header .nav-toggle {
    margin-left: auto;
  }
}

/* TRUE FINAL gallery override: this must stay at the end of the file. */
.gallery-build-v2,
body:has(.gallery-build-v2) {
  background: #050b0c !important;
}

.gallery-build-v2 .gallery-campaign-hero,
.gallery-build-v2 .gallery-experience-band,
.gallery-build-v2 .gallery-featured-story,
.gallery-build-v2 .gallery-editorial-masonry,
.gallery-build-v2 .gallery-detail-browser,
.gallery-build-v2 .gallery-transformation,
.gallery-build-v2 .gallery-signature-details,
.gallery-build-v2 .gallery-collection-rails,
.gallery-build-v2 .gallery-imagine-cta {
  display: none !important;
}

.gallery-build-v2 .gallery-v2-hero {
  min-height: 600px !important;
  height: 72svh !important;
  max-height: 760px !important;
  padding: clamp(8.4rem, 10vw, 10.2rem) clamp(1.6rem, 5.6vw, 5.6rem) clamp(3rem, 4vw, 4.2rem) !important;
  background: #050b0c !important;
}

.gallery-build-v2 .gallery-v2-hero img {
  width: 76% !important;
  filter: saturate(.88) contrast(1.13) brightness(.7) !important;
}

.gallery-build-v2 .gallery-v2-hero__copy,
.gallery-build-v2 .gallery-v2-hero h1 {
  max-width: 510px !important;
}

.gallery-build-v2 .gallery-v2-hero h1 {
  font-size: clamp(3.15rem, 4.65vw, 6.15rem) !important;
  line-height: .91 !important;
}

.gallery-build-v2 .gallery-v2-categories,
.gallery-build-v2 .eo-dynamic-gallery {
  background: #050b0c !important;
  color: #fff8ee !important;
}

.gallery-build-v2 .gallery-v2-categories {
  padding: 1.4rem clamp(1.5rem, 3vw, 3rem) clamp(4.2rem, 5vw, 5.4rem) !important;
}

.gallery-build-v2 .gallery-v2-category-grid {
  width: min(1500px, 100%) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: .35rem !important;
}

.gallery-build-v2 .gallery-v2-category-grid button {
  min-height: clamp(245px, 17vw, 320px) !important;
}

.gallery-build-v2 .eo-dynamic-gallery {
  padding: clamp(4.4rem, 5.8vw, 6.2rem) clamp(1.5rem, 3vw, 3rem) clamp(4.8rem, 6vw, 6.6rem) !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro {
  display: grid !important;
  grid-template-columns: minmax(240px, .9fr) minmax(280px, .78fr) !important;
  gap: clamp(2rem, 8vw, 10rem) !important;
  align-items: end !important;
  width: min(1280px, 100%) !important;
  margin: 0 auto 2.15rem !important;
  text-align: left !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro .eyebrow {
  grid-column: 1 / -1 !important;
  margin: 0 0 -.9rem !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro h2 {
  max-width: 560px !important;
  margin: 0 !important;
  color: #fff8ee !important;
  font-size: clamp(2.15rem, 3.3vw, 4rem) !important;
  line-height: .98 !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro p:last-child {
  max-width: 470px !important;
  margin: 0 !important;
  color: rgba(255, 248, 238, .72) !important;
}

.gallery-build-v2 .eo-gallery-tabs {
  justify-content: flex-start !important;
  width: min(1280px, 100%) !important;
  margin: 0 auto 1.6rem !important;
  gap: 1.45rem !important;
}

.gallery-build-v2 .eo-gallery-tabs button {
  min-height: auto !important;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  padding: 0 0 .55rem !important;
  background: transparent !important;
  color: rgba(255, 248, 238, .58) !important;
}

.gallery-build-v2 .eo-gallery-tabs button.is-active,
.gallery-build-v2 .eo-gallery-tabs button:hover,
.gallery-build-v2 .eo-gallery-tabs button:focus-visible {
  border-bottom-color: #c47682 !important;
  color: #fff8ee !important;
}

.gallery-build-v2 .eo-gallery-panel {
  display: block !important;
  width: min(1280px, 100%) !important;
  margin: 0 auto !important;
}

.gallery-build-v2 .eo-gallery-panel__copy {
  display: none !important;
}

.gallery-build-v2 .eo-gallery-mosaic {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  grid-auto-rows: clamp(150px, 11.4vw, 215px) !important;
  gap: .35rem !important;
}

.gallery-build-v2 .eo-gallery-mosaic figure.wide {
  grid-column: span 2 !important;
}

.gallery-build-v2 .eo-gallery-mosaic figure.tall {
  grid-row: span 2 !important;
}

.gallery-build-v2 .gallery-v2-cta {
  min-height: 255px !important;
  padding: clamp(3rem, 5vw, 4.6rem) 1.25rem !important;
}

.gallery-build-v2 + .site-footer .footer-journey {
  display: none !important;
}

@media (max-width: 980px) {
  .gallery-build-v2 .gallery-v2-hero {
    height: auto !important;
    min-height: 720px !important;
  }

  .gallery-build-v2 .gallery-v2-hero img {
    width: 100% !important;
    opacity: .78;
  }

  .gallery-build-v2 .gallery-v2-category-grid,
  .gallery-build-v2 .eo-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gallery-build-v2 .eo-dynamic-gallery__intro {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
}

@media (max-width: 620px) {
  .gallery-build-v2 .gallery-v2-category-grid,
  .gallery-build-v2 .eo-gallery-mosaic {
    grid-template-columns: 1fr !important;
  }
}

/* Gallery v2 clean rebuild: header and footer inherited, body rebuilt. */
.gallery-build-v2 .gallery-campaign-hero,
.gallery-build-v2 .gallery-experience-band,
.gallery-build-v2 .gallery-featured-story,
.gallery-build-v2 .gallery-editorial-masonry,
.gallery-build-v2 .gallery-detail-browser,
.gallery-build-v2 .gallery-transformation,
.gallery-build-v2 .gallery-signature-details,
.gallery-build-v2 .gallery-collection-rails,
.gallery-build-v2 .gallery-imagine-cta {
  display: none;
}

.gallery-v2-hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(8rem, 12vw, 12rem) clamp(1.25rem, 6vw, 8rem) clamp(4rem, 7vw, 6rem);
  background: #050a0b;
  color: #fff8ee;
}

.gallery-v2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 8, .96) 0%, rgba(3, 7, 8, .78) 30%, rgba(3, 7, 8, .2) 66%, rgba(3, 7, 8, .7) 100%),
    linear-gradient(180deg, rgba(3, 7, 8, .44) 0%, rgba(3, 7, 8, .08) 42%, #050a0b 100%);
}

.gallery-v2-hero img {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.12) brightness(.72);
}

.gallery-v2-hero__copy {
  max-width: 660px;
}

.gallery-v2-hero h1 {
  margin: .24em 0 .25em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.2vw, 8.6rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.gallery-v2-hero h1 span,
.gallery-v2-cta h2 span {
  color: #d27787;
  font-style: italic;
}

.gallery-v2-hero p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(255, 248, 238, .74);
  line-height: 1.78;
}

.gallery-v2-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.4rem;
  color: #c47682;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.gallery-v2-categories {
  padding: clamp(1.6rem, 3vw, 3rem) clamp(1.25rem, 3vw, 3rem) clamp(4.8rem, 6.5vw, 7rem);
  background: #050a0b;
  color: #fff8ee;
}

.gallery-v2-categories > .eyebrow {
  width: min(1480px, 100%);
  margin: 0 auto 1rem;
  text-align: center;
}

.gallery-v2-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.gallery-v2-category-grid button {
  position: relative;
  min-height: clamp(240px, 20vw, 340px);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, .16);
  padding: 0;
  background: #101617;
  color: #fff8ee;
  cursor: pointer;
  text-align: left;
}

.gallery-v2-category-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 8, .08) 0%, rgba(3, 7, 8, .2) 42%, rgba(3, 7, 8, .84) 100%);
}

.gallery-v2-category-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05) brightness(.86);
  transition: transform .75s var(--ease), filter .45s var(--ease);
}

.gallery-v2-category-grid span {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1.05rem;
  z-index: 1;
}

.gallery-v2-category-grid strong {
  display: block;
  margin-bottom: .7rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.55rem);
  font-weight: 500;
  line-height: .95;
}

.gallery-v2-category-grid small {
  color: rgba(255, 248, 238, .72);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.gallery-v2-category-grid button:hover img,
.gallery-v2-category-grid button:focus-visible img,
.gallery-v2-category-grid button.is-active img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.08) brightness(.96);
}

.gallery-v2-category-grid button.is-active {
  border-color: rgba(210, 119, 135, .9);
}

.gallery-build-v2 .eo-dynamic-gallery {
  padding-top: clamp(4.2rem, 6vw, 6.8rem);
}

.gallery-v2-cta {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
  background: #050a0b;
  color: #fff8ee;
  text-align: center;
}

.gallery-v2-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 7, 8, .64);
}

.gallery-v2-cta img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.08) brightness(.62);
}

.gallery-v2-cta h2 {
  max-width: 820px;
  margin: .25em auto .7em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 6.4rem);
  font-weight: 500;
  line-height: .92;
}

@media (max-width: 980px) {
  .gallery-v2-hero img {
    width: 100%;
    opacity: .72;
  }

  .gallery-v2-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-v2-category-grid button:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .gallery-v2-hero {
    min-height: 86svh;
    padding-top: 7rem;
  }

  .gallery-v2-hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .gallery-v2-category-grid {
    grid-template-columns: 1fr;
  }

  .gallery-v2-category-grid button,
  .gallery-v2-category-grid button:first-child {
    grid-column: auto;
    min-height: 250px;
  }
}


.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide:first-child {
  object-position: 50% 52%;
  transform: scale(1.015);
  filter: saturate(1.05) contrast(1.04) brightness(1);
}

.hero-slide:first-child.is-active {
  transform: scale(1.01);
}

.hero-slide:nth-child(2) {
  object-position: 52% 48%;
}

.hero-slide:nth-child(3) {
  object-position: 50% 50%;
  filter: saturate(1.04) contrast(1.03) brightness(1.02);
}

.hero-slide:nth-child(4) {
  object-position: 57% 48%;
}

.hero-slide:nth-child(5) {
  object-position: 57% 48%;
}

.hero-slide:nth-child(6) {
  object-position: 48% 52%;
  filter: saturate(1.04) contrast(1.02) brightness(1.08);
}

.refined-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,9,11,.70), rgba(5,9,11,.24) 37%, rgba(5,9,11,.04) 67%, rgba(5,9,11,.22)),
    linear-gradient(0deg, rgba(5,9,11,.18), rgba(5,9,11,0) 50%, rgba(5,9,11,.16)) !important;
}

.refined-hero::after {
  z-index: 2;
  opacity: .16;
}

.refined-hero img.hero-img {
  display: none;
}

.refined-hero .approved-hero__inner {
  position: relative;
  z-index: 3;
  width: min(1760px, calc(100% - clamp(2rem, 5.2vw, 6.2rem)));
  padding-top: clamp(9rem, 13vh, 13rem);
  padding-bottom: clamp(4rem, 8vh, 7rem);
}

.refined-hero .approved-hero__copy {
  max-width: min(1480px, 78vw);
  padding-top: clamp(1rem, 4vh, 4rem);
}

.refined-hero h1 {
  max-width: 1420px;
  font-size: clamp(6rem, 7.35vw, 10.15rem);
  line-height: .84;
  text-wrap: normal;
}

.refined-hero .lead {
  max-width: 760px;
  margin-top: 1.35rem;
  font-size: clamp(1.2rem, 1.25vw, 1.5rem);
  line-height: 1.46;
}

.refined-hero .button {
  min-height: 62px;
  padding: 1.08rem 1.75rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .16em;
}

.refined-hero .button.gold {
  min-width: 210px;
}

.refined-hero .button.ghost {
  min-width: 190px;
  background: rgba(5,9,11,.24);
  backdrop-filter: blur(8px);
}

.hero-interface {
  position: absolute;
  left: 50%;
  bottom: clamp(2rem, 5vw, 4.4rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: .65rem;
  transform: translateX(-50%);
}

.hero-dot {
  width: 44px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,250,240,.3);
  cursor: pointer;
  padding: 0;
  transition: width .3s var(--ease), background .3s var(--ease);
}

.hero-dot.is-active {
  width: 74px;
  background: var(--gold-soft);
}

.hero-count {
  z-index: 5;
}

@media (max-width: 980px) {
  .refined-hero .approved-hero__copy {
    max-width: 760px;
  }
  .refined-hero h1 {
    font-size: clamp(5rem, 12vw, 8rem);
  }
}

@media (max-width: 560px) {
  .refined-hero {
    min-height: 92svh;
  }
  .hero-slide,
  .hero-slide:first-child,
  .hero-slide:nth-child(2),
  .hero-slide:nth-child(3),
  .hero-slide:nth-child(4),
  .hero-slide:nth-child(5) {
    object-position: 54% 50%;
    filter: saturate(1.03) contrast(1.03) brightness(.9);
  }
  .refined-hero::before {
    background:
      linear-gradient(0deg, rgba(5,9,11,.68), rgba(5,9,11,.2) 46%, rgba(5,9,11,.22)),
      linear-gradient(90deg, rgba(5,9,11,.62), rgba(5,9,11,.08)) !important;
  }
  .refined-hero .approved-hero__inner {
    width: calc(100% - 2rem);
    padding-top: 7rem;
    padding-bottom: 6rem;
  }
  .refined-hero h1 {
    font-size: clamp(4rem, 15.4vw, 5.9rem);
    line-height: .84;
  }
  .refined-hero .lead {
    max-width: 100%;
    font-size: 1rem;
  }
  .refined-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }
  .refined-hero .button,
  .refined-hero .button.gold,
  .refined-hero .button.ghost {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }
  .hero-interface {
    bottom: 1.3rem;
  }
  .hero-dot {
    width: 28px;
  }
  .hero-dot.is-active {
    width: 48px;
  }
}

/* User-requested refinement: no cursor hover aura, brighter/wider first impression. */
body::before,
.cursor-aura {
  display: none !important;
}

.refined-hero::before {
  background:
    linear-gradient(90deg, rgba(5,9,11,.62), rgba(5,9,11,.22) 34%, rgba(5,9,11,.04) 62%, rgba(5,9,11,.34)),
    linear-gradient(0deg, rgba(5,9,11,.16), rgba(5,9,11,0) 48%, rgba(5,9,11,.18)) !important;
}

.refined-hero img.hero-img {
  filter: saturate(1.08) contrast(1.06) brightness(.98) !important;
  object-position: 58% 44%;
}

.refined-hero .approved-hero__inner {
  width: min(1680px, calc(100% - clamp(2rem, 6vw, 6.5rem)));
}

.refined-hero .approved-hero__copy {
  max-width: 780px;
  padding: clamp(1rem, 2vw, 1.8rem) 0;
}

.refined-hero h1 {
  max-width: 780px;
  font-size: clamp(5.1rem, 8.9vw, 10.2rem);
  line-height: .82;
  text-shadow: 0 18px 54px rgba(0,0,0,.46);
}

.refined-hero .lead {
  max-width: 650px;
  color: rgba(255,250,240,.92);
  font-size: clamp(1.08rem, 1.18vw, 1.28rem);
  text-shadow: 0 10px 32px rgba(0,0,0,.46);
}

.refined-hero .eyebrow {
  color: #884044;
  text-shadow: 0 8px 24px rgba(0,0,0,.42);
}

.home-header {
  background: linear-gradient(to bottom, rgba(5,9,11,.55), rgba(5,9,11,0)) !important;
}

.home-header.scrolled,
.home-header.open {
  background: rgba(5, 9, 11, .92) !important;
}

@media (max-width: 560px) {
  .refined-hero::before {
    background:
      linear-gradient(0deg, rgba(5,9,11,.56), rgba(5,9,11,.12) 52%, rgba(5,9,11,.24)) !important;
  }
  .refined-hero img.hero-img {
    object-position: 58% 50%;
    filter: saturate(1.04) contrast(1.04) brightness(.88) !important;
  }
  .refined-hero .approved-hero__copy {
    max-width: none;
  }
  .refined-hero h1 {
    max-width: 100%;
    font-size: clamp(4rem, 16vw, 6.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  body::before { background: none; }
  [data-depth] { transform: none !important; }
}

@media (hover: hover) and (pointer: fine) {
  body.has-pointer .cursor-aura { opacity: 1; }
}

/* Approved client concept direction: editorial black, ivory and burgundy accent. */
:root {
  --ink: #05090b;
  --ink-2: #0b1316;
  --paper: #f5f1e8;
  --ivory: #fffaf0;
  --muted: rgba(255, 250, 240, .72);
  --muted-dark: rgba(5, 9, 11, .64);
  --champagne: #884044;
  --gold: #884044;
  --gold-soft: #b66a70;
  --deep-green: #092419;
  --line: rgba(255, 250, 240, .18);
  --line-dark: rgba(5, 9, 11, .14);
}

body::before {
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 18%), rgba(136,64,68,.16), transparent 18rem),
    radial-gradient(circle at 78% 36%, rgba(12,48,35,.28), transparent 28rem);
}

.approved-home {
  background: var(--ink);
  color: var(--ivory);
}

.site-header {
  background: linear-gradient(to bottom, rgba(5,9,11,.92), rgba(5,9,11,.05));
}

.site-header.scrolled,
.site-header.open {
  background: rgba(5, 9, 11, .94);
}

.button.gold {
  background: linear-gradient(135deg, #884044, #6f3038);
  color: var(--ivory);
  border-color: rgba(255, 250, 240, .92);
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

.approved-hero {
  min-height: 100dvh;
  align-items: center;
}

.approved-hero::before {
  background:
    linear-gradient(90deg, rgba(5,9,11,.9), rgba(5,9,11,.42) 38%, rgba(5,9,11,.24) 64%, rgba(5,9,11,.72)),
    linear-gradient(0deg, rgba(5,9,11,.5), rgba(5,9,11,.04) 38%, rgba(5,9,11,.4));
}

.approved-hero img.hero-img {
  opacity: 1;
  filter: saturate(.9) contrast(1.1) brightness(.72);
  object-position: 50% 48%;
}

.approved-hero__inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}

.approved-hero__copy {
  max-width: 720px;
}

.approved-hero h1 {
  max-width: 760px;
  font-size: clamp(4.6rem, 9.7vw, 9.2rem);
  line-height: .84;
}

.approved-hero .lead {
  max-width: 560px;
  margin-top: 1rem;
  color: rgba(255,250,240,.82);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,250,240,.42);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--ivory);
  transform: translate(-50%, -50%) rotate(45deg);
}

.vision-section,
.local-proof {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(5rem, 9vw, 8.5rem) clamp(1rem, 4vw, 3.4rem);
  text-align: center;
}

.centered { text-align: center; }

.vision-section h2,
.local-proof h2,
.testimonial-section h2 {
  font-size: clamp(3rem, 5.8vw, 6.7rem);
  line-height: .94;
}

.section-lead {
  max-width: 760px;
  margin: 1.1rem auto 0;
  color: var(--muted-dark);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  margin-top: clamp(3.2rem, 6vw, 5.4rem);
}

.promise-grid article,
.proof-cards article {
  display: grid;
  justify-items: center;
  gap: .75rem;
}

.promise-grid span,
.proof-cards span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(5,9,11,.2);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.promise-grid h3,
.proof-cards h3,
.signature-points h3 {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.promise-grid p,
.proof-cards p {
  max-width: 230px;
  color: var(--muted-dark);
  font-size: .92rem;
}

.signature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.4rem, 9vw, 8.8rem) clamp(1rem, 4vw, 3.4rem);
  background:
    linear-gradient(90deg, rgba(5,9,11,.96), rgba(5,9,11,.86)),
    var(--ink);
  border-top: 1px solid rgba(182,106,112,.2);
  border-bottom: 1px solid rgba(182,106,112,.2);
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(42vw, 620px);
  background: url("../images/client-supplied-v339/eo-v339-candlelit-table-detail.jpg") center / cover no-repeat;
  opacity: .34;
  filter: saturate(.82) contrast(1.16) brightness(.62);
}

.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}

.signature-grid h2 {
  max-width: 660px;
  font-size: clamp(3.4rem, 6.8vw, 7.8rem);
}

.signature-grid p {
  max-width: 520px;
  color: var(--muted);
}

.signature-points {
  display: grid;
  gap: 1.4rem;
}

.signature-points article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(182,106,112,.24);
}

.signature-points span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.service-medallions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 1.4rem clamp(1rem, 4vw, 3.4rem);
  background: #071115;
  border-bottom: 1px solid rgba(182,106,112,.25);
}

.service-medallions a {
  display: grid;
  justify-items: center;
  gap: .75rem;
  min-height: 132px;
  padding: 1rem;
  color: var(--ivory);
  border-right: 1px solid rgba(182,106,112,.24);
  text-align: center;
}

.service-medallions a:last-child { border-right: 0; }

.service-medallions span {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(182,106,112,.74);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 2rem;
}

.service-medallions strong {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gallery-feature {
  padding: clamp(5.2rem, 9vw, 9rem) clamp(1rem, 4vw, 3.4rem);
  background: #050708;
  color: var(--ivory);
}

.gallery-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.gallery-heading h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
}

.mosaic-gallery {
  display: grid;
  grid-template-columns: 1fr .92fr 1.16fr .92fr 1fr;
  grid-auto-rows: 225px;
  gap: .9rem;
}

.mosaic-gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(182,106,112,.38);
  background: var(--ink-2);
}

.mosaic-gallery figure.tall {
  grid-row: span 2;
}

.mosaic-gallery figure.centerpiece {
  grid-row: span 2;
}

.mosaic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.08) brightness(.88);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.mosaic-gallery figure:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.08) brightness(.98);
}

.mosaic-gallery figcaption {
  position: absolute;
  left: .8rem;
  bottom: .7rem;
  margin: 0;
  color: rgba(255,250,240,.88);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
}

.local-proof h2 {
  margin-bottom: 2.4rem;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.28);
}

.proof-cards article {
  min-height: 190px;
  padding: 1.6rem;
  border-right: 1px solid var(--line-dark);
}

.proof-cards article:last-child { border-right: 0; }

.testimonial-section {
  padding: clamp(5rem, 8vw, 8rem) clamp(1rem, 4vw, 3.4rem);
  background:
    linear-gradient(rgba(5,9,11,.94), rgba(5,9,11,.94)),
    url("../images/selected/detail-candle-table.jpg") center / cover;
  color: var(--ivory);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(182,106,112,.52);
  border-radius: 8px;
  background: rgba(7,17,21,.72);
  text-align: left;
}

.testimonial-grid p {
  color: rgba(255,250,240,.82);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.15;
}

.testimonial-grid cite {
  color: var(--gold-soft);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.journey-cta {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
}

.journey-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5,9,11,.92), rgba(5,9,11,.76));
}

.journey-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.08) brightness(.52);
}

.journey-cta div {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 2rem));
}

.journey-cta h2 {
  font-size: clamp(3.1rem, 6vw, 6.2rem);
}

.journey-cta p:not(.eyebrow) {
  color: var(--muted);
}

@media (max-width: 980px) {
  .approved-hero h1 {
    max-width: 620px;
    font-size: clamp(4.2rem, 12vw, 7rem);
  }
  .promise-grid,
  .signature-grid,
  .proof-cards,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-medallions {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-medallions a:nth-child(3) {
    border-right: 0;
  }
  .mosaic-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
}

@media (max-width: 560px) {
  .approved-hero__inner {
    padding: 8rem 0 4rem;
  }
  .approved-hero h1 {
    font-size: clamp(3.7rem, 16vw, 5.7rem);
  }
  .approved-hero .lead {
    max-width: 92%;
  }
  .vision-section,
  .local-proof,
  .gallery-feature,
  .testimonial-section,
  .signature-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .promise-grid,
  .signature-grid,
  .proof-cards,
  .testimonial-grid,
  .service-medallions,
  .mosaic-gallery {
    grid-template-columns: 1fr;
  }
  .service-medallions a,
  .service-medallions a:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(182,106,112,.22);
  }
  .signature-section::before {
    width: 100%;
    opacity: .16;
  }
  .signature-points article {
    grid-template-columns: 46px 1fr;
  }
  .mosaic-gallery {
    grid-auto-rows: 280px;
  }
  .mosaic-gallery figure,
  .mosaic-gallery figure.tall,
  .mosaic-gallery figure.centerpiece {
    grid-row: span 1;
  }
  .proof-cards article {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .proof-cards article:last-child {
    border-bottom: 0;
  }
}

.approved-page .page-hero {
  min-height: 88dvh;
}

.approved-page .page-hero::before {
  background:
    linear-gradient(90deg, rgba(5,9,11,.9), rgba(5,9,11,.44) 42%, rgba(5,9,11,.72)),
    linear-gradient(0deg, rgba(5,9,11,.78), rgba(5,9,11,.08) 55%);
}

.approved-page .page-hero img {
  opacity: 1;
  filter: saturate(.86) contrast(1.12) brightness(.7);
}

.approved-page .hero-content {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.approved-page h1 {
  max-width: 980px;
  font-size: clamp(4rem, 8.4vw, 9rem);
}

.approved-page .lead {
  color: rgba(255,250,240,.78);
}

.inner-vision {
  text-align: left;
}

.inner-vision h2 {
  font-size: clamp(3rem, 6.1vw, 7.2rem);
}

.inner-vision .feature-list {
  margin-top: 0;
  color: var(--ink);
}

.inner-vision .feature-list div {
  display: grid;
  grid-template-columns: minmax(140px, .55fr) 1fr;
  gap: 1.4rem;
  border-color: rgba(5,9,11,.18);
  color: var(--muted-dark);
}

.inner-vision .feature-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
}

.inner-vision .feature-list span {
  display: block;
  align-self: center;
}

.inner-signature {
  background:
    linear-gradient(90deg, rgba(5,9,11,.95), rgba(5,9,11,.82)),
    var(--ink);
}

.inner-signature::before {
  display: none;
}

.inner-signature .story-grid,
.inner-signature .story-grid.reverse {
  position: relative;
  z-index: 1;
}

.inner-signature .feature-image {
  border: 1px solid rgba(182,106,112,.32);
  filter: saturate(.88) contrast(1.08) brightness(.86);
}

.compact-gallery {
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.compact-gallery .mini-gallery {
  grid-template-columns: 1fr .82fr 1fr;
  align-items: stretch;
}

.compact-gallery .mini-gallery figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(182,106,112,.32);
}

.compact-gallery .mini-gallery img,
.compact-gallery .mini-gallery figure:nth-child(2) img {
  height: clamp(420px, 44vw, 650px);
  min-height: 0;
  filter: saturate(.86) contrast(1.08) brightness(.88);
}

.compact-gallery .mini-gallery figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  color: rgba(255,250,240,.9);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
}

.inner-cta {
  min-height: 520px;
  text-align: left;
}

.inner-cta > .wrap {
  position: relative;
  z-index: 2;
}

.inner-cta .split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.inner-cta h2 {
  max-width: 620px;
  font-size: clamp(3rem, 4.8vw, 5.8rem);
  line-height: .9;
}

.inner-cta .copy:last-child {
  align-self: center;
  max-width: 520px;
}

.inner-cta .copy p:not(.eyebrow) {
  color: rgba(255,250,240,.76);
}

.contact-page .page-hero {
  min-height: 74dvh;
}

.enquiry-section {
  text-align: left;
}

.enquiry-section .enquiry {
  align-items: start;
}

.enquiry-section form {
  padding: clamp(1rem, 2.4vw, 2rem);
  border: 1px solid rgba(5,9,11,.18);
  background: rgba(255,255,255,.48);
  box-shadow: 0 28px 80px rgba(5,9,11,.08);
}

.enquiry-section input,
.enquiry-section select,
.enquiry-section textarea {
  background: rgba(255,250,240,.74);
}

.enquiry-section .proof-cards span,
.local-proof .proof-cards span {
  font-family: var(--serif);
}

.site-footer .footer-brand img,
.brand img {
  background: transparent;
}

@media (max-width: 980px) {
  .approved-page h1 {
    font-size: clamp(3.8rem, 11vw, 6.8rem);
  }
  .inner-vision .feature-list div {
    grid-template-columns: 1fr;
    gap: .45rem;
  }
  .compact-gallery .mini-gallery {
    grid-template-columns: 1fr;
  }
  .compact-gallery .mini-gallery img,
  .compact-gallery .mini-gallery figure:nth-child(2) img {
    height: 440px;
  }
}

@media (max-width: 560px) {
  .approved-page .page-hero {
    min-height: 84dvh;
  }
  .approved-page h1 {
    font-size: clamp(3.35rem, 14vw, 5.2rem);
  }
  .inner-vision {
    text-align: left;
  }
  .compact-gallery .mini-gallery img,
  .compact-gallery .mini-gallery figure:nth-child(2) img {
    height: 330px;
  }
  .inner-cta {
    min-height: 520px;
  }
  .inner-cta .split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .inner-cta h2 {
    max-width: 92vw;
    font-size: clamp(2.9rem, 12vw, 4.4rem);
  }
  .enquiry-section form {
    padding: 1rem;
  }
}

/* Homepage refined to the latest approved client mockup. */
.home-header {
  min-height: 84px;
  padding-left: clamp(1.4rem, 3.2vw, 3.8rem);
  padding-right: clamp(1.4rem, 3.2vw, 3.8rem);
}

.home-header .brand img {
  width: clamp(122px, 10vw, 172px);
}

.home-header .nav {
  gap: clamp(1.25rem, 2.4vw, 2.8rem);
}

.home-header .nav a:not(.button) {
  color: rgba(255,250,240,.9);
  opacity: 1;
}

.refined-hero {
  min-height: 100dvh;
}

.refined-hero::before {
  background:
    linear-gradient(90deg, rgba(5,9,11,.9), rgba(5,9,11,.38) 38%, rgba(5,9,11,.16) 63%, rgba(5,9,11,.78)),
    linear-gradient(0deg, rgba(5,9,11,.32), rgba(5,9,11,.04) 48%, rgba(5,9,11,.36));
}

.refined-hero img.hero-img {
  object-position: 56% 45%;
  filter: saturate(.86) contrast(1.12) brightness(.74);
}

.refined-hero .approved-hero__inner {
  width: min(1480px, calc(100% - clamp(2rem, 7vw, 7rem)));
  padding-top: 9rem;
  padding-bottom: 6.2rem;
}

.refined-hero .approved-hero__copy {
  max-width: 620px;
}

.refined-hero h1 {
  max-width: 610px;
  font-size: clamp(4.4rem, 8vw, 8.7rem);
  line-height: .82;
}

.refined-hero .lead {
  max-width: 520px;
  margin-top: 1.2rem;
  font-size: clamp(.98rem, 1vw, 1.14rem);
}

.hero-count {
  position: absolute;
  right: clamp(1.5rem, 7vw, 8rem);
  bottom: clamp(2rem, 6vw, 4.6rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ivory);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.hero-count i {
  display: block;
  width: 46px;
  height: 1px;
  background: rgba(255,250,240,.62);
}

.refined-vision {
  padding-top: clamp(4.8rem, 7vw, 7.2rem);
  padding-bottom: clamp(4.4rem, 6.4vw, 6.6rem);
}

.refined-vision h2 {
  font-size: clamp(3.6rem, 5.2vw, 6.4rem);
}

.refined-promises {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: clamp(3.1rem, 5vw, 4.6rem);
}

.refined-promises article {
  min-height: 180px;
  padding: 0 clamp(.8rem, 1.8vw, 1.6rem);
  border-right: 1px solid rgba(5,9,11,.14);
}

.refined-promises article:last-child {
  border-right: 0;
}

.refined-promises span,
.refined-proof .proof-cards span {
  width: 50px;
  height: 50px;
  font-size: .72rem;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: .08em;
}

.signature-showcase {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .78fr) minmax(360px, .88fr);
  gap: 0;
  padding: 0;
  min-height: 540px;
  align-items: stretch;
  background: #05090b;
}

.signature-showcase::before {
  display: none;
}

.signature-showcase__image {
  margin: 0;
  min-height: 540px;
  overflow: hidden;
}

.signature-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.1) brightness(.8);
}

.signature-showcase__copy {
  display: grid;
  align-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.signature-showcase__copy h2 {
  max-width: 520px;
  font-size: clamp(3.4rem, 5vw, 6.2rem);
  line-height: .86;
}

.signature-showcase__copy p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(255,250,240,.74);
}

.refined-points {
  align-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid rgba(255,250,240,.22);
}

.refined-points article {
  grid-template-columns: 48px 1fr;
  gap: 1.1rem;
}

.refined-points span {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.refined-gallery {
  padding-top: clamp(3.8rem, 6vw, 5.8rem);
  padding-bottom: clamp(3.8rem, 6vw, 5.8rem);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .9rem;
}

.gallery-strip figure {
  margin: 0;
  min-height: clamp(260px, 26vw, 410px);
  overflow: hidden;
  border: 1px solid rgba(182,106,112,.28);
  background: var(--ink-2);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.08) brightness(.86);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.gallery-strip figure:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.08) brightness(.98);
}

.refined-proof {
  padding-top: clamp(3.8rem, 6vw, 5.8rem);
  padding-bottom: clamp(3.8rem, 6vw, 5.8rem);
}

.refined-proof h2 {
  font-size: clamp(3.6rem, 5.2vw, 6.6rem);
}

.refined-proof .proof-cards article {
  min-height: 158px;
}

.refined-testimonials {
  background:
    linear-gradient(rgba(5,9,11,.9), rgba(5,9,11,.9)),
    url("../images/selected/detail-roses-vase.jpg") center / cover;
  padding-top: clamp(4.2rem, 6vw, 6.2rem);
  padding-bottom: clamp(4.2rem, 6vw, 6.2rem);
}

.refined-testimonials .testimonial-grid {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.refined-journey {
  min-height: 390px;
}

.refined-journey h2 {
  font-size: clamp(3.3rem, 5.2vw, 6.1rem);
}

.refined-footer {
  padding-top: clamp(3.5rem, 6vw, 6rem);
}

.refined-footer::before {
  display: none;
}

.refined-footer .footer-grid {
  grid-template-columns: 1.25fr .72fr .82fr .62fr;
  align-items: start;
}

.refined-footer .footer-brand img {
  width: 132px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fine a {
  color: inherit;
}

@media (max-width: 1100px) {
  .refined-promises {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(5,9,11,.12);
  }
  .refined-promises article {
    background: var(--paper);
    border-right: 0;
    padding: 1.4rem;
  }
  .signature-showcase {
    grid-template-columns: 1fr;
  }
  .signature-showcase__image {
    min-height: 420px;
  }
  .refined-points {
    border-left: 0;
    border-top: 1px solid rgba(255,250,240,.18);
  }
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .home-header .nav {
    gap: 1rem;
  }
  .home-header .brand img {
    width: 104px;
  }
  .hero-count {
    display: none;
  }
}

@media (max-width: 560px) {
  .refined-hero .approved-hero__inner {
    width: calc(100% - 2rem);
  }
  .refined-hero h1 {
    font-size: clamp(3.65rem, 15vw, 5.6rem);
  }
  .refined-promises,
  .gallery-strip,
  .refined-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .refined-promises article {
    min-height: 0;
  }
  .gallery-strip figure {
    min-height: 310px;
  }
  .signature-showcase__image {
    min-height: 340px;
  }
  .signature-showcase__copy,
  .refined-points {
    padding: 3rem 1rem;
  }
}

/* Canonical final hero-slider sizing. Kept last to override older homepage experiments. */
.refined-home .refined-hero .approved-hero__copy {
  position: relative;
  max-width: min(1480px, 78vw) !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.refined-home .refined-hero .approved-hero__copy::before {
  display: none;
}

.refined-home .refined-hero h1 {
  max-width: 1420px !important;
  font-size: clamp(6rem, 7.35vw, 10.15rem) !important;
  line-height: 1.08 !important;
  text-wrap: wrap !important;
  margin-left: auto;
  margin-right: auto;
}

.refined-home .refined-hero::before {
  inset: -1px 0 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 11, .63) 0%, rgba(5, 9, 11, .46) 8rem, rgba(5, 9, 11, .37) 18rem),
    rgba(5, 9, 11, .37) !important;
}

.refined-home .hero-slider::after {
  content: "";
  position: absolute;
  inset: -1px 0 0;
  z-index: 6;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 9, 11, .41) 0%, rgba(5, 9, 11, .29) 7rem, rgba(5, 9, 11, .16) 15rem, rgba(5, 9, 11, 0) 28rem),
    rgba(5, 9, 11, .32);
}

.refined-home .refined-hero .eyebrow,
.refined-home .refined-hero h1,
.refined-home .refined-hero .lead,
.refined-home .refined-hero .hero-actions {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  animation: heroContentIn 1550ms var(--ease) forwards;
}

.refined-home .refined-hero .eyebrow {
  animation-delay: 120ms;
}

.refined-home .refined-hero h1 {
  animation-delay: 260ms;
}

.refined-home .refined-hero .lead {
  animation-delay: 420ms;
}

.refined-home .refined-hero .hero-actions {
  animation-delay: 600ms;
}

.refined-home .refined-hero h1 {
  text-shadow: 0 22px 70px rgba(0,0,0,.58), 0 2px 0 rgba(0,0,0,.12);
}

.refined-home .refined-hero .lead {
  max-width: 820px;
  margin: clamp(1.7rem, 2.4vw, 2.9rem) auto 0;
  color: rgba(255,250,240,.96);
  text-shadow: 0 14px 42px rgba(0,0,0,.66);
}

.refined-home .refined-hero .hero-actions {
  justify-content: center;
  gap: clamp(1rem, 1.6vw, 1.5rem);
  margin-top: clamp(2rem, 3vw, 3.2rem);
}

.refined-home .refined-hero .button {
  min-height: 68px;
  padding-left: 2rem;
  padding-right: 2rem;
  box-shadow: 0 22px 55px rgba(0,0,0,.32);
}

.refined-home .refined-hero .button.gold {
  min-width: 270px;
}

.refined-home .refined-hero .button.ghost {
  min-width: 245px;
  border-color: rgba(255,250,240,.64);
  background: rgba(5,9,11,.34);
}

@keyframes heroContentIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 560px) {
  .refined-home .refined-hero .approved-hero__copy {
    max-width: none !important;
  }
  .refined-home .refined-hero .approved-hero__copy::before {
    display: none;
  }
  .refined-home .refined-hero h1 {
    max-width: 100% !important;
    font-size: clamp(4rem, 15.4vw, 5.9rem) !important;
  }
  .refined-home .refined-hero .lead {
    max-width: 96%;
  }
  .refined-home .refined-hero .hero-actions {
    margin-top: 1.6rem;
  }
  .refined-home .refined-hero .button,
  .refined-home .refined-hero .button.gold,
  .refined-home .refined-hero .button.ghost {
    min-width: 0;
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .refined-home .refined-hero .eyebrow,
  .refined-home .refined-hero h1,
  .refined-home .refined-hero .lead,
  .refined-home .refined-hero .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
}

/* Final homepage hero/header hierarchy pass. */
.home-header {
  inset: 0 0 auto !important;
  width: 100%;
  min-height: 112px;
  padding: clamp(1rem, 1.45vw, 1.65rem) clamp(1.55rem, 3vw, 3.75rem) !important;
  background: linear-gradient(to bottom, rgba(5,9,11,.34), rgba(5,9,11,0)) !important;
}

.home-header .brand img {
  width: clamp(210px, 13.2vw, 285px) !important;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.5));
}

.home-header .nav {
  gap: clamp(1.35rem, 2.25vw, 2.8rem);
  font-size: clamp(.78rem, .58vw, .94rem);
  letter-spacing: .18em;
  font-weight: 800;
}

.home-header .nav .button {
  min-height: 58px;
  padding: 1rem 1.65rem;
  font-size: clamp(.78rem, .58vw, .92rem);
  opacity: 1;
  background: #884044 !important;
  border-color: rgba(255, 250, 240, .92) !important;
  color: var(--ivory) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.refined-home .refined-hero .eyebrow {
  font-size: clamp(.9rem, .72vw, 1.06rem);
  letter-spacing: .22em;
  margin-bottom: clamp(1.1rem, 1.8vw, 1.8rem);
  color: var(--ivory);
  text-shadow: 0 10px 28px rgba(0,0,0,.48);
}

.refined-home .refined-hero .lead {
  max-width: 980px;
  font-size: clamp(1.36rem, 1.38vw, 1.72rem);
  line-height: 1.5;
  margin-top: clamp(2rem, 2.7vw, 3.2rem);
}

.hero-title-word {
  display: inline;
  color: #884044;
  text-shadow: 0 12px 34px rgba(0,0,0,.5);
  transition: opacity .28s var(--ease), color .28s var(--ease);
}

.hero-title-word::after {
  content: ",";
}

.hero-title-word.is-leaving {
  opacity: 0;
}

.hero-title-word.is-changing {
  animation: heroWordFadeIn 520ms var(--ease) both;
}

@keyframes heroWordFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.refined-home .refined-hero .hero-actions {
  gap: clamp(1.2rem, 1.8vw, 1.8rem);
  margin-top: clamp(2.4rem, 3.35vw, 3.8rem);
}

.refined-home .refined-hero .button {
  min-height: 78px;
  padding: 1.25rem 2.35rem;
  font-size: clamp(.92rem, .7vw, 1.02rem);
  letter-spacing: .18em;
}

.refined-home .refined-hero .button.gold {
  min-width: 330px;
}

.refined-home .refined-hero .button.ghost {
  min-width: 310px;
}

.hero-count {
  display: none !important;
}

.hero-category {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 980px) {
  .home-header {
    min-height: 82px;
    padding: .85rem 1rem .55rem !important;
  }
  .home-header .brand img {
    width: clamp(112px, 28vw, 158px) !important;
  }
  .home-header .nav {
    font-size: .78rem;
  }
}

@media (max-width: 560px) {
  .home-header {
    inset: 0 0 auto !important;
  }
  .refined-home .refined-hero .eyebrow {
    font-size: .72rem;
    margin-bottom: .8rem;
  }
  .refined-home .refined-hero h1 {
    line-height: 1.14 !important;
  }
  .refined-home .refined-hero .lead {
    max-width: 100%;
    font-size: 1.04rem;
    margin-top: 1.1rem;
  }
  .refined-home .refined-hero .hero-actions {
    margin-top: 1.55rem;
  }
  .refined-home .refined-hero .button {
    min-height: 58px;
    font-size: .72rem;
  }
}

/* Premium inherited sitemap navigation. */
.mega-header {
  isolation: isolate;
}

.mega-header .brand {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
}

.mega-header .brand img {
  width: clamp(160px, 10.4vw, 230px) !important;
}

.mega-nav {
  position: static;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: clamp(.62rem, .82vw, 1.08rem) !important;
  font-size: clamp(.66rem, .52vw, .78rem) !important;
  letter-spacing: .13em !important;
}

.mega-nav > a,
.mega-nav summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255,250,240,.9);
  opacity: .92;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

.mega-nav > a:hover,
.mega-nav > a:focus-visible,
.nav-group:hover > summary,
.nav-group[open] > summary,
.nav-group > summary:focus-visible {
  color: var(--champagne);
  opacity: 1;
}

.nav-group {
  position: static;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "+";
  width: .8rem;
  height: .8rem;
  margin-left: .52rem;
  border: 0;
  color: rgba(242,221,185,.8);
  font-size: .95rem;
  line-height: .7;
  transform: translateY(-.02rem);
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.nav-group[open] summary::after,
.nav-group:hover summary::after {
  content: "-";
  transform: translateY(-.04rem);
}

.mega-panel {
  position: absolute;
  left: max(1.2rem, calc((100vw - 1320px) / 2));
  right: max(1.2rem, calc((100vw - 1320px) / 2));
  top: calc(100% - .4rem);
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 2fr);
  gap: clamp(1.4rem, 2.2vw, 2.4rem);
  padding: clamp(1.35rem, 2vw, 2rem);
  border: 1px solid rgba(242,221,185,.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(242,221,185,.16), transparent 34%),
    linear-gradient(135deg, rgba(13,10,10,.98), rgba(34,26,25,.96));
  box-shadow: 0 34px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0);
  pointer-events: none;
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s var(--ease);
}

.compact-panel {
  left: auto;
  right: clamp(1rem, 3vw, 3.75rem);
  width: min(760px, calc(100vw - 2.4rem));
}

.more-panel {
  grid-template-columns: minmax(240px, .58fr) minmax(0, 2.15fr);
}

.nav-group:hover .mega-panel,
.nav-group:focus-within .mega-panel,
.nav-group[open] .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.mega-intro {
  min-height: 100%;
  padding: clamp(1rem, 1.6vw, 1.35rem);
  border-radius: 6px;
  background: rgba(255,248,239,.055);
  border: 1px solid rgba(255,255,255,.08);
}

.mega-intro span,
.mega-columns p {
  display: block;
  margin: 0 0 .75rem;
  color: rgba(242,221,185,.7);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mega-intro strong {
  display: block;
  max-width: 14rem;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
}

.mega-intro p {
  max-width: 20rem;
  margin: 1rem 0 1.2rem;
  color: rgba(255,248,239,.66);
  font-size: .92rem;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
}

.mega-intro a {
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.mega-columns div,
.mega-links {
  display: grid;
  align-content: start;
  gap: .48rem;
}

.mega-links.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

.mega-columns a,
.mega-links a {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  min-height: 32px;
  padding: .18rem 0;
  color: rgba(255,250,240,.78);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: none;
  opacity: 1;
}

.mega-links a span {
  min-width: 1.4rem;
  color: rgba(242,221,185,.55);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.mega-columns a:hover,
.mega-columns a:focus-visible,
.mega-links a:hover,
.mega-links a:focus-visible,
.mega-intro a:hover,
.mega-intro a:focus-visible {
  color: var(--champagne);
}

.mega-nav > .button.gold {
  min-height: 48px !important;
  padding: .85rem 1.2rem !important;
  font-size: .68rem !important;
}

@media (max-width: 1180px) {
  .mega-header {
    min-height: 72px;
    padding: .62rem 1rem .5rem !important;
  }

  .mega-header .nav-toggle {
    display: block;
  }

  .mega-header .brand img {
    width: clamp(104px, 26vw, 146px) !important;
  }

  .mega-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    max-height: calc(100dvh - 76px);
    overflow: auto;
    padding: .85rem 1rem 1.25rem !important;
    background:
      radial-gradient(circle at 0 0, rgba(242,221,185,.12), transparent 36%),
      rgba(5,7,8,.985);
    border-bottom: 1px solid var(--line);
  }

  .site-header.open .mega-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: .35rem !important;
  }

  .mega-nav > a,
  .mega-nav summary {
    min-height: 46px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.07);
    font-size: .78rem;
  }

  .mega-panel,
  .compact-panel,
  .more-panel {
    position: static;
    width: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: .25rem 0 .9rem;
    padding: 1rem;
    border-radius: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-group[open] .mega-panel {
    display: grid;
  }

  .mega-intro {
    padding: .9rem;
  }

  .mega-intro strong {
    max-width: 100%;
    font-size: 1.7rem;
  }

  .mega-intro p {
    max-width: 100%;
  }

  .mega-columns,
  .mega-links.two-col {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .mega-columns div {
    gap: .24rem;
  }

  .mega-nav > .button.gold {
    width: 100%;
    margin-top: .55rem;
  }
}

/* Reference-aligned header and opening hero. */
.reference-header {
  --header-height: 252px;
  --header-pad-top: 24px;
  --header-pad-x: clamp(2rem, 2.8vw, 3.4rem);
  --header-logo-col: 330px;
  --header-top-row: 62px;
  --header-nav-row: 92px;
  --header-brand-y: 34px;
  --header-logo-width: clamp(220px, 13.7vw, 300px);
  --header-logo-max-height: 120px;
  --header-nav-gap: clamp(1.55rem, 2.05vw, 2.6rem);
  --header-nav-pad-top: 1.1rem;
  --header-nav-font: clamp(.98rem, .78vw, 1.2rem);
  --header-nav-letter: .25em;
  --header-link-height: 54px;
  --header-button-height: 62px;
  --header-button-width: 220px;
  --header-button-pad-y: 1rem;
  --header-button-pad-x: 1.65rem;
  --header-button-font: .77rem;
  --header-button-letter: .26em;
  position: absolute !important;
  inset: 0 0 auto !important;
  min-height: var(--header-height) !important;
  display: grid !important;
  grid-template-columns: var(--header-logo-col) minmax(0, 1fr);
  grid-template-rows: var(--header-top-row) var(--header-nav-row);
  align-items: start;
  gap: 0 1rem;
  padding: var(--header-pad-top) var(--header-pad-x) 0 !important;
  background:
    linear-gradient(180deg, rgba(1,5,7,.96) 0%, rgba(1,5,7,.72) 54%, rgba(1,5,7,0) 100%) !important;
  border-bottom: 0 !important;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform .54s cubic-bezier(.19, 1, .22, 1),
    opacity .3s ease,
    background .38s ease,
    border-color .38s ease,
    box-shadow .38s ease,
    backdrop-filter .38s ease;
  will-change: transform;
}

.reference-header.leaving-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-112%);
}

.reference-header.sticky-reference-header {
  position: fixed !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-112%);
}

.reference-header.sticky-reference-header .nav-toggle {
  display: none !important;
}

.reference-header.sticky-reference-header.is-visible,
.reference-header.sticky-reference-header.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reference-header.scrolled,
.reference-header.open {
  background: rgba(1,5,7,.94) !important;
  backdrop-filter: blur(18px);
}

.reference-header .brand {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: start;
  z-index: 4;
  transform: translateY(var(--header-brand-y));
}

.reference-header .brand img {
  width: var(--header-logo-width) !important;
  max-height: var(--header-logo-max-height) !important;
  filter: drop-shadow(0 24px 52px rgba(0,0,0,.58));
  transition: filter .38s ease;
}

.header-topline {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: start;
  min-height: 44px;
  color: rgba(255,250,240,.86);
  font-size: clamp(.68rem, .52vw, .78rem);
  letter-spacing: .04em;
  overflow: hidden;
  opacity: 1;
}

.header-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .62rem;
  line-height: 1;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: rgba(255,250,240,.88);
  text-transform: none;
  letter-spacing: .02em;
  white-space: nowrap;
}

.utility-link + .utility-link,
.utility-link + .social-icon,
.social-icon + .social-icon {
  padding-left: .62rem;
  border-left: 1px solid rgba(164,73,88,.38);
}

.utility-link span {
  color: #a44958;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.social-icon {
  display: inline-flex;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  color: rgba(255,250,240,.9);
  opacity: .95;
  transition: color .24s var(--ease), opacity .24s var(--ease), transform .24s var(--ease);
}

.social-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.utility-link:hover,
.utility-link:focus-visible,
.social-icon:hover,
.social-icon:focus-visible {
  color: #b66a70;
  opacity: 1;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
}

.reference-header .mega-nav {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--header-nav-gap) !important;
  padding-top: var(--header-nav-pad-top);
  font-family: "Cormorant Garamond", serif;
  font-size: var(--header-nav-font) !important;
  font-weight: 600;
  letter-spacing: var(--header-nav-letter) !important;
}

.reference-header .mega-nav > a,
.reference-header .mega-nav summary {
  min-height: var(--header-link-height);
  color: rgba(255,250,240,.92);
  opacity: 1;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

.reference-header .mega-nav > a:not(.button)::after {
  bottom: .32rem;
  height: 1px;
  background: #a44958;
}

.reference-header .mega-nav > a:hover,
.reference-header .mega-nav > a:focus-visible,
.reference-header .mega-nav > a.active,
.reference-header .nav-group:hover > summary,
.reference-header .nav-group[open] > summary,
.reference-header .nav-group > summary:focus-visible {
  color: #b66a70;
}

.reference-header .nav-group summary::after {
  content: "";
  width: .34rem;
  height: .34rem;
  margin-left: .58rem;
  border-right: 1px solid #b66a70;
  border-bottom: 1px solid #b66a70;
  transform: translateY(-.12rem) rotate(45deg);
}

.reference-header .nav-group[open] summary::after,
.reference-header .nav-group:hover summary::after {
  content: "";
  transform: translateY(.04rem) rotate(225deg);
}

.reference-header .mega-nav > .button.gold {
  min-height: var(--header-button-height) !important;
  min-width: var(--header-button-width);
  padding: var(--header-button-pad-y) var(--header-button-pad-x) !important;
  border-radius: 0;
  background: rgba(1,5,7,.22) !important;
  border-color: #884044 !important;
  color: #b66a70 !important;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: var(--header-button-font) !important;
  font-weight: 800;
  letter-spacing: var(--header-button-letter);
  transition:
    background .25s var(--ease),
    border-color .25s var(--ease),
    color .25s var(--ease);
}

.reference-header .mega-panel {
  top: calc(100% - 1.1rem);
}

.reference-header .services-panel {
  grid-template-columns: minmax(270px, .58fr) minmax(0, 2.8fr);
}

.reference-header .service-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reference-hero {
  min-height: 100dvh !important;
  background: #010507;
}

.reference-hero .hero-slider {
  filter: saturate(.9) contrast(1.05);
}

.reference-hero .hero-slide {
  object-position: center center;
}

.reference-hero .hero-slide:first-child {
  object-position: center 43%;
}

.refined-home .reference-hero::before {
  background:
    linear-gradient(90deg, rgba(0,4,5,.58) 0%, rgba(0,4,5,.18) 31%, rgba(0,4,5,.54) 100%),
    linear-gradient(180deg, rgba(0,4,5,.68) 0%, rgba(0,4,5,.21) 34%, rgba(0,4,5,.62) 100%),
    rgba(0,4,5,.28) !important;
}

.refined-home .reference-hero .hero-slider::after {
  background:
    radial-gradient(circle at 50% 46%, rgba(0,0,0,.03) 0%, rgba(0,0,0,.15) 42%, rgba(0,0,0,.48) 100%),
    rgba(0,4,5,.16);
}

.reference-hero .approved-hero__inner {
  min-height: 100dvh !important;
  padding-top: clamp(10.4rem, 13vw, 15.2rem) !important;
  padding-bottom: clamp(5rem, 7vw, 7rem) !important;
  align-items: center !important;
}

.refined-home .reference-hero .approved-hero__copy {
  max-width: min(1040px, 74vw) !important;
}

.refined-home .reference-hero .eyebrow {
  color: #b66a70;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(.88rem, .74vw, 1.06rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.hero-ornament {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: 112px;
  height: 22px;
  color: #a44958;
  font-size: 0;
  margin-bottom: clamp(1.8rem, 2.3vw, 2.6rem);
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(164,73,88,.62);
}

.hero-ornament i {
  width: 10px;
  height: 10px;
  border: 1px solid #a44958;
  transform: rotate(45deg);
}

.hero-ornament i::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(164,73,88,.62);
}

.refined-home .reference-hero h1 {
  max-width: 1060px !important;
  font-size: clamp(5.2rem, 5.65vw, 7.15rem) !important;
  line-height: .95 !important;
  letter-spacing: 0;
  color: #fff8ee;
  text-shadow: 0 24px 78px rgba(0,0,0,.72);
}

.reference-hero .hero-title-word {
  color: #a44958;
}

.refined-home .reference-hero .lead {
  max-width: 770px;
  margin-top: clamp(1.7rem, 2vw, 2.25rem);
  color: rgba(255,250,240,.9);
  font-size: clamp(1.06rem, 1.06vw, 1.34rem);
  line-height: 1.48;
}

.refined-home .reference-hero .hero-actions {
  margin-top: clamp(2rem, 2.8vw, 3rem);
  gap: 1.55rem;
}

.refined-home .reference-hero .button {
  min-height: 58px;
  border-radius: 3px;
  box-shadow: none;
  font-size: clamp(.78rem, .64vw, .9rem);
  letter-spacing: .22em;
}

.refined-home .reference-hero .button.gold {
  min-width: 300px;
  background: linear-gradient(180deg, #9d4851, #78323a) !important;
  border-color: rgba(255,250,240,.64) !important;
}

.refined-home .reference-hero .button.ghost {
  min-width: 285px;
  color: #b66a70;
  border-color: rgba(164,73,88,.86);
  background: rgba(1,5,7,.2);
}

.hero-rail {
  position: absolute;
  z-index: 8;
  left: clamp(1.5rem, 2vw, 2.4rem);
  top: 30%;
  bottom: 8%;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  width: 1.35rem;
  pointer-events: none;
}

.hero-rail::before,
.hero-rail::after {
  content: "";
  width: 1px;
  background: rgba(214,161,63,.58);
}

.hero-rail span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 1.2rem 0;
  color: rgba(255,250,240,.9);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.hero-rail i {
  position: absolute;
  bottom: 12%;
  width: 1.15rem;
  height: 1.15rem;
  color: #a44958;
}

.hero-rail i::before {
  content: "✥";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 1.02rem;
}

.reference-hero .hero-interface {
  left: 50%;
  right: auto;
  bottom: clamp(2.2rem, 3vw, 3.5rem);
  transform: translateX(-50%);
  gap: .75rem;
  z-index: 10;
}

.reference-hero .hero-dot {
  width: 52px;
  height: 3px;
  border-radius: 0;
  background: rgba(255,250,240,.38);
  border: 0;
}

.reference-hero .hero-dot.is-active {
  width: 76px;
  background: #a44958;
}

@media (min-width: 1181px) and (max-width: 1480px),
       (min-width: 1181px) and (max-height: 840px) {
  .reference-hero .approved-hero__inner {
    padding-top: clamp(8.8rem, 18dvh, 11.6rem) !important;
    padding-bottom: clamp(3.3rem, 5.5dvh, 4.8rem) !important;
  }

  .refined-home .reference-hero .approved-hero__copy {
    max-width: min(880px, 72vw) !important;
  }

  .refined-home .reference-hero .eyebrow {
    font-size: clamp(.72rem, .58vw, .9rem);
    letter-spacing: .3em;
    margin-bottom: .55rem;
  }

  .hero-ornament {
    width: 92px;
    height: 18px;
    margin-bottom: clamp(.85rem, 1.3vw, 1.35rem);
  }

  .hero-ornament::before,
  .hero-ornament::after {
    width: 34px;
  }

  .refined-home .reference-hero h1 {
    max-width: 900px !important;
    font-size: clamp(3.9rem, 5.05vw, 5.75rem) !important;
    line-height: .96 !important;
  }

  .refined-home .reference-hero .lead {
    max-width: 650px;
    margin-top: clamp(.9rem, 1.35vw, 1.25rem);
    font-size: clamp(.92rem, .86vw, 1.05rem);
    line-height: 1.42;
  }

  .refined-home .reference-hero .hero-actions {
    margin-top: clamp(1.15rem, 2dvh, 1.7rem);
    gap: 1.05rem;
  }

  .refined-home .reference-hero .button {
    min-height: 48px;
    padding: .78rem 1rem;
    font-size: clamp(.62rem, .55vw, .74rem);
    letter-spacing: .18em;
  }

  .refined-home .reference-hero .button.gold {
    min-width: clamp(220px, 19vw, 270px);
  }

  .refined-home .reference-hero .button.ghost {
    min-width: clamp(210px, 18vw, 255px);
  }

  .reference-hero .hero-interface {
    bottom: clamp(1.1rem, 2.1dvh, 1.8rem);
  }

  .reference-hero .hero-dot {
    width: 42px;
  }

  .reference-hero .hero-dot.is-active {
    width: 62px;
  }
}

@media (min-width: 1181px) and (max-height: 720px) {
  .reference-hero .approved-hero__inner {
    padding-top: clamp(8rem, 19dvh, 9.7rem) !important;
    padding-bottom: 2.6rem !important;
  }

  .refined-home .reference-hero h1 {
    font-size: clamp(3.35rem, 4.65vw, 4.8rem) !important;
  }

  .refined-home .reference-hero .lead {
    max-width: 590px;
    margin-top: .75rem;
    font-size: .88rem;
  }

  .refined-home .reference-hero .hero-actions {
    margin-top: .95rem;
  }
}

@media (max-width: 1760px) and (min-width: 1181px) {
  .reference-header {
    --header-pad-x: clamp(1.35rem, 2vw, 2.6rem);
    --header-logo-col: clamp(250px, 17vw, 300px);
    --header-logo-width: clamp(205px, 12.5vw, 260px);
    --header-nav-gap: clamp(.82rem, 1.08vw, 1.38rem);
    --header-nav-font: clamp(.82rem, .62vw, .98rem);
    --header-nav-letter: .19em;
    --header-button-width: clamp(152px, 10vw, 190px);
    --header-button-pad-x: .95rem;
    --header-button-font: .64rem;
    --header-button-letter: .2em;
  }
}

@media (max-width: 1480px) and (min-width: 1181px) {
  .reference-header {
    --header-pad-x: clamp(1rem, 1.45vw, 1.7rem);
    --header-logo-col: clamp(218px, 16vw, 246px);
    --header-logo-width: clamp(184px, 13vw, 220px);
    --header-nav-gap: clamp(.52rem, .82vw, .84rem);
    --header-nav-font: clamp(.72rem, .57vw, .82rem);
    --header-nav-letter: .14em;
    --header-button-width: clamp(132px, 9.8vw, 154px);
    --header-button-pad-x: .7rem;
    --header-button-font: .58rem;
    --header-button-letter: .16em;
  }

  .reference-header .nav-group summary::after {
    margin-left: .38rem;
  }
}

@media (max-width: 1320px) {
  .reference-header {
    --header-logo-col: clamp(188px, 15vw, 212px);
    --header-logo-width: clamp(164px, 13.5vw, 198px);
    --header-nav-gap: clamp(.42rem, .68vw, .64rem);
    --header-nav-font: clamp(.66rem, .54vw, .74rem);
    --header-nav-letter: .1em;
    --header-button-width: clamp(118px, 9.2vw, 134px);
    --header-button-pad-x: .55rem;
    --header-button-font: .52rem;
    --header-button-letter: .12em;
    grid-template-columns: var(--header-logo-col) minmax(0, 1fr);
    min-height: 252px !important;
  }

  .reference-header .brand img {
    width: var(--header-logo-width) !important;
  }

  .reference-header .brand {
    transform: translateY(59px);
  }

  .reference-header .mega-nav {
    gap: var(--header-nav-gap) !important;
    font-size: var(--header-nav-font) !important;
    letter-spacing: var(--header-nav-letter) !important;
  }

  .reference-header .mega-nav > .button.gold {
    min-width: var(--header-button-width);
  }
}

@media (max-width: 1180px) {
  .reference-header {
    min-height: 72px !important;
    display: flex !important;
    align-items: center;
    padding: .62rem 1rem .5rem !important;
  }

  .reference-header .header-topline {
    display: none;
  }

  .reference-header .brand img {
    width: clamp(104px, 26vw, 146px) !important;
  }

  .reference-header .brand {
    transform: none;
  }

  .reference-header .mega-nav {
    font-family: "Inter", sans-serif;
    letter-spacing: .13em !important;
    display: none !important;
    top: 76px !important;
    max-height: calc(100dvh - 76px) !important;
  }

  .reference-header.open .mega-nav {
    display: grid !important;
  }

  .reference-header .services-panel,
  .reference-header .service-directory {
    grid-template-columns: 1fr;
  }

  .reference-header .mega-nav > .button.gold {
    border-radius: 0;
  }

  .reference-hero .approved-hero__inner {
    padding-top: 7rem !important;
  }

  .hero-rail {
    display: none;
  }
}

@media (max-width: 680px) {
  .refined-home .reference-hero .approved-hero__copy {
    max-width: 94vw !important;
  }

  .refined-home .reference-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.1rem) !important;
    line-height: 1.04 !important;
  }

  .hero-ornament {
    margin-bottom: 1.15rem;
  }

  .refined-home .reference-hero .lead {
    font-size: 1rem;
  }

  .reference-hero .hero-interface {
    bottom: 1.2rem;
  }

  .reference-hero .hero-dot {
    width: 30px;
  }

  .reference-hero .hero-dot.is-active {
    width: 46px;
  }
}

/* Header2 mega menu concept treatment. */
.reference-header .services-panel {
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 0;
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.7rem;
  border-color: rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 92% 4%, rgba(255,255,255,.05), transparent 18rem),
    linear-gradient(135deg, rgba(10,12,13,.94), rgba(24,21,20,.95));
  box-shadow: 0 42px 110px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.08);
}

.reference-header .services-panel .mega-intro {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  min-height: 100%;
  padding: 0 1.55rem 0 0;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  background: transparent;
}

.reference-header .services-panel .mega-intro::after {
  content: "";
  width: 2rem;
  height: 1px;
  margin: .85rem 0 1rem;
  background: rgba(164,73,88,.75);
  grid-row: 3;
}

.reference-header .services-panel .mega-intro strong {
  max-width: 13rem;
  font-size: clamp(2rem, 2.05vw, 2.65rem);
  line-height: 1.02;
}

.reference-header .services-panel .mega-intro p {
  grid-row: 4;
  max-width: 15.5rem;
  margin: 0 0 1.15rem;
  color: rgba(255,250,240,.68);
  font-size: .94rem;
}

.reference-header .services-panel .mega-intro > a {
  grid-row: 5;
  align-self: start;
  width: max-content;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(164,73,88,.7);
}

.mega-intro-image {
  grid-row: 6;
  align-self: end;
  margin: 1.15rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}

.mega-intro-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
}

.reference-header .service-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(190px, .78fr);
  gap: 0;
  padding-left: 1.75rem;
}

.reference-header .service-directory > div {
  position: relative;
  padding: 0 clamp(1rem, 1.3vw, 1.7rem);
  border-right: 1px solid rgba(255,255,255,.12);
}

.reference-header .service-directory > div:first-child {
  padding-left: 0;
}

.reference-header .service-directory > div > p {
  position: relative;
  margin-top: 3.25rem;
  margin-bottom: 1.35rem;
  color: rgba(242,221,185,.86);
}

.reference-header .service-directory > div > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2.85rem;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(164,73,88,.88);
  transform: rotate(45deg);
}

.reference-header .service-directory > div:nth-child(2) > p::before {
  border-radius: 45% 45% 8px 45%;
}

.reference-header .service-directory > div:nth-child(3) > p::before {
  border-radius: 50%;
}

.reference-header .service-directory > div:nth-child(4) > p::before {
  border-radius: 2px;
}

.reference-header .service-directory a {
  min-height: 40px;
  color: rgba(255,250,240,.76);
  font-size: .91rem;
  line-height: 1.35;
}

.reference-header .service-directory a:hover,
.reference-header .service-directory a:focus-visible {
  color: #b66a70;
}

.mega-feature-card {
  display: grid;
  align-self: stretch;
  margin-left: 1.45rem;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}

.mega-feature-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  filter: saturate(.78) contrast(1.08) brightness(.74);
}

.mega-feature-card div {
  padding: 1.35rem 1.25rem 1.45rem;
}

.mega-feature-card div > span {
  display: block;
  width: 4.4rem;
  height: 1px;
  margin: 0 auto 1.1rem;
  background: linear-gradient(90deg, rgba(164,73,88,.65), transparent 44%, transparent 56%, rgba(164,73,88,.65));
}

.mega-feature-card h3 {
  margin: 0;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.02;
}

.mega-feature-card p {
  margin: .95rem 0 1.3rem;
  color: rgba(255,250,240,.62);
  font-size: .86rem;
  line-height: 1.55;
}

.mega-feature-card a {
  color: #b66a70;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reference-header .mega-intro a span,
.mega-feature-card a span {
  display: inline;
  min-width: 0;
  margin-left: .35rem;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* Clean services mega menu treatment. */
.reference-header .services-panel {
  left: max(1.2rem, calc((100vw - 1120px) / 2));
  right: max(1.2rem, calc((100vw - 1120px) / 2));
  max-width: 1120px;
  grid-template-columns: minmax(210px, .48fr) minmax(0, 1fr);
  gap: clamp(1.35rem, 2.2vw, 2.4rem);
  padding: clamp(1.15rem, 1.65vw, 1.55rem);
  border-color: rgba(164,73,88,.34);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(8,10,11,.97), rgba(19,16,17,.96)),
    rgba(5,7,8,.96);
  box-shadow: 0 30px 82px rgba(0,0,0,.54), inset 0 1px 0 rgba(255,255,255,.06);
}

.reference-header .services-panel .mega-intro {
  display: block;
  min-height: 0;
  padding: .15rem clamp(1.05rem, 1.5vw, 1.35rem) .15rem 0;
  border: 0;
  border-right: 1px solid rgba(255,250,240,.1);
  border-radius: 0;
  background: transparent;
}

.reference-header .services-panel .mega-intro::after {
  display: none;
}

.reference-header .services-panel .mega-intro > span {
  margin-bottom: .95rem;
  color: #b66a70;
}

.reference-header .services-panel .mega-intro strong {
  max-width: 13rem;
  font-size: clamp(1.55rem, 1.65vw, 2rem);
  line-height: 1.03;
}

.reference-header .services-panel .mega-intro p {
  max-width: 14.5rem;
  margin: 1rem 0 1.3rem;
  color: rgba(255,250,240,.64);
  font-size: .84rem;
  line-height: 1.58;
}

.reference-header .services-panel .mega-intro > a {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(164,73,88,.55);
  color: #b66a70;
}

.reference-header .service-directory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 1.35vw, 1.25rem);
  padding-left: 0;
}

.reference-header .service-directory > div {
  padding: 0;
  border-right: 0;
}

.reference-header .service-directory > div > p {
  margin: 0 0 .85rem;
  padding-bottom: .62rem;
  border-bottom: 1px solid rgba(164,73,88,.28);
  color: #b66a70;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.4;
}

.reference-header .service-directory > div > p::before,
.mega-intro-image,
.mega-feature-card {
  display: none !important;
}

.reference-header .service-directory a {
  min-height: 31px;
  color: rgba(255,250,240,.74);
  font-family: var(--sans);
  font-size: .81rem;
  font-weight: 500;
  line-height: 1.32;
}

.reference-header .service-directory a:hover,
.reference-header .service-directory a:focus-visible {
  color: #fff8ee;
}

@media (max-width: 1500px) {
  .reference-header .services-panel {
    left: 1.4rem;
    right: 1.4rem;
  }

  .reference-header .service-directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mega-feature-card {
    display: none;
  }
}

@media (max-width: 1180px) {
  .reference-header .services-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .reference-header .services-panel .mega-intro {
    padding: .9rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
  }

  .mega-intro-image,
  .mega-feature-card {
    display: none;
  }

  .reference-header .service-directory {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .reference-header .service-directory > div {
    padding: 0;
    border-right: 0;
  }

  .reference-header .service-directory > div > p {
    margin-top: 1.1rem;
  }

  .reference-header .service-directory > div > p::before {
    display: none;
  }
}

/* Approved spacious services mega menu concept. */
.reference-header .services-panel {
  left: clamp(1.4rem, 2.8vw, 3.4rem);
  right: clamp(1.4rem, 2.8vw, 3.4rem);
  top: calc(100% - 3rem);
  max-width: none;
  min-height: clamp(690px, 64vh, 780px);
  grid-template-columns: minmax(520px, 560px) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,250,240,.82);
  border-radius: 9px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.92), transparent 24rem),
    linear-gradient(135deg, #fffaf3 0%, #f4eee6 100%);
  color: #120d0d;
  box-shadow: 0 42px 110px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.88);
}

.reference-header .services-panel .mega-intro {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(1.25rem, 1.65vw, 1.95rem);
  min-height: 100%;
  padding: clamp(4.1rem, 5vw, 5.4rem) clamp(3.4rem, 4.2vw, 5rem);
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(18,13,13,.14);
  background: rgba(255,255,255,.22);
}

.reference-header .services-panel .mega-intro::before {
  content: "";
  position: absolute;
  right: -1.35rem;
  bottom: -1.55rem;
  width: 235px;
  height: 185px;
  opacity: .16;
  background: url("data:image/svg+xml,%3Csvg width='190' height='150' viewBox='0 0 190 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M46 134c18-34 33-59 74-83'/%3E%3Cpath d='M83 101c-17-2-33 10-43 28 19 4 37-5 43-28Z'/%3E%3Cpath d='M103 78c-20-9-40-2-55 16 20 11 41 5 55-16Z'/%3E%3Cpath d='M119 59c-9-19-2-39 18-52 9 22 1 41-18 52Z'/%3E%3Cpath d='M119 59c19-13 43-10 62 8-20 17-45 17-62-8Z'/%3E%3Cpath d='M95 82c6-21 24-34 49-34-2 25-21 40-49 34Z'/%3E%3Cpath d='M72 116c10-16 28-23 49-19-7 20-24 28-49 19Z'/%3E%3Cpath d='M116 55c-10 2-19 1-27-5 10-10 23-11 35-2'/%3E%3Cpath d='M32 145c10-15 23-26 38-32'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.reference-header .services-panel .mega-intro::after {
  display: none;
}

.reference-header .services-panel .mega-intro > span {
  display: block;
  margin: 0;
  color: #884044;
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.reference-header .services-panel .mega-intro > a span {
  display: none !important;
  margin-left: 0;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.reference-header .services-panel .mega-intro strong {
  display: block;
  max-width: 28rem;
  color: #100c0c;
  font-size: clamp(2.45rem, 2.35vw, 3.25rem);
  line-height: .98;
}

.reference-header .services-panel .mega-intro p {
  max-width: 18.5rem;
  margin: 0;
  color: rgba(18,13,13,.72);
  font-size: 1.08rem;
  line-height: 1.55;
}

.reference-header .services-panel .mega-intro > a {
  display: inline-flex;
  align-items: center;
  width: auto;
  padding-bottom: 0;
  border-bottom: 0;
  color: #884044;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .2em;
  white-space: nowrap;
}

.reference-header .services-panel .mega-intro > a::after,
.reference-header .services-panel .mega-intro > a:hover::after,
.reference-header .services-panel .mega-intro > a:focus-visible::after {
  display: none !important;
}

.reference-header .services-panel .mega-intro > a:hover,
.reference-header .services-panel .mega-intro > a:focus-visible {
  border-bottom: 0;
  text-decoration: none;
}

.reference-header .service-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  height: 100%;
  padding: clamp(4.1rem, 4.8vw, 5.35rem) clamp(3.4rem, 4.5vw, 5.35rem) clamp(2.2rem, 2.6vw, 3rem);
}

.reference-header .service-directory > div {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  gap: .62rem;
  min-width: 0;
  padding: 0 clamp(1.7rem, 2.15vw, 3rem);
  padding-bottom: 4.8rem;
  border-left: 1px solid rgba(18,13,13,.13);
}

.reference-header .service-directory > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.reference-header .service-directory > div > p {
  display: grid;
  gap: 1.45rem;
  min-height: 104px;
  margin: 0 0 1.45rem;
  padding: 0;
  border: 0;
  color: #884044;
  font-family: var(--sans);
  font-size: clamp(.84rem, .72vw, 1rem);
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.reference-header .service-directory > div > p::before {
  content: "";
  position: static;
  display: block !important;
  width: 66px;
  height: 66px;
  border: 0;
  transform: none;
  background: center / contain no-repeat;
}

.reference-header .service-directory > div:nth-child(1) > p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 24h19v8H21z'/%3E%3Cpath d='M24 32l-4 16'/%3E%3Cpath d='M37 32l4 16'/%3E%3Cpath d='M19 48h8M34 48h9'/%3E%3Cpath d='M19 24l-2-12c-.3-2 1-3 3-3h16c2 0 3.3 1 3 3l-2 12'/%3E%3Cpath d='M20 18h18'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .service-directory > div:nth-child(2) > p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='29' cy='31' r='13'/%3E%3Ccircle cx='29' cy='31' r='8'/%3E%3Cpath d='M10 15v28M15 15v28M10 28h5'/%3E%3Cpath d='M45 15v12c0 4 3 7 3 11v5M50 15v28'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .service-directory > div:nth-child(3) > p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M29 50V31'/%3E%3Cpath d='M29 31c-9-4-11-12-6-21 8 5 11 13 6 21Z'/%3E%3Cpath d='M29 31c9-4 11-12 6-21-8 5-11 13-6 21Z'/%3E%3Cpath d='M29 31c-10 2-17-3-20-13 10-1 18 4 20 13Z'/%3E%3Cpath d='M29 31c10 2 17-3 20-13-10-1-18 4-20 13Z'/%3E%3Cpath d='M20 49c5-5 13-5 18 0'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .service-directory > div:nth-child(4) > p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 17h34v25H12z'/%3E%3Cpath d='M13 18l16 14 16-14'/%3E%3Cpath d='M13 41l13-12M45 41L32 29'/%3E%3Cpath d='M19 12h20'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .mega-nav .service-directory a {
  min-height: 34px;
  color: rgba(18,13,13,.84) !important;
  font-family: var(--serif);
  font-size: clamp(1.08rem, .78vw, 1.22rem);
  font-weight: 500;
  line-height: 1.3;
}

.reference-header .mega-nav .service-directory a:hover,
.reference-header .mega-nav .service-directory a:focus-visible {
  color: #884044 !important;
}

.reference-header .mega-nav .service-directory a.is-current-page,
.reference-header .mega-nav .service-directory a[aria-current="page"],
.reference-header .mega-panel:not(.services-panel) .mega-columns a.is-current-page,
.reference-header .mega-panel:not(.services-panel) .mega-columns a[aria-current="page"],
.reference-header .compact-panel .mega-links a.is-current-page,
.reference-header .compact-panel .mega-links a[aria-current="page"] {
  color: #884044 !important;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: #884044;
  text-decoration-thickness: 1px;
  text-underline-offset: .26em;
}

.reference-header .nav-group.contains-current-page > summary {
  color: #b66a70;
}

.reference-header .mega-nav .service-directory .mega-view-all {
  position: absolute;
  left: clamp(1.7rem, 2.15vw, 3rem);
  bottom: 1.55rem;
  display: inline-flex;
  width: max-content;
  min-height: 0;
  margin-top: 0;
  color: #884044 !important;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.reference-header .mega-nav .service-directory > div:first-child .mega-view-all {
  left: 0;
}

.reference-header .mega-nav .service-directory .mega-view-all span {
  margin-left: .35rem;
}

.mega-intro-image,
.mega-feature-card {
  display: none !important;
}

@media (max-width: 1500px) {
  .reference-header .services-panel {
    left: 1.4rem;
    right: 1.4rem;
    min-height: 0;
    grid-template-columns: minmax(440px, 500px) minmax(0, 1fr);
  }

  .reference-header .service-directory {
    padding: 3.05rem 2rem 2.85rem;
  }

  .reference-header .service-directory > div {
    gap: .45rem;
    padding-inline: 1.35rem;
  }

  .reference-header .services-panel .mega-intro {
    padding: 3.35rem 2.85rem;
    gap: 1.05rem;
  }

  .reference-header .services-panel .mega-intro strong {
    max-width: 25rem;
    font-size: clamp(2.2rem, 2.65vw, 2.85rem);
  }

  .reference-header .services-panel .mega-intro p {
    font-size: .98rem;
  }

  .reference-header .service-directory > div > p {
    gap: 1rem;
    min-height: 96px;
    margin-bottom: 1rem;
    font-size: .78rem;
  }

  .reference-header .service-directory > div > p::before {
    width: 55px;
    height: 55px;
  }

  .reference-header .mega-nav .service-directory a {
    min-height: 29px;
    font-size: 1rem;
  }

  .reference-header .mega-nav .service-directory .mega-view-all {
    margin-top: 1.2rem;
    font-size: .68rem;
  }
}

@media (max-width: 1180px) {
  .reference-header .services-panel {
    grid-template-columns: 1fr;
    color: var(--ivory);
    background: linear-gradient(135deg, rgba(8,10,11,.97), rgba(19,16,17,.96));
  }

  .reference-header .services-panel .mega-intro {
    min-height: 0;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255,250,240,.12);
  }

  .reference-header .services-panel .mega-intro::before {
    display: none;
  }

  .reference-header .services-panel .mega-intro strong,
  .reference-header .mega-nav .service-directory a {
    color: var(--ivory) !important;
  }

  .reference-header .services-panel .mega-intro p {
    color: rgba(255,250,240,.68);
  }

  .reference-header .service-directory {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .reference-header .service-directory > div {
    grid-template-rows: none;
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid rgba(255,250,240,.1);
  }

  .reference-header .service-directory > div > p {
    min-height: 0;
  }

  .reference-header .service-directory > div > p::before {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .reference-header .mega-panel,
  .reference-header .services-panel,
  .reference-header .mega-panel:not(.services-panel) {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    translate: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin: .15rem 0 .65rem !important;
    padding: 0 !important;
    overflow: hidden;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255,250,240,.9) !important;
    box-shadow: none !important;
  }

  .reference-header .mega-panel .mega-intro,
  .reference-header .services-panel .mega-intro,
  .reference-header .mega-panel:not(.services-panel) .mega-intro {
    display: none !important;
    min-height: 0 !important;
    padding: 1rem 1rem .95rem !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,250,240,.1) !important;
    background: rgba(255,255,255,.035) !important;
  }

  .reference-header .mega-panel .mega-intro::before,
  .reference-header .mega-panel .mega-intro::after {
    display: none !important;
  }

  .reference-header .mega-panel .mega-intro > span {
    margin-bottom: .5rem !important;
    color: #b66a70 !important;
    font-size: .62rem !important;
    letter-spacing: .18em !important;
  }

  .reference-header .mega-panel .mega-intro strong {
    display: block;
    max-width: 100% !important;
    color: var(--ivory) !important;
    font-size: 1.55rem !important;
    line-height: 1.05 !important;
  }

  .reference-header .mega-panel .mega-intro p {
    max-width: 100% !important;
    margin: .7rem 0 0 !important;
    color: rgba(255,250,240,.66) !important;
    font-size: .86rem !important;
    line-height: 1.5 !important;
  }

  .reference-header .mega-panel .mega-intro > a {
    display: inline-flex !important;
    margin-top: .9rem !important;
    color: #b66a70 !important;
    font-size: .66rem !important;
    letter-spacing: .18em !important;
  }

  .reference-header .service-directory,
  .reference-header .mega-panel:not(.services-panel) .mega-columns {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    padding: .05rem 0 .45rem !important;
  }

  .reference-header .service-directory > div,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div {
    display: grid !important;
    position: static !important;
    height: auto !important;
    gap: 0 !important;
    padding: .78rem 0 !important;
    border-left: 0 !important;
    border-top: 0 !important;
  }

  .reference-header .service-directory > div.is-mobile-category-open,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open {
    gap: .22rem !important;
    margin-inline: 0 !important;
    padding: .82rem 0 .95rem !important;
    background: transparent !important;
  }

  .reference-header .service-directory > div:first-child,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div:first-child {
    border-top: 0 !important;
  }

  .reference-header .service-directory > div > p,
  .reference-header .mega-panel:not(.services-panel) .mega-columns p {
    position: relative;
    min-height: 0 !important;
    margin: 0 !important;
    padding-right: 2rem !important;
    color: #b66a70 !important;
    font-family: var(--sans) !important;
    font-size: .68rem !important;
    letter-spacing: .18em !important;
    line-height: 1.25 !important;
    cursor: pointer;
  }

  .reference-header .service-directory > div > p::before,
  .reference-header .mega-panel:not(.services-panel) .mega-columns p::before {
    display: none !important;
  }

  .reference-header .service-directory > div > p::after,
  .reference-header .mega-panel:not(.services-panel) .mega-columns p::after {
    content: "";
    position: absolute;
    right: .15rem;
    top: .12rem;
    width: .46rem;
    height: .46rem;
    border-right: 1px solid #b66a70;
    border-bottom: 1px solid #b66a70;
    transform: rotate(45deg);
    transition: transform .24s var(--ease);
  }

  .reference-header .service-directory > div.is-mobile-category-open > p::after,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open > p::after {
    transform: translateY(.2rem) rotate(225deg);
  }

  .reference-header .mega-nav .service-directory a,
  .reference-header .mega-panel:not(.services-panel) .mega-columns a {
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    color: rgba(255,250,240,.84) !important;
    font-family: var(--serif) !important;
    font-size: .94rem !important;
    line-height: 1.18 !important;
    transition: max-height .28s var(--ease), opacity .22s var(--ease), margin .28s var(--ease);
  }

  .reference-header .mega-nav .service-directory a.is-current-page,
  .reference-header .mega-nav .service-directory a[aria-current="page"],
  .reference-header .mega-panel:not(.services-panel) .mega-columns a.is-current-page,
  .reference-header .mega-panel:not(.services-panel) .mega-columns a[aria-current="page"] {
    color: #c97882 !important;
    font-weight: 600 !important;
    text-decoration-line: underline;
    text-decoration-color: #c97882;
    text-decoration-thickness: 1px;
    text-underline-offset: .24em;
  }

  .reference-header .service-directory > div.is-mobile-category-open a:not(.mega-view-all),
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open a:not(.mega-view-all) {
    max-height: 2.7rem !important;
    opacity: 1 !important;
    margin-top: .38rem !important;
  }

  .reference-header .mega-nav .service-directory .mega-view-all,
  .reference-header .mega-panel:not(.services-panel) .mega-columns .mega-view-all {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .reference-header .nav-toggle {
    position: relative;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    gap: 5px;
    border: 1px solid rgba(164,73,88,.48);
    border-radius: 999px;
    background: rgba(7,10,11,.72);
    color: rgba(255,250,240,.92);
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
  }

  .reference-header .nav-toggle::before,
  .reference-header .nav-toggle::after {
    content: none;
  }

  .reference-header .nav-toggle span {
    position: relative;
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform .24s var(--ease), opacity .18s var(--ease);
  }

  .reference-header.open .nav-toggle {
    border-color: rgba(255,250,240,.28);
    background: rgba(7,10,11,.88);
  }

  .reference-header.open .nav-toggle span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .reference-header.open .nav-toggle span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .reference-header .nav-group summary::after,
  .reference-header .service-directory > div > p::after,
  .reference-header .mega-panel:not(.services-panel) .mega-columns p::after {
    width: .52rem;
    height: .52rem;
    border-right: 1px solid #b66a70;
    border-bottom: 1px solid #b66a70;
    transform: rotate(45deg) !important;
  }

  .reference-header .nav-group[open] > summary::after,
  .reference-header .service-directory > div.is-mobile-category-open > p::after,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open > p::after {
    transform: translateY(.22rem) rotate(225deg) !important;
  }

  .reference-header .mega-nav > a,
  .reference-header .mega-nav summary {
    min-height: 42px !important;
    font-size: .76rem !important;
    letter-spacing: .18em !important;
    border-bottom-color: rgba(255,255,255,.045) !important;
  }

  .reference-header .nav-group[open] > summary {
    position: sticky;
    top: 0;
    z-index: 3;
    background: transparent !important;
    box-shadow: none;
    border-bottom-color: rgba(164,73,88,.22) !important;
  }

  .reference-header .service-directory > div.is-mobile-category-open > p,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open > p {
    position: sticky;
    top: 42px;
    z-index: 2;
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
    background: transparent !important;
  }
}

/* Approved shared mega menu style for Weddings, Events and Packages. */
.reference-header .mega-panel:not(.services-panel) {
  left: 50%;
  right: auto;
  top: calc(100% - 3rem);
  width: min(calc(100vw - clamp(2.8rem, 5.6vw, 6.8rem)), 1500px);
  max-width: calc(100vw - 2.8rem);
  min-height: clamp(470px, 48vh, 620px);
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,250,240,.82);
  border-radius: 9px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.92), transparent 24rem),
    linear-gradient(135deg, #fffaf3 0%, #f4eee6 100%);
  color: #120d0d;
  box-shadow: 0 42px 110px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: none;
  translate: -50% 0;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(1.1rem, 1.45vw, 1.7rem);
  min-height: 100%;
  padding: clamp(3.5rem, 4.6vw, 5rem) clamp(3.1rem, 4vw, 4.7rem);
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(18,13,13,.14);
  border-radius: 0;
  background: rgba(255,255,255,.22);
}

.reference-header .mega-panel:not(.services-panel) .mega-intro::before {
  content: "";
  position: absolute;
  right: -1.35rem;
  bottom: -1.55rem;
  width: 210px;
  height: 165px;
  opacity: .14;
  background: url("data:image/svg+xml,%3Csvg width='190' height='150' viewBox='0 0 190 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M46 134c18-34 33-59 74-83'/%3E%3Cpath d='M83 101c-17-2-33 10-43 28 19 4 37-5 43-28Z'/%3E%3Cpath d='M103 78c-20-9-40-2-55 16 20 11 41 5 55-16Z'/%3E%3Cpath d='M119 59c-9-19-2-39 18-52 9 22 1 41-18 52Z'/%3E%3Cpath d='M119 59c19-13 43-10 62 8-20 17-45 17-62-8Z'/%3E%3Cpath d='M95 82c6-21 24-34 49-34-2 25-21 40-49 34Z'/%3E%3Cpath d='M72 116c10-16 28-23 49-19-7 20-24 28-49 19Z'/%3E%3Cpath d='M32 145c10-15 23-26 38-32'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro::after {
  content: "";
  display: block;
  width: 62px;
  height: 1px;
  background: #884044;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro > span {
  display: block;
  margin: 0;
  color: #884044;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro strong {
  max-width: 28rem;
  color: #100c0c;
  font-size: clamp(2.35rem, 2.35vw, 3.15rem);
  line-height: .98;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro p {
  max-width: 19rem;
  margin: 0;
  color: rgba(18,13,13,.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro > a {
  width: max-content;
  padding: 0;
  border: 0;
  color: #884044;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .2em;
  white-space: nowrap;
}

.reference-header .mega-panel:not(.services-panel) .mega-intro > a::after,
.reference-header .mega-panel:not(.services-panel) .mega-intro > a span {
  display: none !important;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  height: 100%;
  padding: clamp(3.6rem, 4.6vw, 5rem) clamp(3.2rem, 4.2vw, 5rem) clamp(2.8rem, 3.2vw, 3.4rem);
}

.reference-header .mega-panel:not(.services-panel) .mega-columns > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: .7rem;
  min-width: 0;
  padding: 0 clamp(1.8rem, 2.3vw, 3rem);
  border-left: 1px solid rgba(18,13,13,.13);
}

.reference-header .mega-panel:not(.services-panel) .mega-columns > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns p {
  display: grid;
  gap: 1.35rem;
  min-height: 116px;
  margin: 0 0 1.15rem;
  color: #884044;
  font-family: var(--sans);
  font-size: clamp(.86rem, .74vw, 1rem);
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns p::before {
  content: "";
  display: block;
  width: 62px;
  height: 62px;
  background: center / contain no-repeat;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns > div:nth-child(1) p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 10c2.5 8 6.5 12 15 14-8.5 2-12.5 6-15 14-2.5-8-6.5-12-15-14 8.5-2 12.5-6 15-14Z'/%3E%3Cpath d='M31 38v13'/%3E%3Cpath d='M23 51h16'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .mega-panel:not(.services-panel) .mega-columns > div:nth-child(2) p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 25h38'/%3E%3Cpath d='M18 25v22M44 25v22'/%3E%3Cpath d='M20 18h22l4 7H16l4-7Z'/%3E%3Cpath d='M15 47h34'/%3E%3Cpath d='M24 31h14M24 37h14'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .mega-panel:not(.services-panel) .mega-columns > div:nth-child(3) p::before {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23884044' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 48V29'/%3E%3Cpath d='M31 29c-8-3-11-10-7-18 8 4 11 11 7 18Z'/%3E%3Cpath d='M31 29c8-3 11-10 7-18-8 4-11 11-7 18Z'/%3E%3Cpath d='M31 29c-9 2-15-2-19-11 9-1 16 3 19 11Z'/%3E%3Cpath d='M22 49c6-5 13-5 19 0'/%3E%3C/g%3E%3C/svg%3E");
}

.reference-header .mega-panel:not(.services-panel) .mega-columns a {
  min-height: 34px;
  color: rgba(18,13,13,.84) !important;
  font-family: var(--serif);
  font-size: clamp(1.08rem, .78vw, 1.22rem);
  font-weight: 500;
  line-height: 1.3;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns a:hover,
.reference-header .mega-panel:not(.services-panel) .mega-columns a:focus-visible {
  color: #884044 !important;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns .mega-view-all {
  display: inline-flex;
  align-self: flex-start;
  width: max-content;
  min-height: 0;
  margin-top: auto;
  color: #884044 !important;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.reference-header .mega-panel:not(.services-panel) .mega-columns .mega-view-all span {
  margin-left: .35rem;
}

.reference-header .mega-nav > details:nth-of-type(2) .mega-panel:not(.services-panel) .mega-columns .mega-view-all {
  transform: translateY(25px);
}

.reference-header .compact-panel {
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr) !important;
}

.reference-header .compact-panel .mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: clamp(1rem, 1.4vw, 1.5rem);
  height: 100%;
  padding: clamp(3.6rem, 4.6vw, 5rem) clamp(3.2rem, 4.2vw, 5rem);
}

.reference-header .compact-panel .mega-links.two-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reference-header .compact-panel .mega-links a {
  min-height: 72px;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(18,13,13,.13);
  color: rgba(18,13,13,.86) !important;
  font-family: var(--serif);
  font-size: clamp(1.12rem, .9vw, 1.35rem);
  line-height: 1.25;
}

.reference-header .compact-panel .mega-links a span {
  color: #884044;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 900;
}

@media (max-width: 1500px) {
  .reference-header .mega-panel:not(.services-panel) {
    left: 50%;
    right: auto;
    width: calc(100vw - 2.8rem);
    min-height: 0;
    grid-template-columns: minmax(390px, 470px) minmax(0, 1fr);
  }

  .reference-header .mega-panel:not(.services-panel) .mega-intro {
    padding: 3.3rem 2.75rem;
  }

  .reference-header .mega-panel:not(.services-panel) .mega-columns,
  .reference-header .compact-panel .mega-links {
    padding: 3rem 2rem 2.8rem;
  }

  .reference-header .mega-panel:not(.services-panel) .mega-columns > div {
    padding-inline: 1.45rem;
  }
}

/* Temporary tracker removal and hero recentering. */
.scroll-meter,
.hero-rail,
.hero-category {
  display: none !important;
}

.reference-hero .approved-hero__inner {
  min-height: 100dvh !important;
  display: grid !important;
  place-items: center !important;
  padding-top: clamp(8rem, 9.5vw, 10.5rem) !important;
  padding-bottom: clamp(5rem, 6vw, 6.8rem) !important;
}

.refined-home .reference-hero .approved-hero__copy {
  transform: translateY(clamp(-3rem, -4.2vh, -2rem));
}

.refined-home .reference-hero {
  isolation: isolate;
  overflow: clip;
}

.refined-home .reference-hero .hero-slider {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #05090b;
}

.refined-home .reference-hero .hero-slide,
.refined-home .reference-hero .hero-slide:first-child,
.refined-home .reference-hero .hero-slide:first-child.is-active {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  transform: none !important;
  will-change: opacity;
  transition: opacity 1900ms var(--ease), filter 1900ms var(--ease);
}

.refined-home > section:not(.reference-hero) {
  position: relative;
  z-index: 4;
}

@media (max-width: 1180px) {
  .reference-hero .approved-hero__inner {
    padding-top: 6.4rem !important;
    padding-bottom: 4.2rem !important;
  }

  .refined-home .reference-hero .approved-hero__copy {
    transform: none;
  }
}

/* Premium agency-style vision section. */
.refined-home .vision-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.92), rgba(248,244,236,.72) 36%, rgba(244,238,228,.86) 72%),
    linear-gradient(180deg, #fbf8f1 0%, #f3ede3 100%);
  color: #090b0b;
  padding: clamp(12.2rem, 14vw, 15rem) clamp(1.2rem, 4vw, 4.8rem) clamp(6.2rem, 8vw, 8.8rem);
  text-align: center;
  isolation: isolate;
}

.refined-home .vision-section::before {
  display: none;
}

.refined-home .vision-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(136,64,68,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(136,64,68,.025) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at 50% 36%, transparent 0 24rem, black 48rem);
  opacity: .45;
  pointer-events: none;
  z-index: -1;
}

.refined-home .vision-section .wrap {
  width: min(1780px, 100%);
  margin-inline: auto;
}

.refined-home .vision-section .eyebrow {
  color: #884044;
  font-size: clamp(.88rem, .72vw, 1.02rem);
  font-weight: 800;
  letter-spacing: .48em;
  margin: 0 auto 1rem;
}

.refined-home .vision-section .eyebrow::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 1.15rem auto 0;
  background: #884044;
}

.refined-home .vision-section h2 {
  font-size: clamp(4.4rem, 5.25vw, 6.65rem);
  line-height: .96;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.refined-home .vision-section .section-lead {
  max-width: 850px;
  margin: clamp(1.2rem, 1.8vw, 1.7rem) auto 0;
  color: rgba(5,7,8,.66);
  font-size: clamp(1.05rem, 1vw, 1.25rem);
  line-height: 1.7;
}

.refined-home .refined-promises {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: clamp(3.45rem, 4.55vw, 4.8rem) auto 0;
  padding: 0 clamp(.85rem, 1.4vw, 1.35rem) clamp(2.7rem, 4vw, 4rem);
  background: rgba(255,255,255,.76);
  box-shadow: 0 34px 90px rgba(55,39,24,.07);
}

.refined-home .refined-promises article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0;
  padding: 0 clamp(1.2rem, 1.85vw, 2rem);
  min-height: 468px;
}

.refined-home .refined-promises article + article {
  border-left: 1px solid rgba(136,64,68,.24);
}

.refined-home .refined-promises figure {
  width: 100%;
  height: clamp(136px, 8.65vw, 168px);
  margin: 0 0 0;
  overflow: hidden;
  background: #ece3d5;
}

.refined-home .refined-promises figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05) brightness(1.03);
  transform: scale(1.01);
}

.refined-home .refined-promises span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-top: -34px;
  border: 1px solid #884044;
  border-radius: 50%;
  background: #884044;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 14px 30px rgba(136,64,68,.2);
  z-index: 1;
}

.refined-home .promise-icon {
  width: 42px;
  height: 42px;
  margin-top: clamp(1.55rem, 2.1vw, 2.15rem);
  color: #884044;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refined-home .refined-promises h3 {
  margin: clamp(1.6rem, 2vw, 2rem) 0 0;
  min-height: 2.6em;
  color: #070909;
  font-size: clamp(.9rem, .78vw, 1.03rem);
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.24;
  text-transform: uppercase;
}

.refined-home .refined-promises i {
  display: block;
  width: 40px;
  height: 1px;
  margin: clamp(.85rem, 1.1vw, 1.05rem) auto clamp(1.55rem, 1.8vw, 1.9rem);
  background: #884044;
}

.refined-home .refined-promises p {
  max-width: 235px;
  margin: 0 auto;
  color: rgba(5,7,8,.62);
  font-size: clamp(.96rem, .86vw, 1.08rem);
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .refined-home .refined-promises {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }
  .refined-home .refined-promises article {
    min-height: 460px;
    padding-bottom: 2.6rem;
  }
  .refined-home .refined-promises article + article {
    border-left: 0;
  }
  .refined-home .refined-promises article:nth-child(even) {
    border-left: 1px solid rgba(136,64,68,.24);
  }
  .refined-home .refined-promises article:nth-child(n+3) {
    border-top: 1px solid rgba(136,64,68,.2);
  }
}

@media (max-width: 680px) {
  .refined-home .vision-section {
    padding-inline: 1rem;
  }
  .refined-home .vision-section h2 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }
  .refined-home .refined-promises {
    grid-template-columns: 1fr;
  }
  .refined-home .refined-promises article,
  .refined-home .refined-promises article:nth-child(even),
  .refined-home .refined-promises article:nth-child(n+3) {
    border-left: 0;
    border-top: 1px solid rgba(164,73,88,.22);
  }
  .refined-home .refined-promises article:first-child {
    border-top: 0;
  }
}

/* Premium cinematic signature section. */
.refined-home .signature-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: clamp(680px, 48vw, 840px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(5,11,13,.98), rgba(5,11,13,.82) 43%, rgba(5,11,13,.88) 100%),
    url("../images/curated/event-hire-tablescape-original-full.jpg");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
  color: var(--ivory);
  border-top: 0;
  border-bottom: 0;
}

.refined-home .signature-showcase::before {
  display: none;
}

.refined-home .signature-showcase::after {
  display: none;
}

.refined-home .signature-showcase__background {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.8rem, 3vw, 4rem);
  width: min(1780px, 100%);
  min-height: inherit;
  margin-inline: auto;
  padding: clamp(4.6rem, 7vw, 7.5rem) clamp(3rem, 7vw, 8rem);
  background: none;
}

.refined-home .signature-showcase__background::before {
  display: none;
}

.refined-home .signature-showcase__image {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  margin: 0;
  min-height: inherit;
  overflow: hidden;
}

.refined-home .signature-showcase__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  filter: saturate(.96) contrast(1.08) brightness(.78);
  transform: scale(1.02);
  transition: opacity 1.15s var(--ease), transform 5.2s var(--ease);
}

.refined-home .signature-showcase__image img.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.refined-home .signature-showcase__copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 0;
}

.refined-home .signature-showcase__copy::after {
  display: none;
}

.refined-home .signature-showcase__copy .eyebrow {
  margin: 0 0 clamp(1.4rem, 2vw, 2.1rem);
  color: #a44958;
  font-size: clamp(.76rem, .62vw, .9rem);
  font-weight: 800;
  letter-spacing: .36em;
}

.refined-home .signature-showcase__copy h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(4.2rem, 4.95vw, 6.35rem);
  line-height: .92;
  letter-spacing: 0;
}

.refined-home .signature-showcase__copy > i {
  display: block;
  width: 58px;
  height: 2px;
  margin: clamp(1.55rem, 2.1vw, 2.1rem) 0 clamp(1.65rem, 2.15vw, 2.3rem);
  background: #a44958;
}

.refined-home .signature-showcase__copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255,250,240,.82);
  font-size: clamp(1.03rem, .98vw, 1.22rem);
  line-height: 1.65;
}

.refined-home .signature-link {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 260px;
  min-height: 60px;
  margin-top: clamp(1.9rem, 2.55vw, 2.8rem);
  padding: 1rem 1.8rem;
  border: 1px solid rgba(164,73,88,.72);
  color: #a44958;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.refined-home .signature-link:hover {
  background: #a44958;
  color: #05090b;
  transform: translateY(-2px);
}

.refined-home .refined-points {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  justify-self: end;
  width: min(100%, 820px);
  gap: clamp(2.5rem, 4vw, 4.4rem) clamp(2rem, 3vw, 3.2rem);
  padding: 0;
  border-left: 0;
}

.refined-home .refined-points::before {
  display: none;
}

.refined-home .refined-points article {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.refined-home .refined-points article + article {
  border-left: 0;
}

.refined-home .refined-points article:first-child {
  border-top: 0;
}

.refined-home .refined-points span {
  display: none;
  color: #a44958;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 2.3vw, 3rem);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
}

.refined-home .signature-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: clamp(1.1rem, 1.6vw, 1.9rem);
  margin-bottom: clamp(1rem, 1.3vw, 1.45rem);
  width: clamp(48px, 3.2vw, 64px);
  height: clamp(48px, 3.2vw, 64px);
  padding-left: 0;
  border-left: 0;
  color: #a44958;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refined-home .refined-points article > div {
  display: block;
}

.refined-home .refined-points h3 {
  margin: 0 0 .8rem;
  color: var(--ivory);
  font-size: clamp(1.08rem, 1.05vw, 1.34rem);
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.refined-home .refined-points p {
  margin: 0;
  max-width: 390px;
  color: rgba(255,250,240,.82);
  font-size: clamp(1.08rem, 1vw, 1.26rem);
  line-height: 1.58;
}

@media (max-width: 1180px) {
  .refined-home .signature-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background-attachment: scroll, scroll;
  }
  .refined-home .signature-showcase__image {
    position: absolute;
    grid-column: 1;
    grid-row: 1 / -1;
    inset: 0;
  }
  .refined-home .signature-showcase::before {
    display: none;
  }
  .refined-home .signature-showcase::after {
    display: none;
  }
  .refined-home .signature-showcase__background {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }
  .refined-home .signature-showcase__copy,
  .refined-home .refined-points {
    grid-column: 1;
    grid-row: auto;
    z-index: 2;
    padding-inline: clamp(1.5rem, 6vw, 4rem);
  }
  .refined-home .signature-showcase__copy::after {
    display: none;
  }
  .refined-home .refined-points {
    grid-template-columns: 1fr;
    padding-top: 0;
    border-top: 0;
  }
  .refined-home .refined-points article + article {
    border-left: 0;
    border-top: 1px solid rgba(136,64,68,.32);
  }
}

@media (max-width: 640px) {
  .refined-home .signature-showcase__copy h2 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }
  .refined-home .refined-points article {
    grid-template-columns: 46px 48px 1fr;
    gap: .9rem;
  }
  .refined-home .signature-icon {
    width: 42px;
    height: 42px;
    padding-left: .75rem;
  }
}

/* Premium editorial gallery section. */
.refined-home .refined-gallery {
  position: relative;
  min-height: clamp(780px, 66vw, 1040px);
  padding: clamp(6.8rem, 8.4vw, 9.8rem) clamp(2.2rem, 4vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 50%, rgba(255,250,240,.06), transparent 18rem),
    radial-gradient(circle at 63% 28%, rgba(164,73,88,.08), transparent 25rem),
    linear-gradient(115deg, #05090b 0%, #05090b 48%, #060c0e 100%);
  color: var(--ivory);
  border: 0;
}

.refined-home .refined-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,9,11,.7), transparent 30%, transparent 78%, rgba(5,9,11,.45)),
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: auto, 100% 3px;
  opacity: .48;
  mix-blend-mode: normal;
}

.refined-home .gallery-rail {
  display: none;
}

.refined-home .gallery-rail span {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #a44958;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .34em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
}

.scroll-meter[data-scene="Gallery"],
.scroll-meter[data-scene="Proof"] {
  opacity: 0;
}

.refined-home .gallery-editorial {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .29fr) minmax(980px, 1fr);
  gap: clamp(2.8rem, 3.8vw, 5rem);
  align-items: center;
  width: min(1840px, calc(100% - clamp(3rem, 5.6vw, 7rem)));
  margin: 0 auto;
}

.refined-home .gallery-copy {
  max-width: 420px;
  justify-self: start;
  padding-top: clamp(1rem, 2vw, 2.1rem);
}

.refined-home .gallery-copy .eyebrow {
  margin: 0 0 clamp(1.6rem, 2vw, 2.1rem);
  color: #b66a70;
  font-size: clamp(.72rem, .62vw, .88rem);
  font-weight: 900;
  letter-spacing: .34em;
}

.refined-home .gallery-copy h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(4.35rem, 5.05vw, 6.45rem);
  line-height: .97;
  letter-spacing: 0;
}

.refined-home .gallery-copy p:not(.eyebrow) {
  max-width: 330px;
  margin: clamp(2.1rem, 2.7vw, 2.9rem) 0 0;
  color: rgba(255,250,240,.78);
  font-size: clamp(1rem, .92vw, 1.13rem);
  line-height: 1.62;
}

.refined-home .gallery-copy > i {
  display: block;
  width: 72px;
  height: 1px;
  margin: clamp(1.85rem, 2.55vw, 2.7rem) 0 clamp(1.9rem, 2.55vw, 2.8rem);
  background: #a44958;
}

.refined-home .gallery-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  min-width: 285px;
  min-height: 58px;
  padding: .95rem 1.55rem;
  border: 1px solid rgba(164,73,88,.88);
  color: #a44958;
  background: rgba(5,9,11,.24);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.refined-home .gallery-cta:hover {
  background: #a44958;
  color: #05090b;
  transform: translateY(-2px);
}

.refined-home .gallery-mosaic {
  display: grid;
  grid-template-columns: minmax(285px, 1.02fr) repeat(3, minmax(185px, .68fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: clamp(.62rem, .8vw, .9rem);
  height: clamp(610px, 42vw, 760px);
}

.refined-home .gallery-mosaic figure,
.refined-home .gallery-quote {
  position: relative;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: #070c0e;
}

.refined-home .gallery-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(5,9,11,.04), rgba(5,9,11,.22));
}

.refined-home .gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(.9) contrast(1.08) brightness(.86);
  transition: transform .65s var(--ease), filter .65s var(--ease);
}

.refined-home .gallery-mosaic figure:hover img {
  transform: scale(1.055);
  filter: saturate(.98) contrast(1.1) brightness(.96);
}

.refined-home .gallery-main {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.refined-home .gallery-main img {
  object-position: 49% 50%;
  filter: saturate(.88) contrast(1.1) brightness(.82);
}

.refined-home .gallery-arch img {
  object-position: 50% 52%;
}

.refined-home .gallery-detail img {
  object-position: 42% 52%;
}

.refined-home .gallery-cake {
  grid-column: 2 / span 2;
}

.refined-home .gallery-cake img {
  object-position: 50% 45%;
}

.refined-home .gallery-table {
  grid-column: 4;
  grid-row: 2 / span 2;
}

.refined-home .gallery-table img {
  object-position: 47% 55%;
}

.refined-home .gallery-reception {
  grid-column: 2 / span 2;
}

.refined-home .gallery-reception img {
  object-position: 48% 50%;
}

.refined-home .gallery-quote {
  background:
    linear-gradient(to bottom, rgba(5,9,11,.04), rgba(5,9,11,.2)),
    url("../images/selected/detail-cake-warm.jpg") 50% 45% / cover no-repeat,
    #070c0e;
}

.refined-home .gallery-quote span {
  display: none;
}

.refined-home .gallery-quote p {
  display: none;
}

@media (max-width: 1280px) {
  .refined-home .gallery-editorial {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .refined-home .gallery-copy {
    justify-self: start;
    max-width: 760px;
    padding-left: clamp(1rem, 6vw, 4rem);
  }
  .refined-home .gallery-copy h2 {
    font-size: clamp(4.2rem, 9vw, 6.6rem);
  }
}

@media (max-width: 820px) {
  .refined-home .refined-gallery {
    padding-inline: 1rem;
  }
  .refined-home .gallery-rail {
    display: none;
  }
  .refined-home .gallery-editorial {
    width: 100%;
  }
  .refined-home .gallery-copy {
    padding-left: 0;
  }
  .refined-home .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, minmax(190px, 1fr));
    height: auto;
  }
  .refined-home .gallery-main {
    grid-column: 1 / -1;
    grid-row: span 2;
    min-height: 520px;
  }
  .refined-home .gallery-quote {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .refined-home .gallery-copy h2 {
    font-size: clamp(3.5rem, 17vw, 4.8rem);
  }
  .refined-home .gallery-cta {
    width: 100%;
    min-width: 0;
  }
  .refined-home .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .refined-home .gallery-main,
  .refined-home .gallery-mosaic figure,
  .refined-home .gallery-quote {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }
  .refined-home .gallery-main {
    min-height: 480px;
  }
}

/* Premium image-led Melbourne proof section. */
.refined-home .refined-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(5.25rem, 6.6vw, 7.45rem) clamp(1.25rem, 4vw, 4.8rem) clamp(5.7rem, 6.9vw, 7.85rem);
  background:
    linear-gradient(90deg, rgba(247,241,231,.82), rgba(247,241,231,.94) 30%, rgba(247,241,231,.88)),
    #f4efe6;
  color: #090b0b;
  border: 0;
}

.refined-home .refined-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(164,73,88,.12), transparent 22rem),
    radial-gradient(circle at 83% 16%, rgba(136,64,68,.08), transparent 21rem),
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: auto, auto, 100% 3px;
  opacity: .72;
}

.refined-home .refined-proof::after {
  content: none;
}

.refined-home .proof-intro {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto clamp(3.15rem, 3.8vw, 4.45rem);
  text-align: center;
}

.refined-home .proof-intro .eyebrow {
  margin: 0;
  color: #884044;
  font-size: clamp(.78rem, .68vw, .96rem);
  font-weight: 900;
  letter-spacing: .31em;
}

.refined-home .proof-intro > i {
  display: block;
  width: 54px;
  height: 1px;
  margin: 1.05rem auto 1.2rem;
  background: #a44958;
}

.refined-home .proof-intro h2 {
  margin: 0;
  color: #080a0a;
  font-size: clamp(5rem, 5.8vw, 7.35rem);
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: nowrap;
}

.refined-home .proof-intro p:not(.eyebrow) {
  max-width: 650px;
  margin: clamp(1.35rem, 1.8vw, 1.9rem) auto 0;
  color: rgba(9,11,11,.66);
  font-size: clamp(1.08rem, 1.05vw, 1.28rem);
  line-height: 1.62;
}

.refined-home .refined-proof .proof-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.6rem, 2.6vw, 3.05rem);
  width: min(1660px, 100%);
  margin: 0 auto;
  border: 0;
}

.refined-home .refined-proof .proof-cards article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: clamp(500px, 32vw, 570px);
  padding: 0 clamp(1.7rem, 2.6vw, 3rem) clamp(2.7rem, 3.2vw, 3.8rem);
  overflow: visible;
  border: 1px solid rgba(84,61,35,.17);
  background:
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.2)),
    rgba(250,247,240,.52);
  box-shadow: 0 24px 58px rgba(78,54,27,.06);
  text-align: center;
}

.refined-home .refined-proof .proof-cards figure {
  position: relative;
  z-index: 1;
  width: calc(100% + clamp(3.4rem, 5.2vw, 6rem));
  height: clamp(240px, 15.9vw, 285px);
  margin: 0 calc(clamp(1.7rem, 2.6vw, 3rem) * -1);
  overflow: hidden;
  background: #ddd3c4;
}

.refined-home .refined-proof .proof-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.012);
  filter: saturate(.86) contrast(1.05) brightness(.98);
}

.refined-home .refined-proof .proof-cards article:nth-child(1) img {
  object-position: 48% 50%;
}

.refined-home .refined-proof .proof-cards article:nth-child(2) img {
  object-position: 50% 54%;
}

.refined-home .refined-proof .proof-cards article:nth-child(3) img {
  object-position: 48% 44%;
}

.refined-home .refined-proof .proof-cards span {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: -29px;
  border: 0;
  border-radius: 999px;
  background: #884044;
  color: var(--ivory);
  box-shadow: 0 12px 26px rgba(136,64,68,.22);
  font-size: .93rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.refined-home .refined-proof .proof-cards h3 {
  margin: clamp(1.75rem, 2vw, 2.25rem) 0 0;
  color: #080a0a;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2.45vw, 3rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
  text-wrap: balance;
}

.refined-home .refined-proof .proof-cards article > i {
  display: block;
  width: 50px;
  height: 1px;
  margin: clamp(1.05rem, 1.25vw, 1.35rem) auto clamp(1rem, 1.35vw, 1.45rem);
  background: #a44958;
}

.refined-home .refined-proof .proof-cards p {
  max-width: 365px;
  margin: 0;
  color: rgba(9,11,11,.66);
  font-size: clamp(1.02rem, .98vw, 1.16rem);
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .refined-home .proof-intro h2 {
    white-space: normal;
  }
  .refined-home .refined-proof .proof-cards {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
  }
  .refined-home .refined-proof .proof-cards article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .refined-home .refined-proof {
    padding-inline: 1rem;
  }
  .refined-home .proof-intro h2 {
    font-size: clamp(3.9rem, 17vw, 5.4rem);
  }
  .refined-home .proof-intro p:not(.eyebrow) {
    font-size: 1.02rem;
  }
  .refined-home .refined-proof .proof-cards figure {
    height: 220px;
  }
  .refined-home .refined-proof .proof-cards h3 {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }
}

/* Premium light testimonial section. */
.refined-home .refined-testimonials {
  position: relative;
  min-height: clamp(760px, 56vw, 970px);
  padding: clamp(5.6rem, 7vw, 8rem) clamp(1.25rem, 4vw, 4.8rem) clamp(4.6rem, 6vw, 6.8rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246,236,220,.08), rgba(246,236,220,.18) 34%, rgba(246,236,220,.08)),
    url("../images/client-love-background.png") center / cover no-repeat,
    #f6ecdc;
  color: #091015;
  border: 0;
}

.refined-home .refined-testimonials::before,
.refined-home .refined-testimonials::after {
  display: none;
}

.refined-home .refined-testimonials::before {
  left: 0;
  width: min(560px, 38vw);
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.05), rgba(246,236,220,.05) 58%, rgba(246,236,220,.95) 100%),
    url("../images/selected/detail-roses-vase.jpg");
  background-position: 18% 50%;
  filter: saturate(.9) contrast(1.12) brightness(.78);
}

.refined-home .refined-testimonials::after {
  right: 0;
  width: min(610px, 42vw);
  background-image:
    linear-gradient(90deg, rgba(246,236,220,.96), rgba(246,236,220,.58) 46%, rgba(246,236,220,.12)),
    url("../images/curated/contact-candlelight-original-full.jpg");
  background-position: 72% 50%;
  filter: saturate(.58) blur(.5px) brightness(1.14);
  opacity: .76;
}

.refined-home .refined-testimonials > * {
  position: relative;
  z-index: 1;
}

.refined-home .testimonial-intro {
  width: min(960px, 100%);
  margin: 0 auto clamp(2.4rem, 3.2vw, 3.55rem);
  text-align: center;
}

.refined-home .testimonial-intro .eyebrow {
  margin: 0;
  color: #884044;
  font-size: clamp(.74rem, .62vw, .9rem);
  font-weight: 900;
  letter-spacing: .36em;
}

.refined-home .testimonial-ornament,
.refined-home .testimonial-card-ornament {
  display: inline-grid;
  grid-template-columns: minmax(44px, 1fr) 28px minmax(44px, 1fr);
  gap: .75rem;
  align-items: center;
  color: #a44958;
}

.refined-home .testimonial-ornament {
  width: 155px;
  margin: 1.55rem auto 1rem;
}

.refined-home .testimonial-ornament i,
.refined-home .testimonial-card-ornament i {
  display: block;
  height: 1px;
  background: currentColor;
  opacity: .76;
}

.refined-home .testimonial-ornament svg,
.refined-home .testimonial-card-ornament svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.refined-home .testimonial-intro h2 {
  margin: 0;
  color: #091015;
  font-size: clamp(5.6rem, 7.1vw, 9.6rem);
  line-height: .9;
  letter-spacing: 0;
}

.refined-home .refined-testimonials .testimonial-grid {
  --testimonial-gap: clamp(1.4rem, 1.65vw, 2rem);
  --testimonial-page: 0;
  display: flex;
  gap: var(--testimonial-gap);
  width: min(1180px, 100%);
  max-width: none;
  margin: 0 auto;
  height: clamp(420px, 28vw, 500px);
  align-items: stretch;
  overflow: hidden;
}

.refined-home .refined-testimonials blockquote {
  display: grid;
  flex: 0 0 calc((100% - var(--testimonial-gap)) / 2);
  justify-items: center;
  align-content: center;
  min-height: 0;
  height: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.15rem, 3vw, 3.35rem) clamp(2rem, 4vw, 4.9rem) clamp(2rem, 2.75vw, 3rem);
  border: 1px solid rgba(164,73,88,.36);
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,250,242,.7)),
    rgba(255,250,242,.72);
  box-shadow: 0 28px 80px rgba(90,52,22,.08);
  text-align: center;
  transform: translate3d(calc(var(--testimonial-page) * (-200% - (var(--testimonial-gap) * 2))), 0, 0);
  transition: transform 1450ms cubic-bezier(.18, .78, .18, 1);
  will-change: transform;
}

.refined-home .refined-testimonials blockquote:not(.is-active) {
  display: grid;
}

@keyframes testimonialCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes testimonialCardInNext {
  0% {
    opacity: 0;
    transform: translate3d(18px, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes testimonialCardInPrev {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.refined-home .refined-testimonials blockquote > span {
  color: #884044;
  font-family: Georgia, serif;
  font-size: clamp(3.8rem, 4.1vw, 5.4rem);
  font-weight: 900;
  line-height: .68;
}

.refined-home .testimonial-card-ornament {
  width: min(260px, 70%);
  margin: .55rem auto clamp(1.45rem, 2vw, 2rem);
}

.refined-home .refined-testimonials .testimonial-grid p {
  width: min(100%, 560px);
  max-width: none;
  margin: 0;
  color: #0d1418;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.42vw, 1.95rem);
  line-height: 1.48;
}

.refined-home .refined-testimonials blockquote > i {
  display: block;
  width: 76px;
  height: 1px;
  margin: clamp(1.6rem, 2.1vw, 2.4rem) auto clamp(1.35rem, 1.85vw, 2rem);
  background: #a44958;
}

.refined-home .refined-testimonials cite {
  margin: 0;
  color: #884044;
  font-style: normal;
  font-size: clamp(.78rem, .68vw, .92rem);
  font-weight: 900;
  letter-spacing: .34em;
  line-height: 1.3;
  text-transform: uppercase;
}

.refined-home .testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: clamp(1.75rem, 2.2vw, 2.35rem) auto 0;
}

.refined-home .testimonial-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(164,73,88,.28);
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}

.refined-home .testimonial-dots button.is-active,
.refined-home .testimonial-dots button:hover {
  background: #a44958;
}

.refined-home .testimonial-dots button:hover {
  transform: scale(1.18);
}

.refined-home .testimonial-dots button:focus-visible {
  outline: 2px solid #884044;
  outline-offset: 5px;
}

.refined-home .testimonial-more {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1rem;
  margin: clamp(2rem, 2.5vw, 2.8rem) auto 0;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(164,73,88,.72);
  color: #884044;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .29em;
  text-transform: uppercase;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.refined-home .testimonial-more:hover {
  color: #6f2f37;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .refined-home .refined-testimonials::before {
    width: 54vw;
    opacity: .35;
  }
  .refined-home .refined-testimonials::after {
    width: 62vw;
    opacity: .35;
  }
  .refined-home .refined-testimonials .testimonial-grid {
    width: min(620px, 100%);
  }

  .refined-home .refined-testimonials blockquote {
    flex-basis: 100%;
    transform: translate3d(calc(var(--testimonial-page) * (-100% - var(--testimonial-gap))), 0, 0);
  }
}

@media (max-width: 640px) {
  .refined-home .refined-testimonials {
    padding-inline: 1rem;
  }
  .refined-home .testimonial-intro h2 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }
  .refined-home .refined-testimonials blockquote {
    min-height: auto;
    padding: 2rem 1.35rem 2.25rem;
  }
  .refined-home .refined-testimonials .testimonial-grid p {
    font-size: clamp(1.35rem, 6.7vw, 1.7rem);
  }
  .refined-home .testimonial-more {
    letter-spacing: .2em;
  }
}

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  z-index: 60;
  display: grid;
  place-items: center;
  width: clamp(52px, 3.6vw, 64px);
  height: clamp(52px, 3.6vw, 64px);
  min-width: clamp(52px, 3.6vw, 64px);
  min-height: clamp(52px, 3.6vw, 64px);
  padding: 0;
  box-sizing: border-box;
  border: 1px solid rgba(255,250,240,.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.2), transparent 32%),
    linear-gradient(145deg, #a64c58, #74313a 72%);
  color: #fffaf0;
  box-shadow: 0 22px 62px rgba(0,0,0,.34), 0 0 0 1px rgba(136,64,68,.25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(1);
  transition: opacity .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(164,73,88,.32);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.back-to-top::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255,250,240,.14);
}

.back-to-top svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: currentColor;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.22));
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.back-to-top.is-visible::before {
  opacity: 1;
  transform: scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translate3d(0, -3px, 0) scale(1.02);
  box-shadow: 0 28px 74px rgba(0,0,0,.42), 0 0 0 1px rgba(164,73,88,.38);
  outline: none;
}

.back-to-top:active {
  transform: translate3d(0, -1px, 0) scale(.98);
}

@media (max-width: 640px) {
  .back-to-top {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    right: 1rem;
    bottom: 1rem;
  }

  .back-to-top svg {
    width: 23px;
    height: 23px;
  }
}

/* Premium universal CTA footer. */
.universal-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(136,64,68,.16), transparent 24rem),
    radial-gradient(circle at 78% 62%, rgba(164,73,88,.11), transparent 28rem),
    #04090b;
  color: rgba(255,250,240,.82);
  border: 0;
}

.site-header.over-footer {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* Thin collapsed header after scroll. */
.reference-header.scrolled {
  --header-height: 112px;
  --header-pad-top: 0px;
  --header-pad-x: clamp(1.6rem, 2.7vw, 3.2rem);
  --header-logo-col: clamp(190px, 10.6vw, 250px);
  --header-top-row: 84px;
  --header-nav-row: 0px;
  --header-brand-y: 0px;
  --header-logo-width: auto;
  --header-logo-max-height: 74px;
  --header-nav-gap: clamp(.95rem, 1.32vw, 1.78rem);
  --header-nav-pad-top: 0px;
  --header-nav-font: clamp(.84rem, .64vw, 1rem);
  --header-nav-letter: .2em;
  --header-link-height: 48px;
  --header-button-height: 52px;
  --header-button-width: 180px;
  --header-button-pad-y: .72rem;
  --header-button-pad-x: 1.16rem;
  --header-button-font: .68rem;
  --header-button-letter: .22em;
  position: fixed !important;
  inset: 0 0 auto !important;
  min-height: var(--header-height) !important;
  grid-template-columns: var(--header-logo-col) auto minmax(0, 1fr) !important;
  grid-template-rows: var(--header-top-row) !important;
  align-items: center !important;
  gap: 0 clamp(1rem, 1.38vw, 1.85rem) !important;
  padding: 14px var(--header-pad-x) !important;
  background: rgba(1,5,7,.94) !important;
  border-bottom: 1px solid rgba(164,73,88,.28) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}

.reference-header.scrolled .header-topline {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-self: center !important;
  align-items: center !important;
  min-height: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto;
  font-size: .57rem;
  line-height: 1;
  letter-spacing: .02em;
}

.reference-header.scrolled .brand {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: center !important;
  transform: translateY(var(--header-brand-y)) !important;
}

.reference-header.scrolled .brand img {
  width: auto !important;
  height: auto !important;
  max-width: clamp(154px, 8.8vw, 210px) !important;
  max-height: var(--header-logo-max-height) !important;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.44));
}

.reference-header.scrolled .mega-nav {
  grid-column: 3 !important;
  grid-row: 1 !important;
  align-self: center !important;
  gap: var(--header-nav-gap) !important;
  padding-top: var(--header-nav-pad-top) !important;
  font-size: var(--header-nav-font) !important;
  letter-spacing: var(--header-nav-letter) !important;
}

.reference-header.scrolled .header-utility {
  gap: .54rem;
}

.reference-header.scrolled .utility-link {
  gap: .34rem;
  color: rgba(255,250,240,.78);
  font-size: .68rem;
}

.reference-header.scrolled .utility-link span {
  font-size: .52rem;
  letter-spacing: .08em;
}

.reference-header.scrolled .utility-link + .utility-link,
.reference-header.scrolled .utility-link + .social-icon,
.reference-header.scrolled .social-icon + .social-icon {
  padding-left: .54rem;
}

.reference-header.scrolled .social-icon {
  flex-basis: 22px;
  min-width: 22px;
  width: 22px;
  height: 22px;
}

.reference-header.scrolled .social-icon svg {
  width: 19px;
  height: 19px;
}

.reference-header.scrolled .mega-nav > a,
.reference-header.scrolled .mega-nav summary {
  min-height: var(--header-link-height) !important;
}

.reference-header.scrolled .mega-nav > a:not(.button)::after {
  bottom: .22rem;
}

.reference-header.scrolled .mega-nav > .button.gold {
  min-height: var(--header-button-height) !important;
  min-width: var(--header-button-width);
  padding: var(--header-button-pad-y) var(--header-button-pad-x) !important;
  font-size: var(--header-button-font) !important;
  letter-spacing: var(--header-button-letter);
}

.reference-header.scrolled .mega-panel {
  top: calc(100% + .55rem) !important;
}

@media (min-width: 1181px) and (max-width: 1760px),
       (min-width: 1181px) and (max-height: 840px) {
  .reference-header.scrolled {
    --header-height: 96px;
    --header-pad-x: clamp(1rem, 1.55vw, 1.9rem);
    --header-logo-col: clamp(152px, 11.6vw, 196px);
    --header-logo-max-height: 62px;
    --header-nav-gap: clamp(.44rem, .72vw, .9rem);
    --header-nav-font: clamp(.66rem, .55vw, .8rem);
    --header-nav-letter: .12em;
    --header-link-height: 42px;
    --header-button-height: 46px;
    --header-button-width: clamp(118px, 9.4vw, 152px);
    --header-button-pad-x: .62rem;
    --header-button-font: .56rem;
    --header-button-letter: .14em;
    grid-template-columns: var(--header-logo-col) minmax(0, 1fr) !important;
    gap: 0 clamp(.7rem, 1vw, 1.2rem) !important;
    padding: 12px var(--header-pad-x) !important;
  }

  .reference-header.scrolled .header-topline {
    display: none !important;
  }

  .reference-header.scrolled .mega-nav {
    grid-column: 2 !important;
    justify-self: stretch !important;
    justify-content: flex-end !important;
    white-space: nowrap;
  }

  .reference-header.scrolled .brand img {
    max-width: clamp(138px, 10.4vw, 180px) !important;
  }

  .reference-header.scrolled .nav-group summary::after {
    margin-left: .34rem;
  }
}

@media (min-width: 1181px) and (max-width: 1360px),
       (min-width: 1181px) and (max-height: 720px) {
  .reference-header.scrolled {
    --header-logo-col: clamp(134px, 10.2vw, 160px);
    --header-logo-max-height: 54px;
    --header-nav-gap: clamp(.3rem, .52vw, .58rem);
    --header-nav-font: clamp(.58rem, .49vw, .68rem);
    --header-nav-letter: .08em;
    --header-button-width: clamp(104px, 8.8vw, 124px);
    --header-button-font: .5rem;
    --header-button-letter: .1em;
  }

  .reference-header.scrolled .brand img {
    max-width: clamp(122px, 9.5vw, 148px) !important;
  }
}

.universal-footer::before {
  display: none;
}

.universal-footer .footer-journey {
  position: relative;
  min-height: clamp(620px, 43vw, 760px);
  display: grid;
  place-items: center;
  padding: clamp(7rem, 9vw, 10rem) clamp(1.25rem, 4vw, 4.8rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(164,73,88,.45);
  background: #05090b;
}

.universal-footer .footer-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,250,240,.09), transparent 18rem),
    linear-gradient(90deg, rgba(4,9,11,.78), rgba(4,9,11,.46) 36%, rgba(4,9,11,.5) 64%, rgba(4,9,11,.82)),
    linear-gradient(180deg, rgba(4,9,11,.44), rgba(4,9,11,.58)),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, auto, 100% 3px;
  mix-blend-mode: normal;
}

.universal-footer .footer-journey::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--footer-journey-image, url("../images/curated/event-hire-tablescape-original-full.jpg"));
  background-position: var(--footer-journey-position, center 58%);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform-origin: center;
  filter: saturate(.88) contrast(1.04) brightness(.86);
}

.universal-footer .footer-rail {
  display: none;
}

.universal-footer .footer-rail::before,
.universal-footer .footer-rail::after {
  display: none;
}

.universal-footer .footer-journey__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(680px, calc(100% - 2rem));
  text-align: center;
  transform: none;
}

.universal-footer.has-dynamic-footer-journey .footer-journey__content {
  width: min(980px, calc(100% - 2rem));
}

.universal-footer.has-dynamic-footer-journey .footer-journey h2 {
  display: grid;
  justify-items: center;
  gap: 0;
  font-size: clamp(4.9rem, 5.9vw, 7.85rem);
  line-height: 1;
}

.universal-footer.has-dynamic-footer-journey .footer-journey-title-line {
  display: block;
  line-height: 1;
}

.universal-footer.has-dynamic-footer-journey .footer-journey-title-line + .footer-journey-title-line {
  margin-top: clamp(.7rem, .72vw, .95rem);
}

.universal-footer.has-dynamic-footer-journey .footer-journey-title-line:nth-child(2) {
  margin-top: clamp(1.4rem, 1.45vw, 1.85rem);
}

.universal-footer .footer-journey .eyebrow {
  margin: 0;
  color: #b66a70;
  font-size: clamp(.74rem, .62vw, .9rem);
  font-weight: 900;
  letter-spacing: .34em;
}

.universal-footer .footer-ornament {
  display: grid;
  grid-template-columns: 72px 28px 72px;
  gap: .8rem;
  align-items: center;
  margin: clamp(1.45rem, 1.8vw, 2rem) auto clamp(1.85rem, 2.2vw, 2.55rem);
  color: #a44958;
}

.universal-footer .footer-ornament i {
  height: 1px;
  background: currentColor;
  opacity: .58;
}

.universal-footer .footer-ornament svg,
.universal-footer .footer-bottom-ornament svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.universal-footer .footer-journey h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(5.25rem, 6.8vw, 9rem);
  line-height: .83;
  letter-spacing: 0;
  text-shadow: 0 24px 70px rgba(0,0,0,.5);
}

.universal-footer .footer-journey__content > p:not(.eyebrow) {
  max-width: 610px;
  margin: clamp(2rem, 2.4vw, 2.75rem) auto 0;
  color: rgba(255,250,240,.86);
  font-size: clamp(1.04rem, .95vw, 1.2rem);
  line-height: 1.55;
}

.universal-footer .footer-journey__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  min-width: 205px;
  min-height: 58px;
  margin-top: clamp(2.15rem, 2.7vw, 3.1rem);
  padding: 1rem 1.75rem;
  border: 1px solid rgba(255,250,240,.22);
  border-radius: 999px;
  background: #884044;
  color: var(--ivory);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.universal-footer .footer-journey__button:hover {
  background: #9a4b51;
  transform: translateY(-2px);
}

.universal-footer .footer-panel {
  position: relative;
  padding: clamp(3.9rem, 5.3vw, 6.4rem) clamp(1.25rem, 4vw, 4.8rem) clamp(2rem, 3vw, 3.25rem);
  background:
    linear-gradient(90deg, rgba(4,9,11,.98), rgba(5,12,14,.96)),
    #050b0d;
}

.universal-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(190px, .82fr) minmax(230px, .95fr) minmax(160px, .62fr) minmax(210px, .8fr);
  gap: clamp(2.2rem, 3.3vw, 4.5rem);
  align-items: start;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.universal-footer .footer-brand img {
  width: clamp(165px, 14vw, 225px);
  margin: 0 0 1.75rem;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.28));
}

.universal-footer .footer-brand p,
.universal-footer .footer-column p {
  margin: 0;
  color: rgba(255,250,240,.74);
  font-size: clamp(.98rem, .9vw, 1.12rem);
  line-height: 1.55;
}

.universal-footer .footer-brand p {
  max-width: 310px;
}

.universal-footer .footer-social {
  display: flex;
  gap: 1.55rem;
  align-items: center;
  margin-top: 2rem;
}

.universal-footer .footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #a44958;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.universal-footer .footer-social svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.universal-footer .footer-social a:hover {
  color: var(--ivory);
  transform: translateY(-2px);
}

.universal-footer .footer-column {
  position: relative;
  min-height: 205px;
  padding-left: clamp(1.9rem, 2.5vw, 3rem);
  border-left: 1px solid rgba(164,73,88,.36);
}

.universal-footer .footer-column::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, transparent 34%, #a44958 37% 42%, transparent 45%),
    linear-gradient(45deg, transparent 43%, #a44958 44% 47%, transparent 48%),
    linear-gradient(-45deg, transparent 43%, #a44958 44% 47%, transparent 48%);
  opacity: .8;
}

.universal-footer .footer-column .eyebrow {
  margin: 0 0 1.6rem;
  color: #b66a70;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .32em;
}

.universal-footer .footer-column a {
  color: rgba(255,250,240,.84);
}

.universal-footer .footer-text-link {
  display: inline-block;
  margin-top: 1.7rem;
  padding-bottom: .62rem;
  border-bottom: 1px solid rgba(164,73,88,.58);
  color: #a44958 !important;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.universal-footer .footer-gallery-card {
  display: block;
  padding: .65rem;
  border: 1px solid rgba(164,73,88,.42);
  color: #a44958;
  background: rgba(255,255,255,.018);
}

.universal-footer .footer-gallery-card img {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  object-position: 48% 54%;
  filter: saturate(.78) contrast(1.08) brightness(.9);
}

.universal-footer .footer-gallery-card span {
  display: block;
  margin: 1.35rem .55rem 1rem;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.universal-footer .footer-gallery-card i {
  display: flex;
  justify-content: flex-end;
  margin: 0 .55rem .65rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(164,73,88,.72);
  font-style: normal;
  font-size: 1.35rem;
}

.universal-footer .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 74px;
  gap: 2rem;
  align-items: center;
  width: min(1440px, 100%);
  margin: clamp(3.7rem, 5vw, 5rem) auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(164,73,88,.3);
  color: rgba(255,250,240,.58);
}

.universal-footer .footer-bottom p {
  margin: 0;
  font-size: .9rem;
}

.universal-footer .footer-bottom nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.universal-footer .footer-bottom nav a {
  color: rgba(255,250,240,.72);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.universal-footer .footer-bottom nav a + a {
  position: relative;
}

.universal-footer .footer-bottom nav a + a::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(164,73,88,.38);
}

.universal-footer .footer-bottom-ornament {
  color: #a44958;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .universal-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .universal-footer .footer-gallery-card {
    max-width: 340px;
  }
}

@media (max-width: 760px) {
  .universal-footer .footer-journey {
    min-height: 560px;
    padding: 6rem 1rem 4rem;
  }
  .universal-footer .footer-journey::after {
    background-attachment: scroll;
  }
  .universal-footer .footer-rail {
    display: none;
  }
  .universal-footer .footer-journey h2 {
    font-size: clamp(4.4rem, 18vw, 5.9rem);
  }
  .universal-footer.has-dynamic-footer-journey .footer-journey h2 {
    gap: 0;
    font-size: clamp(3.55rem, 14vw, 4.55rem);
  }
  .universal-footer.has-dynamic-footer-journey .footer-journey-title-line + .footer-journey-title-line {
    margin-top: .42rem;
  }
  .universal-footer.has-dynamic-footer-journey .footer-journey-title-line:nth-child(2) {
    margin-top: .9rem;
  }
  .universal-footer .footer-grid,
  .universal-footer .footer-bottom {
    grid-template-columns: 1fr;
  }
  .universal-footer .footer-column {
    min-height: auto;
  }
  .universal-footer .footer-gallery-card {
    max-width: none;
  }
  .universal-footer .footer-bottom nav {
    align-items: flex-start;
    flex-direction: column;
    gap: .8rem;
  }
  .universal-footer .footer-bottom nav a + a::before {
    display: none;
  }
}

/* Generated preserved-slug migration pages. */
.migration-page {
  background:
    radial-gradient(circle at 14% 22%, rgba(184, 201, 196, .09), transparent 30rem),
    radial-gradient(circle at 86% 62%, rgba(155, 64, 80, .08), transparent 28rem),
    var(--ink);
}

.migration-page .migration-hero {
  min-height: 84dvh;
}

.migration-page .migration-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 8, .94), rgba(5, 7, 8, .28) 46%, rgba(5, 7, 8, .72)),
    linear-gradient(0deg, rgba(5, 7, 8, .94), rgba(5, 7, 8, 0) 58%);
}

.migration-page .migration-hero .hero-content {
  max-width: 1040px;
}

.migration-page .migration-hero h1 {
  max-width: 1080px;
  font-size: clamp(4.4rem, 10.6vw, 11.4rem);
}

.migration-page .migration-hero .lead {
  max-width: 700px;
  text-wrap: pretty;
}

.migration-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 1.35rem;
  border-top: 1px solid rgba(248, 250, 245, .18);
  border-bottom: 1px solid rgba(248, 250, 245, .18);
}

.migration-hero__meta span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: .8rem 1rem;
  color: rgba(248, 250, 245, .66);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
  border-right: 1px solid rgba(248, 250, 245, .13);
}

.migration-hero__meta span:last-child {
  border-right: 0;
}

.migration-process-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(248, 250, 245, .035);
  border-top: 1px solid rgba(248, 250, 245, .12);
  border-bottom: 1px solid rgba(248, 250, 245, .12);
}

.migration-process-band div {
  min-height: 150px;
  padding: clamp(1rem, 2.2vw, 2rem);
  border-right: 1px solid rgba(248, 250, 245, .12);
}

.migration-process-band div:last-child {
  border-right: 0;
}

.migration-process-band strong {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--champagne);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.migration-process-band span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: .86;
}

.migration-overview .copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.28vw, 1.15rem);
  line-height: 1.7;
}

.migration-cue-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.9rem, 2vw, 1.4rem);
}

.migration-cue-list div {
  min-height: 136px;
  padding: clamp(.95rem, 1.9vw, 1.45rem) 0 0;
  border-top: 1px solid rgba(5, 7, 8, .18);
}

.migration-cue-list div:nth-child(2n) {
  border-right: 0;
}

.migration-cue-list strong {
  display: block;
  margin-bottom: .8rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  font-weight: 500;
  line-height: .96;
}

.migration-cue-list span {
  display: block;
  max-width: 310px;
  color: rgba(5, 7, 8, .64);
  font-size: .92rem;
  line-height: 1.65;
}

.migration-overview .feature-list div {
  background: rgba(248, 250, 245, .055);
}

.migration-current-content {
  padding-bottom: clamp(4rem, 7vw, 8rem);
}

.migration-current-content .editorial-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
  text-wrap: pretty;
}

.migration-copy-ledger {
  width: min(1080px, calc(100% - 2rem));
  display: block;
  margin-top: clamp(2rem, 5vw, 5rem);
  margin-left: auto;
  margin-right: auto;
  counter-reset: migration-notes;
}

.migration-note-row {
  position: relative;
  display: grid;
  grid-template-columns: clamp(4.2rem, 9vw, 8rem) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.5rem, 3vw, 3rem) 0;
  border-top: 1px solid rgba(248, 250, 245, .18);
}

.migration-note-row:nth-child(even) {
  width: min(860px, 92%);
  margin-left: auto;
}

.migration-note-row:nth-child(3n) {
  width: min(960px, 96%);
}

.migration-note-row:last-child {
  border-bottom: 1px solid rgba(248, 250, 245, .18);
}

.migration-note-row > span {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--champagne);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.migration-note-row > span::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-top: .48rem;
  background: rgba(184, 201, 196, .42);
}

.migration-note-row h3 {
  max-width: 720px;
  margin-bottom: clamp(.9rem, 2vw, 1.45rem);
  font-size: clamp(2.4rem, 4.9vw, 6.1rem);
  line-height: .86;
  text-wrap: balance;
}

.migration-note-row p {
  max-width: 660px;
  margin: 0;
  color: rgba(248, 250, 245, .76);
  font-size: clamp(.98rem, 1.08vw, 1.1rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.migration-note-row p + p {
  margin-top: .72rem;
}

.migration-page--blog .migration-copy-ledger {
  width: min(980px, calc(100% - 2rem));
}

.migration-page--blog .migration-note-row:nth-child(even),
.migration-page--blog .migration-note-row:nth-child(3n) {
  width: 100%;
  margin-left: 0;
}

.migration-booking-note {
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 201, 196, .16), transparent 24rem),
    linear-gradient(135deg, #101617, #07090a);
}

.migration-related-links {
  display: grid;
  gap: .7rem;
}

.migration-related-links a {
  display: grid;
  gap: .22rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(248, 250, 245, .13);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.migration-related-links a:hover,
.migration-related-links a:focus-visible {
  color: var(--champagne);
  padding-left: .5rem;
}

.migration-related-links span {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.migration-related-links em {
  color: rgba(248, 250, 245, .58);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .migration-hero__meta,
  .migration-process-band,
  .migration-cue-list {
    grid-template-columns: 1fr;
  }

  .migration-hero__meta span,
  .migration-process-band div,
  .migration-cue-list div {
    border-right: 0;
  }

  .migration-process-band div {
    min-height: 112px;
  }

  .migration-copy-ledger {
    width: calc(100% - 2rem);
  }

  .migration-note-row,
  .migration-note-row:nth-child(even),
  .migration-note-row:nth-child(3n) {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: .7rem;
    padding: 1.5rem 0;
  }

  .migration-note-row > span {
    max-width: 8rem;
  }
}

/* Hand-built exemplar: balloon backdrops page. */
.balloon-exemplar-page {
  background: #050809;
  color: var(--ivory);
  overflow: hidden;
}

.balloon-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.balloon-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, .82), rgba(5, 8, 9, .30) 42%, rgba(5, 8, 9, .58)),
    linear-gradient(0deg, rgba(5, 8, 9, .88), rgba(5, 8, 9, 0) 58%);
}

.balloon-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.balloon-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 48%;
  filter: saturate(.9) contrast(1.06) brightness(.82) hue-rotate(-5deg);
}

.balloon-hero__inner {
  position: relative;
  z-index: 3;
  width: min(1680px, calc(100% - clamp(2rem, 6vw, 7rem)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  padding: clamp(9rem, 13vh, 13rem) 0 clamp(4.5rem, 9vh, 7.5rem);
}

.balloon-hero__copy {
  max-width: 880px;
}

.balloon-hero__copy h1 {
  max-width: 900px;
  font-size: clamp(5.4rem, 10.5vw, 12.4rem);
  line-height: .78;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .46);
}

.balloon-hero__copy .lead {
  max-width: 620px;
  margin-top: 1.2rem;
  color: rgba(248, 250, 245, .76);
  font-size: clamp(1.08rem, 1.28vw, 1.35rem);
  line-height: 1.48;
}

.balloon-hero__note {
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(248, 250, 245, .34);
}

.balloon-hero__note span {
  display: block;
  margin-bottom: .7rem;
  color: var(--champagne);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.balloon-hero__note strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 3.6rem);
  font-weight: 500;
  line-height: .92;
}

.balloon-atelier-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #071011;
  border-top: 1px solid rgba(248, 250, 245, .14);
  border-bottom: 1px solid rgba(248, 250, 245, .14);
}

.balloon-atelier-rail div {
  min-height: 210px;
  padding: clamp(1.1rem, 2.2vw, 2rem);
  border-right: 1px solid rgba(248, 250, 245, .13);
}

.balloon-atelier-rail div:last-child {
  border-right: 0;
}

.balloon-atelier-rail span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--rose);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.balloon-atelier-rail strong {
  display: block;
  margin-bottom: .9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 4.4rem);
  font-weight: 500;
  line-height: .82;
}

.balloon-atelier-rail p {
  max-width: 260px;
  color: rgba(248, 250, 245, .62);
  font-size: .92rem;
  line-height: 1.55;
}

.balloon-intro {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(6rem, 10vw, 11rem) clamp(1.25rem, 5vw, 6rem);
  background: #f4f0e8;
  color: var(--ink);
}

.balloon-intro__copy {
  max-width: 760px;
}

.balloon-intro__copy h2 {
  max-width: 780px;
  font-size: clamp(4.4rem, 7.6vw, 10rem);
  line-height: .82;
}

.balloon-intro__copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 1.25rem;
  color: rgba(5, 7, 8, .64);
  font-size: clamp(1.03rem, 1.18vw, 1.2rem);
  line-height: 1.7;
}

.balloon-intro__image {
  margin: 0;
  align-self: stretch;
  min-height: 680px;
  overflow: hidden;
}

.balloon-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.balloon-installations {
  padding: clamp(6rem, 10vw, 11rem) clamp(1.25rem, 5vw, 6rem);
  background:
    radial-gradient(circle at 15% 18%, rgba(184, 201, 196, .08), transparent 28rem),
    #050809;
}

.balloon-installations__header {
  width: min(1180px, 100%);
  margin: 0 auto clamp(3rem, 7vw, 7rem);
}

.balloon-installations__header h2 {
  max-width: 1100px;
  font-size: clamp(4.2rem, 7.8vw, 10rem);
  line-height: .82;
}

.balloon-installation {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, .86fr);
  gap: clamp(1.5rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) 0;
  border-top: 1px solid rgba(248, 250, 245, .14);
}

.balloon-installation.is-reverse {
  grid-template-columns: minmax(0, .86fr) minmax(0, .96fr);
}

.balloon-installation.is-reverse figure {
  order: 2;
}

.balloon-installation figure {
  margin: 0;
  min-height: clamp(420px, 46vw, 720px);
  overflow: hidden;
}

.balloon-installation img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.07) brightness(.94);
  transition: transform 1s var(--ease), filter 1s var(--ease);
}

.balloon-installation:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08) brightness(1);
}

.balloon-installation span {
  display: block;
  margin-bottom: 1rem;
  color: var(--champagne);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.balloon-installation h3 {
  max-width: 640px;
  font-size: clamp(3rem, 5.4vw, 7rem);
  line-height: .84;
}

.balloon-installation p:not(.balloon-price) {
  max-width: 520px;
  margin-top: 1.1rem;
  color: rgba(248, 250, 245, .68);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.7;
}

.balloon-price {
  width: max-content;
  max-width: 100%;
  margin-top: 1.5rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(248, 250, 245, .26);
  color: var(--ivory);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.balloon-tableau {
  position: relative;
  min-height: 105svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.balloon-tableau::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, .95), rgba(5, 8, 9, .18) 54%, rgba(5, 8, 9, .76)),
    linear-gradient(0deg, rgba(5, 8, 9, .78), rgba(5, 8, 9, 0) 44%);
}

.balloon-tableau img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.1) brightness(.74);
}

.balloon-tableau__copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 2rem));
  margin-left: clamp(1rem, 7vw, 7rem);
}

.balloon-tableau__copy h2 {
  max-width: 760px;
  font-size: clamp(4rem, 7.4vw, 9.5rem);
}

.balloon-tableau__copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(248, 250, 245, .7);
  line-height: 1.72;
}

.balloon-lookbook {
  padding: clamp(6rem, 10vw, 11rem) clamp(1.25rem, 5vw, 6rem);
  background: #050809;
}

.balloon-lookbook__intro {
  width: min(1180px, 100%);
  margin: 0 auto clamp(2rem, 5vw, 4.5rem);
}

.balloon-lookbook__intro h2 {
  max-width: 980px;
  font-size: clamp(4rem, 7vw, 9rem);
}

.balloon-mosaic {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(.75rem, 1.4vw, 1.2rem);
  align-items: stretch;
}

.balloon-mosaic figure,
.balloon-mosaic blockquote {
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  background: #0a1011;
}

.balloon-mosaic__large {
  grid-column: span 5;
  grid-row: span 2;
}

.balloon-mosaic figure:nth-child(2) {
  grid-column: span 4;
}

.balloon-mosaic figure:nth-child(3) {
  grid-column: span 3;
}

.balloon-mosaic blockquote {
  grid-column: span 4;
  display: grid;
  align-items: end;
  padding: clamp(1rem, 2vw, 1.8rem);
}

.balloon-mosaic__wide {
  grid-column: span 8;
}

.balloon-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(.86) contrast(1.06) brightness(.94);
}

.balloon-mosaic blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.6vw, 4.7rem);
  line-height: .9;
}

.balloon-related {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 6rem);
  background: #050809;
  border-top: 1px solid rgba(248, 250, 245, .12);
}

.balloon-related h2 {
  max-width: 560px;
  font-size: clamp(3.4rem, 5.8vw, 7.6rem);
}

.balloon-related nav {
  display: grid;
  gap: 0;
}

.balloon-related a {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(248, 250, 245, .15);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 3rem);
  line-height: 1;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}

.balloon-related a:hover,
.balloon-related a:focus-visible {
  color: var(--champagne);
  padding-left: .6rem;
}

@media (max-width: 980px) {
  .balloon-hero__inner,
  .balloon-intro,
  .balloon-installation,
  .balloon-installation.is-reverse,
  .balloon-related {
    grid-template-columns: 1fr;
  }

  .balloon-hero__note {
    max-width: 520px;
  }

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

  .balloon-installation.is-reverse figure {
    order: 0;
  }

  .balloon-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .balloon-mosaic__large,
  .balloon-mosaic figure:nth-child(2),
  .balloon-mosaic figure:nth-child(3),
  .balloon-mosaic blockquote,
  .balloon-mosaic__wide {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .balloon-hero {
    min-height: 92svh;
  }

  .balloon-hero__inner {
    width: calc(100% - 2rem);
    padding-top: 7rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }

  .balloon-hero__copy h1 {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }

  .balloon-hero__note strong {
    font-size: 2rem;
  }

  .balloon-atelier-rail {
    grid-template-columns: 1fr;
  }

  .balloon-atelier-rail div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 250, 245, .13);
  }

  .balloon-intro,
  .balloon-installations,
  .balloon-lookbook,
  .balloon-related {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .balloon-intro {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .balloon-intro__copy h2,
  .balloon-installations__header h2,
  .balloon-tableau__copy h2,
  .balloon-lookbook__intro h2,
  .balloon-related h2 {
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  .balloon-intro__image,
  .balloon-installation figure,
  .balloon-mosaic figure,
  .balloon-mosaic blockquote {
    min-height: 360px;
  }

  .balloon-tableau {
    min-height: 82svh;
  }

  .balloon-tableau__copy {
    margin-left: 1rem;
  }
}

.lightbox-open {
  overflow: hidden;
}

.js-gallery-trigger {
  cursor: zoom-in;
}

/* Gallery page */
.gallery-page {
  position: relative;
  overflow: hidden;
  background: #fbf3e8;
  color: var(--ink);
}

.gallery-page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(9rem, 12vw, 13rem) clamp(1.25rem, 5vw, 6.5rem) clamp(2rem, 4vw, 4.5rem);
  isolation: isolate;
  background: #050a0b;
  color: var(--ivory);
}

.gallery-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, .88) 0%, rgba(3, 6, 7, .46) 42%, rgba(3, 6, 7, .76) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, .72) 0%, rgba(3, 6, 7, .14) 42%, rgba(3, 6, 7, .86) 100%);
}

.gallery-page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1.08fr .8fr .9fr;
  gap: clamp(.45rem, .8vw, .8rem);
  opacity: .88;
}

.gallery-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}

.gallery-page-hero__media img:first-child {
  object-position: 43% center;
}

.gallery-page-hero__media img:nth-child(2) {
  object-position: center top;
  transform: translateY(clamp(3rem, 6vw, 5rem));
}

.gallery-page-hero__media img:nth-child(3) {
  object-position: center;
}

.gallery-page-hero__copy {
  width: min(1080px, 100%);
}

.gallery-page-hero__copy h1 {
  max-width: 1120px;
  margin: .35em 0 .22em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8.2vw, 10.8rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: 0;
}

.gallery-page-hero__copy p:last-child {
  max-width: 620px;
  color: rgba(255, 250, 240, .74);
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.8;
}

.gallery-index {
  position: sticky;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  width: min(980px, 100%);
  margin-top: clamp(2rem, 5vw, 4.25rem);
}

.gallery-index a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 1px solid rgba(255, 250, 240, .22);
  background: rgba(3, 6, 7, .36);
  color: rgba(255, 250, 240, .82);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.gallery-index a:hover,
.gallery-index a:focus-visible {
  border-color: rgba(255, 250, 240, .55);
  background: rgba(164, 73, 88, .32);
  color: #fff8ee;
  transform: translateY(-2px);
}

.gallery-collection {
  position: relative;
  padding: clamp(5.5rem, 9vw, 10rem) clamp(1.1rem, 4.5vw, 5.8rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0)),
    #fbf3e8;
}

.gallery-collection:nth-of-type(odd) {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .72), rgba(255, 250, 240, 0)),
    #f4eadf;
}

.gallery-collection--dark {
  background: #060b0c;
  color: var(--ivory);
}

.gallery-collection--split {
  background:
    linear-gradient(90deg, #f6ecdf 0 42%, #fffaf2 42% 100%);
}

.gallery-collection--quiet {
  background: #fff9ef;
}

.gallery-collection__intro {
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(360px, .95fr) minmax(260px, .58fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: end;
  width: min(1560px, 100%);
  margin: 0 auto clamp(2.1rem, 4vw, 4.5rem);
}

.gallery-collection__intro .eyebrow {
  align-self: start;
  margin-top: .55rem;
}

.gallery-collection__intro h2 {
  margin: 0;
  max-width: 760px;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 7.6rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: 0;
}

.gallery-collection__intro p:last-child {
  max-width: 440px;
  margin: 0;
  color: rgba(7, 16, 18, .66);
  font-size: clamp(.98rem, .95vw, 1.12rem);
  line-height: 1.8;
}

.gallery-collection--dark .gallery-collection__intro p:last-child {
  color: rgba(255, 250, 240, .64);
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(230px, 16vw, 320px);
  gap: clamp(.7rem, .9vw, 1rem);
  width: min(1560px, 100%);
  margin: 0 auto;
}

.gallery-layout figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #101617;
  cursor: zoom-in;
  box-shadow: 0 26px 80px rgba(49, 33, 24, .12);
}

.gallery-collection--dark .gallery-layout figure {
  box-shadow: 0 28px 90px rgba(0, 0, 0, .46);
}

.gallery-layout figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 7, 0) 45%, rgba(3, 6, 7, .62) 100%),
    linear-gradient(90deg, rgba(3, 6, 7, .16), transparent 42%);
  opacity: .76;
  transition: opacity .35s var(--ease);
}

.gallery-layout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform .75s var(--ease), filter .55s var(--ease);
}

.gallery-layout figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.04);
}

.gallery-layout figure:hover::after {
  opacity: .48;
}

.gallery-layout figcaption {
  position: absolute;
  left: clamp(1rem, 1.4vw, 1.45rem);
  right: clamp(1rem, 1.4vw, 1.45rem);
  bottom: clamp(.95rem, 1.3vw, 1.35rem);
  z-index: 1;
  color: #fff8ee;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gallery-layout .wide {
  grid-column: span 2;
}

.gallery-layout .tall {
  grid-row: span 2;
}

.gallery-layout--editorial {
  grid-template-columns: 1.15fr .75fr .9fr 1fr;
}

.gallery-layout--masonry {
  grid-template-columns: .9fr 1.05fr 1.05fr .9fr;
}

.gallery-layout--ribbon {
  grid-template-columns: .9fr 1.25fr .9fr 1.05fr;
}

.gallery-layout--tiles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(250px, 17vw, 350px);
}

.gallery-page-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 62vh, 720px);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem);
  overflow: hidden;
  isolation: isolate;
  background: #060b0c;
  color: var(--ivory);
  text-align: center;
}

.gallery-page-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/client-supplied-v339/eo-v339-signature-long-table-reception.jpg") center / cover;
  opacity: .42;
  filter: saturate(.92) contrast(1.05);
}

.gallery-page-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 6, 7, .78), rgba(3, 6, 7, .72));
}

.gallery-page-cta h2 {
  width: min(980px, 100%);
  margin: .25em auto .45em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.8vw, 8.8rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: 0;
}

/* Editorial gallery campaign */
.gallery-editorial-page {
  background: #f7efe5;
  color: #071012;
}

.gallery-editorial-page .eyebrow {
  color: #9f4350;
}

.gallery-campaign-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(8rem, 12vw, 12rem) clamp(1.25rem, 6vw, 8rem) clamp(4rem, 7vw, 7rem);
  background: #05090a;
  color: #fff8ee;
}

.gallery-campaign-hero::before,
.gallery-campaign-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery-campaign-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, .88) 0%, rgba(3, 6, 7, .48) 42%, rgba(3, 6, 7, .58) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, .62) 0%, rgba(3, 6, 7, .18) 50%, rgba(3, 6, 7, .82) 100%);
}

.gallery-campaign-hero::after {
  z-index: -1;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 250, 240, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, .06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.gallery-campaign-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.95) contrast(1.08) brightness(.82);
}

.gallery-campaign-hero__content {
  width: min(980px, 100%);
}

.gallery-campaign-hero h1 {
  max-width: 960px;
  margin: .24em 0 .26em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8.6vw, 11rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: 0;
  text-wrap: balance;
}

.gallery-campaign-hero h1 span {
  color: #b65d68;
}

.gallery-campaign-hero__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 240, .78);
  font-size: clamp(1rem, 1vw, 1.14rem);
  line-height: 1.78;
}

.gallery-campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.7rem, 3vw, 2.6rem);
}

.gallery-scroll-cue {
  display: inline-flex;
  gap: .75rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  color: #bb6b73;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.gallery-scroll-cue span {
  font-size: 1.15rem;
}

.gallery-section-kicker {
  width: min(1480px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto clamp(.75rem, 1.5vw, 1.2rem);
}

.gallery-experience-band {
  padding: clamp(3.2rem, 5vw, 5.4rem) 0 clamp(4rem, 6vw, 6.2rem);
  background: #fbf5ec;
}

.experience-cover-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.55rem, .85vw, .9rem);
  width: min(1480px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

.experience-cover-grid figure,
.detail-strip figure,
.signature-detail-strip figure,
.collection-rail figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #101617;
}

.experience-cover-grid figure {
  min-height: clamp(310px, 31vw, 520px);
  box-shadow: 0 26px 70px rgba(50, 36, 28, .13);
}

.experience-cover-grid figure::after,
.collection-rail figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 7, .04) 0%, rgba(3, 6, 7, .18) 42%, rgba(3, 6, 7, .82) 100%);
}

.experience-cover-grid img,
.featured-story-media img,
.masonry-cluster img,
.masonry-soft-image img,
.detail-strip img,
.transformation-frame img,
.signature-detail-strip img,
.collection-rail img,
.gallery-imagine-cta img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .55s var(--ease);
}

.experience-cover-grid figure:hover img,
.featured-story-media figure:hover img,
.masonry-cluster figure:hover img,
.detail-strip figure:hover img,
.signature-detail-strip figure:hover img,
.collection-rail figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

.experience-cover-grid figcaption {
  position: absolute;
  left: clamp(1rem, 1.4vw, 1.35rem);
  right: clamp(1rem, 1.4vw, 1.35rem);
  bottom: clamp(1rem, 1.4vw, 1.4rem);
  z-index: 1;
  color: #fff8ee;
}

.experience-cover-grid strong {
  display: block;
  margin-bottom: .8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.7vw, 3.6rem);
  font-weight: 500;
  line-height: .88;
}

.experience-cover-grid span,
.experience-cover-grid em {
  display: block;
  color: rgba(255, 250, 240, .78);
  font-size: .66rem;
  font-weight: 900;
  font-style: normal;
  letter-spacing: .18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.gallery-featured-story {
  display: grid;
  grid-template-columns: minmax(270px, .42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(4.5rem, 7vw, 8rem) clamp(1.25rem, 6vw, 8rem);
  background: #050b0c;
  color: #fff8ee;
}

.featured-story-copy {
  max-width: 370px;
}

.featured-story-copy h2 {
  margin: .35em 0 0;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.2vw, 6.4rem);
  font-weight: 500;
  line-height: .9;
}

.story-location {
  margin: .3rem 0 1.25rem;
  color: #b65d68;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-style: italic;
}

.featured-story-copy dl {
  display: grid;
  gap: .65rem;
  margin: 0 0 1.35rem;
}

.featured-story-copy dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255, 250, 240, .14);
}

.featured-story-copy dt,
.featured-story-copy dd {
  margin: 0;
  color: rgba(255, 250, 240, .72);
  font-size: .82rem;
  line-height: 1.5;
}

.featured-story-copy dt {
  color: #b65d68;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-story-copy > p:last-of-type {
  color: rgba(255, 250, 240, .72);
  line-height: 1.78;
}

.featured-story-copy a,
.signature-detail-copy a,
.transformation-copy a {
  display: inline-flex;
  margin-top: 1rem;
  color: #b65d68;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.featured-story-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 13vw, 240px);
  gap: clamp(.55rem, .85vw, .9rem);
}

.featured-story-media figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}

.featured-story-media .story-hero {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.gallery-editorial-masonry {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  min-height: clamp(620px, 78vw, 980px);
  background: #fbf5ec;
  overflow: hidden;
}

.masonry-cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 13vw, 260px);
  gap: .55rem;
  align-content: center;
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(2rem, 5vw, 5rem) clamp(1.25rem, 6vw, 8rem);
}

.masonry-cluster figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.masonry-tall {
  grid-row: span 2;
}

.masonry-wide {
  grid-column: span 3;
}

.masonry-square {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-statement {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 640px;
  padding: clamp(3rem, 7vw, 8rem) clamp(1.25rem, 7vw, 8rem) clamp(3rem, 7vw, 8rem) clamp(2rem, 4vw, 4.5rem);
}

.masonry-statement h2 {
  margin: .25em 0 .45em;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 8rem);
  font-weight: 500;
  line-height: .9;
}

.masonry-statement h2 span {
  color: #9f4350;
}

.masonry-statement i {
  display: block;
  width: 120px;
  height: 1px;
  background: #b65d68;
}

.masonry-soft-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(680px, 46vw);
  height: min(430px, 34vw);
  margin: 0;
  opacity: .5;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
}

.gallery-detail-browser,
.gallery-signature-details {
  padding: clamp(3rem, 5vw, 5rem) 0;
  background: #fffaf2;
}

.detail-strip,
.signature-detail-strip,
.collection-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: .65rem;
  width: min(1480px, calc(100% - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: .8rem;
  scrollbar-width: thin;
}

.detail-strip figure,
.signature-detail-strip figure {
  min-height: 180px;
  background: transparent;
}

.detail-strip img,
.signature-detail-strip img {
  height: clamp(130px, 9vw, 180px);
  box-shadow: 0 18px 45px rgba(48, 33, 24, .1);
}

.detail-strip figcaption,
.signature-detail-strip figcaption {
  margin-top: .75rem;
  color: rgba(7, 16, 18, .72);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.gallery-transformation {
  display: grid;
  grid-template-columns: minmax(270px, .4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 6vw, 8rem);
  background: #050b0c;
  color: #fff8ee;
}

.transformation-copy h2 {
  max-width: 420px;
  margin: .35em 0;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 6.6rem);
  font-weight: 500;
  line-height: .9;
}

.transformation-copy p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(255, 250, 240, .68);
  font-size: clamp(.96rem, 1vw, 1.08rem);
  line-height: 1.74;
}

.transformation-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 250, 240, .16);
  background: rgba(255, 250, 240, .035);
}

.transformation-frame figure {
  position: relative;
  min-height: clamp(310px, 26vw, 520px);
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.transformation-frame span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1;
  color: #fff8ee;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.transformation-frame > i {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #a44958;
  color: #fff8ee;
  font-style: normal;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
}

.transformation-suite {
  display: grid;
  gap: clamp(.8rem, 1vw, 1rem);
}

.transformation-comparison {
  --reveal: 50%;
  position: relative;
  min-height: clamp(380px, 35vw, 650px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, .16);
  background: #101617;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
}

.transformation-comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transformation-comparison__before {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  filter: saturate(.78) contrast(.98);
}

.transformation-comparison__after {
  filter: saturate(1.02) contrast(1.04);
}

.comparison-label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  padding: .48rem .62rem;
  background: rgba(3, 6, 7, .46);
  color: #fff8ee;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.comparison-label--before {
  left: 1rem;
}

.comparison-label--after {
  right: 1rem;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  z-index: 4;
  width: 1px;
  transform: translateX(-.5px);
  background: rgba(255, 250, 240, .84);
  pointer-events: none;
}

.comparison-handle::before {
  content: "↔";
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 250, 240, .42);
  border-radius: 999px;
  background: #a44958;
  color: #fff8ee;
  font-size: 1.1rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}

.transformation-comparison input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.transformation-comparison figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.4rem);
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.transformation-studies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.8rem, 1vw, 1rem);
}

.transformation-studies figure {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(210px, 16vw, 300px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, .12);
  background: rgba(255, 250, 240, .035);
  cursor: zoom-in;
}

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

.transformation-studies img:first-child {
  filter: saturate(.75) contrast(.98);
}

.transformation-studies figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(3, 6, 7, .82));
  color: #fff8ee;
}

.transformation-studies strong,
.transformation-studies span {
  display: block;
}

.transformation-studies strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 2rem);
  font-weight: 500;
  line-height: 1;
}

.transformation-studies span {
  margin-top: .35rem;
  color: rgba(255, 250, 240, .72);
  font-size: .78rem;
  line-height: 1.45;
}

.gallery-signature-details {
  display: grid;
  grid-template-columns: minmax(260px, .35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-left: clamp(1.25rem, 6vw, 8rem);
}

.signature-detail-copy h2 {
  margin: .35em 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.5vw, 5.8rem);
  font-weight: 500;
  line-height: .95;
}

.gallery-signature-details .signature-detail-strip {
  width: 100%;
  margin: 0;
  padding-right: clamp(1.25rem, 6vw, 8rem);
}

.gallery-collection-rails {
  padding: clamp(3rem, 4.5vw, 4.8rem) 0;
  background: #050b0c;
  color: #fff8ee;
}

.collection-rail {
  grid-auto-columns: minmax(210px, 1fr);
}

.collection-rail figure {
  min-height: clamp(150px, 11vw, 220px);
}

.collection-rail figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: .95;
}

.gallery-imagine-cta {
  position: relative;
  display: grid;
  min-height: clamp(500px, 60vh, 700px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff8ee;
  text-align: center;
}

.gallery-imagine-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(164, 73, 88, .12), transparent 25rem),
    linear-gradient(180deg, rgba(3, 6, 7, .68), rgba(3, 6, 7, .82));
}

.gallery-imagine-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.08);
}

.gallery-imagine-cta h2 {
  max-width: 760px;
  margin: .2em auto .42em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.8rem);
  font-weight: 500;
  line-height: .88;
  text-wrap: balance;
}

.gallery-editorial-page .gallery-experience-band {
  background: #fbf5ec;
}

.gallery-editorial-page .gallery-featured-story,
.gallery-editorial-page .gallery-transformation,
.gallery-editorial-page .gallery-collection-rails {
  background: #050b0c;
  color: #fff8ee;
}

.gallery-editorial-page .gallery-editorial-masonry {
  background: #fbf5ec;
}

.gallery-editorial-page .gallery-detail-browser,
.gallery-editorial-page .gallery-signature-details {
  background: #fffaf2;
  color: #071012;
}

@media (max-width: 1100px) {
  .experience-cover-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: .8rem;
  }

  .gallery-featured-story,
  .gallery-editorial-masonry,
  .gallery-transformation,
  .gallery-signature-details {
    grid-template-columns: 1fr;
  }

  .featured-story-copy,
  .masonry-statement,
  .transformation-copy {
    max-width: 720px;
  }

  .masonry-cluster {
    padding-right: clamp(1.25rem, 6vw, 8rem);
  }

  .masonry-soft-image {
    width: 70vw;
    height: 34vw;
  }

  .gallery-signature-details {
    padding-right: 0;
  }
}

@media (max-width: 680px) {
  .gallery-campaign-hero {
    min-height: 92svh;
    padding-top: 8rem;
  }

  .gallery-campaign-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.8rem);
  }

  .gallery-campaign-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-cover-grid {
    width: calc(100% - 2rem);
  }

  .experience-cover-grid figure {
    min-height: 360px;
  }

  .gallery-featured-story,
  .gallery-transformation {
    padding-inline: 1rem;
  }

  .featured-story-media,
  .masonry-cluster,
  .transformation-frame {
    grid-template-columns: 1fr;
  }

  .transformation-comparison {
    min-height: 330px;
  }

  .transformation-studies {
    grid-template-columns: 1fr;
  }

  .transformation-studies figure {
    min-height: 260px;
  }

  .featured-story-media .story-hero,
  .masonry-wide,
  .masonry-square,
  .masonry-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .masonry-cluster {
    grid-auto-rows: minmax(240px, 70vw);
    padding-inline: 1rem;
  }

  .masonry-statement {
    padding: 3rem 1rem 1rem;
  }

  .masonry-soft-image {
    position: relative;
    width: 100%;
    height: 260px;
    mask-image: none;
  }

  .detail-strip,
  .signature-detail-strip,
  .collection-rail {
    width: calc(100% - 2rem);
    grid-auto-columns: 68%;
  }

  .gallery-signature-details {
    padding-left: 1rem;
  }

  .gallery-signature-details .signature-detail-strip {
    padding-right: 1rem;
  }

  .transformation-frame > i {
    top: 50%;
  }
}

@media (max-width: 1020px) {
  .gallery-page-hero {
    min-height: 86svh;
  }

  .gallery-page-hero__media {
    grid-template-columns: 1fr;
  }

  .gallery-page-hero__media img:not(:first-child) {
    display: none;
  }

  .gallery-collection__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-collection__intro h2,
  .gallery-collection__intro p:last-child {
    max-width: 760px;
  }

  .gallery-layout,
  .gallery-layout--editorial,
  .gallery-layout--masonry,
  .gallery-layout--ribbon,
  .gallery-layout--tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(210px, 29vw, 330px);
  }
}

@media (max-width: 640px) {
  .gallery-page-hero {
    min-height: 92svh;
    padding-top: 8rem;
  }

  .gallery-page-hero__copy h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .gallery-index {
    position: relative;
    bottom: auto;
  }

  .gallery-index a {
    flex: 1 1 calc(50% - .55rem);
  }

  .gallery-collection {
    padding-block: 4.5rem;
  }

  .gallery-collection--split {
    background: #fbf3e8;
  }

  .gallery-layout,
  .gallery-layout--editorial,
  .gallery-layout--masonry,
  .gallery-layout--ribbon,
  .gallery-layout--tiles {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, 72vw);
  }

  .gallery-layout .wide,
  .gallery-layout .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-page-cta {
    min-height: 560px;
  }
}

.js-gallery-trigger:focus-visible {
  outline: 2px solid #ffd9b3;
  outline-offset: 5px;
}

.pswp {
  --pswp-bg: rgba(3, 6, 7, .96);
  --pswp-icon-color: rgba(255,250,240,.92);
  --pswp-icon-color-secondary: rgba(3,6,7,.92);
  --pswp-icon-stroke-color: rgba(255,250,240,.16);
  --pswp-icon-stroke-width: 1px;
  --pswp-error-text-color: rgba(255,250,240,.82);
  z-index: 1000000 !important;
  font-family: var(--sans);
}

.pswp__button {
  opacity: .92;
}

.pswp__button--arrow .pswp__icn {
  width: 72px;
  height: 72px;
  padding: 15px;
  border: 1px solid rgba(255,250,240,.18);
  border-radius: 999px;
  background: rgba(255,250,240,.045);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.pswp__button--arrow:hover .pswp__icn {
  border-color: rgba(164,73,88,.75);
  background: rgba(164,73,88,.18);
  transform: translateY(-2px);
}

.pswp__custom-caption {
  position: absolute;
  left: 50%;
  bottom: clamp(1.1rem, 2vw, 2rem);
  z-index: 1;
  width: min(740px, calc(100% - 2rem));
  transform: translateX(-50%);
  color: rgba(255,250,240,.74);
  font-size: clamp(.9rem, .8vw, 1.02rem);
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
}

.pswp__counter {
  color: #b66a70;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .24em;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(164,73,88,.14), transparent 30rem),
    rgba(3,6,7,.94);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.gallery-lightbox__figure {
  position: absolute;
  inset: clamp(5.5rem, 7vh, 7rem) clamp(6rem, 8vw, 9rem) clamp(5.8rem, 7vh, 7.3rem);
  display: grid;
  place-items: center;
  margin: 0;
}

.gallery-lightbox__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,250,240,.16);
  pointer-events: none;
}

.gallery-lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  filter: saturate(.94) contrast(1.04);
  box-shadow: 0 34px 110px rgba(0,0,0,.48);
  transition: opacity .48s var(--ease), transform .48s var(--ease);
}

.gallery-lightbox__image.is-loaded {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gallery-lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(-3.3rem, -4vh, -2.35rem);
  width: min(720px, 90vw);
  transform: translateX(-50%);
  color: rgba(255,250,240,.72);
  font-size: clamp(.9rem, .85vw, 1.05rem);
  line-height: 1.45;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 1px solid rgba(255,250,240,.2);
  background: rgba(255,250,240,.045);
  color: rgba(255,250,240,.88);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  border-color: rgba(164,73,88,.86);
  background: rgba(164,73,88,.2);
  transform: translateY(-2px);
}

.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  outline: 2px solid #ffd9b3;
  outline-offset: 4px;
}

.gallery-lightbox__close {
  position: absolute;
  top: clamp(1rem, 2vw, 2rem);
  right: clamp(1rem, 2vw, 2rem);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox__close span {
  position: relative;
  top: -1px;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  width: clamp(58px, 5vw, 82px);
  height: clamp(58px, 5vw, 82px);
  transform: translateY(-50%);
  border-radius: 999px;
}

.gallery-lightbox__nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.gallery-lightbox__nav svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-lightbox__nav--prev {
  left: clamp(1rem, 2.4vw, 2.6rem);
}

.gallery-lightbox__nav--next {
  right: clamp(1rem, 2.4vw, 2.6rem);
}

.gallery-lightbox__count {
  position: absolute;
  top: clamp(1.7rem, 2.2vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  color: #b66a70;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .3em;
}

@media (max-width: 760px) {
  .gallery-lightbox {
    padding: 0;
  }

  .gallery-lightbox__figure {
    inset: 5rem 1rem 7.25rem;
  }

  .gallery-lightbox__image {
    max-width: 100%;
    max-height: 100%;
  }

  .gallery-lightbox__caption {
    bottom: -3.1rem;
    font-size: .86rem;
  }

  .gallery-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .gallery-lightbox__count {
    top: 1.85rem;
    left: 1rem;
    transform: none;
  }

  .gallery-lightbox__nav {
    top: auto;
    bottom: 1rem;
    width: calc(50% - 1.5rem);
    height: 56px;
    transform: none;
    border-radius: 999px;
  }

  .gallery-lightbox__nav:hover {
    transform: translateY(-2px);
  }

  .gallery-lightbox__nav--prev {
    left: 1rem;
  }

  .gallery-lightbox__nav--next {
    right: 1rem;
  }
}

/* Agency-reference category page: balloon backdrops. */
.agency-balloon-body {
  --agency-ink: #020b0d;
  --agency-ink-soft: #061416;
  --agency-cream: #f7f1e9;
  --agency-cream-2: #eee6da;
  --agency-red: #a44958;
  --agency-red-deep: #74303c;
  --agency-red-soft: #b66a70;
  --champagne: #a44958;
  --gold: #a44958;
  --gold-soft: #b66a70;
  --agency-cocoa: #231715;
  --agency-line: rgba(2, 11, 13, .13);
  --agency-line-light: rgba(247, 241, 233, .14);
  --agency-max: 1260px;
  background: var(--agency-cream);
  color: var(--agency-ink);
}

.agency-balloon-body::before,
.agency-balloon-body .cursor-aura,
.agency-balloon-body .scroll-meter {
  display: none;
}

.agency-balloon-body h1,
.agency-balloon-body h2,
.agency-balloon-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.agency-balloon-body p {
  margin: 0;
}

.agency-balloon-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 70;
  height: 92px;
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr) 140px;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(2rem, 4.2vw, 4.7rem);
  color: #fffaf4;
  border-bottom: 1px solid rgba(255, 250, 244, .13);
  background: linear-gradient(180deg, rgba(2, 7, 8, .72), rgba(2, 7, 8, .03));
}

.agency-balloon-logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.agency-balloon-logo img {
  width: clamp(132px, 10vw, 176px);
  filter: drop-shadow(0 13px 26px rgba(0, 0, 0, .36));
}

.agency-balloon-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.75vw, 1.85rem);
  min-width: 0;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.agency-balloon-nav a {
  position: relative;
  padding: .35rem 0;
  color: rgba(255, 250, 244, .9);
  white-space: nowrap;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

.agency-balloon-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: .1rem;
  bottom: -.16rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}

.agency-balloon-nav a:hover,
.agency-balloon-nav a:focus-visible,
.agency-balloon-nav a.is-active {
  color: var(--agency-red);
}

.agency-balloon-nav a:hover::after,
.agency-balloon-nav a:focus-visible::after,
.agency-balloon-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.agency-balloon-header__cta,
.agency-btn,
.agency-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 43px;
  padding: .9rem 1.35rem;
  border: 1px solid transparent;
  color: #fffaf4;
  background: var(--agency-red);
  box-shadow: 0 16px 34px rgba(88, 25, 34, .24);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .26s var(--ease), background .26s var(--ease), border-color .26s var(--ease);
}

.agency-balloon-header__cta {
  justify-self: end;
  min-height: 38px;
  padding: .82rem 1.05rem;
  font-size: .58rem;
}

.agency-btn:hover,
.agency-btn:focus-visible,
.agency-balloon-header__cta:hover,
.agency-balloon-header__cta:focus-visible,
.agency-outline-btn:hover,
.agency-outline-btn:focus-visible {
  transform: translateY(-2px);
}

.agency-btn--filled:hover,
.agency-btn--filled:focus-visible,
.agency-balloon-header__cta:hover,
.agency-balloon-header__cta:focus-visible {
  background: var(--agency-red-soft);
}

.agency-btn--text {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fffaf4;
}

.agency-btn--text span,
.agency-link span,
.agency-occasion-card a span,
.agency-footer-gallery > a span {
  display: inline-block;
  margin-left: .45rem;
}

.agency-outline-btn {
  margin: clamp(2.2rem, 3.8vw, 3.25rem) auto 0;
  display: flex;
  color: var(--agency-red);
  background: transparent;
  box-shadow: none;
  border-color: var(--agency-red);
}

.agency-balloon-page {
  --agency-feature-band-height: clamp(190px, 18dvh, 250px);
  overflow: hidden;
  background: var(--agency-cream);
}

.agency-balloon-hero {
  position: relative;
  min-height: calc(100dvh - var(--agency-feature-band-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #010607;
}

.agency-balloon-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 52%;
  filter: saturate(.96) contrast(1.08) brightness(.86);
}

.agency-balloon-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 6, 7, .97) 0%, rgba(1, 6, 7, .88) 24%, rgba(1, 6, 7, .36) 51%, rgba(1, 6, 7, .18) 76%, rgba(1, 6, 7, .42) 100%),
    linear-gradient(0deg, rgba(1, 6, 7, .42), rgba(1, 6, 7, .04) 56%),
    radial-gradient(circle at 18% 68%, rgba(1, 6, 7, .72), transparent 23rem);
}

.agency-balloon-hero::after,
.agency-occasions::after,
.agency-balloon-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
}

.agency-balloon-hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 2rem));
  margin-left: clamp(1.5rem, 9.5vw, 9.1rem);
  display: grid;
  row-gap: clamp(1.1rem, 1.45dvh, 1.55rem);
  padding-top: clamp(6.5rem, 10dvh, 9rem);
  color: #fffaf4;
}

.agency-balloon-breadcrumb {
  margin: 0;
  color: rgba(255, 250, 244, .72);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.agency-balloon-breadcrumb::first-letter {
  color: #fffaf4;
}

.agency-balloon-hero__content h1 {
  margin: 0;
  font-size: clamp(4.5rem, 6.5vw, 7.25rem);
  line-height: .9;
  color: #fffaf4;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .36);
}

.agency-balloon-hero__content h1 span {
  display: block;
  color: var(--agency-red);
}

.agency-balloon-hero__content > p:not(.agency-balloon-breadcrumb) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 250, 244, .78);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.02vw, 1.24rem);
  line-height: 1.46;
}

.agency-balloon-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: .25rem;
}

.agency-balloon-features {
  box-sizing: border-box;
  height: var(--agency-feature-band-height);
  min-height: var(--agency-feature-band-height);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  padding: clamp(2rem, 3.1dvh, 2.75rem) clamp(1.5rem, 6vw, 5rem);
  background: #8f3b47;
  border-bottom: 1px solid rgba(2, 11, 13, .18);
  color: #fffaf4;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 244, .18),
    inset 0 -1px 0 rgba(2, 11, 13, .18);
}

.agency-balloon-features article {
  min-height: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 0 clamp(1.2rem, 2.7vw, 3.2rem);
  text-align: center;
  border-right: 1px solid rgba(255, 250, 244, .18);
}

.agency-balloon-features article:last-child {
  border-right: 0;
}

.agency-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 1.15rem;
  color: rgba(255, 250, 244, .94);
}

.agency-icon::before,
.agency-icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.agency-icon--arch::before {
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 38px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
}

.agency-icon--arch::after {
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 30px;
  border: 2px dotted currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  opacity: .78;
}

.agency-icon--circle::before {
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.agency-icon--grid::before {
  inset: 8px;
  border: 1px solid currentColor;
  background:
    repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 8px),
    repeating-linear-gradient(0deg, currentColor 0 1px, transparent 1px 8px);
  opacity: .88;
}

.agency-icon--balloons::before {
  width: 19px;
  height: 25px;
  left: 13px;
  top: 9px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 44% 44%;
}

.agency-icon--balloons::after {
  width: 19px;
  height: 25px;
  right: 12px;
  top: 4px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 44% 44%;
  box-shadow: -9px 22px 0 -8px currentColor, -2px 32px 0 -7px currentColor;
}

.agency-balloon-features h2 {
  margin-bottom: .72rem;
  font-family: var(--sans);
  color: #fffaf4;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.agency-balloon-features p {
  max-width: 190px;
  color: rgba(255, 250, 244, .78);
  font-family: var(--serif);
  font-size: .98rem;
  line-height: 1.34;
}

.agency-purpose {
  display: grid;
  grid-template-columns: minmax(240px, 315px) minmax(0, 760px);
  gap: clamp(3.5rem, 7.4vw, 7.3rem);
  align-items: center;
  max-width: 1210px;
  margin: 0 auto;
  padding: clamp(4.8rem, 7vw, 6.3rem) clamp(1.35rem, 4vw, 3rem);
  background: var(--agency-cream);
}

.agency-kicker {
  margin-bottom: 1rem;
  color: var(--agency-red);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.agency-purpose h2,
.agency-custom h2 {
  color: #1d1413;
  font-size: clamp(3.15rem, 4.1vw, 5rem);
  line-height: .9;
}

.agency-purpose__copy > p:not(.agency-kicker),
.agency-custom__copy > p:not(.agency-kicker) {
  margin-top: 1.3rem;
  color: rgba(30, 20, 18, .76);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.45;
}

.agency-purpose ul,
.agency-custom ul {
  display: grid;
  gap: .82rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.agency-purpose li,
.agency-custom li {
  position: relative;
  padding-left: 1.65rem;
  color: #271b19;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
}

.agency-purpose li::before,
.agency-custom li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -.08rem;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border: 1px solid var(--agency-red);
  border-radius: 50%;
  color: var(--agency-red);
  font-size: .55rem;
  line-height: 1;
}

.agency-link {
  display: inline-flex;
  margin-top: 2rem;
  color: var(--agency-red-deep);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.agency-purpose__image,
.agency-custom figure {
  margin: 0;
  overflow: hidden;
  background: #dac8b7;
}

.agency-purpose__image {
  min-height: 548px;
}

.agency-purpose__image img,
.agency-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04) brightness(1.02);
}

.agency-purpose__image img {
  object-position: 52% 53%;
}

.agency-occasions {
  position: relative;
  padding: clamp(3.9rem, 5.6vw, 5rem) clamp(1.25rem, 4.8vw, 5rem) clamp(4rem, 5.7vw, 5rem);
  overflow: hidden;
  isolation: isolate;
  color: #fffaf4;
  background: #030a0b;
}

.agency-occasions::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .32;
  background: none;
}

.agency-occasions > * {
  position: relative;
  z-index: 2;
}

.agency-section-heading {
  width: min(var(--agency-max), 100%);
  margin: 0 auto 2.6rem;
  display: grid;
  row-gap: 1.35rem;
  text-align: left;
}

.agency-section-heading .agency-kicker {
  margin-bottom: 0;
  text-align: left;
}

.agency-section-heading h2 {
  max-width: 940px;
  color: #fffaf4;
  font-size: clamp(3rem, 4.4vw, 5.3rem);
  line-height: .88;
  text-wrap: balance;
}

.agency-section-copy {
  max-width: 530px;
  margin-top: 0;
  color: rgba(255, 250, 244, .66);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.05vw, 1.2rem);
  line-height: 1.45;
}

.agency-card-grid {
  width: min(var(--agency-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.agency-card-grid--extended {
  column-gap: .9rem;
  row-gap: clamp(1.45rem, 2vw, 2rem);
}

.agency-occasion-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(182, 106, 112, .42);
  background: #8f3d49;
}

.agency-occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.94);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.agency-occasion-card:nth-child(1) img {
  object-position: 48% 41%;
}

.agency-occasion-card:nth-child(2) img {
  object-position: 53% 50%;
}

.agency-occasion-card:nth-child(3) img {
  object-position: 50% 45%;
}

.agency-occasion-card:nth-child(4) img,
.agency-occasion-card:nth-child(6) img,
.agency-occasion-card:nth-child(7) img,
.agency-occasion-card:nth-child(10) img {
  object-position: 50% 47%;
}

.agency-occasion-card:nth-child(5) img,
.agency-occasion-card:nth-child(8) img,
.agency-occasion-card:nth-child(9) img,
.agency-occasion-card:nth-child(11) img,
.agency-occasion-card:nth-child(12) img {
  object-position: 50% 50%;
}

.agency-occasion-card:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.08) brightness(1);
}

.agency-occasion-card div {
  min-height: 136px;
  padding: 1.15rem 1.15rem 1.1rem;
  background: #8f3d49;
}

.agency-card-grid--extended .agency-occasion-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 154px;
}

.agency-occasion-card h3 {
  color: #fffaf4;
  font-size: 1.56rem;
  line-height: 1;
}

.agency-occasion-card p {
  max-width: 245px;
  margin-top: .62rem;
  color: rgba(255, 250, 244, .8);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.34;
}

.agency-occasion-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: #fffaf4;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.agency-gallery-cta {
  min-height: 60px;
  margin-top: clamp(2.65rem, 4.4vw, 4.1rem);
  margin-left: calc((100% - min(var(--agency-max), 100%)) / 2);
  margin-right: auto;
  padding: 1.18rem 2.05rem;
  color: #fffaf4;
  background: linear-gradient(180deg, #a44958, #78323a);
  border-color: rgba(214, 136, 148, .82);
  box-shadow: 0 22px 54px rgba(164, 73, 88, .24);
  font-size: .76rem;
}

.agency-gallery-cta:hover,
.agency-gallery-cta:focus-visible {
  color: #fffaf4;
  background: linear-gradient(180deg, #b66a70, #843844);
  border-color: rgba(255, 250, 244, .62);
}

.agency-gallery-cta span {
  display: inline-block;
  margin-left: .6rem;
}

.agency-custom {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(3.2rem, 6.3vw, 6.4rem);
  align-items: center;
  max-width: 1265px;
  margin: 0 auto;
  padding: clamp(4.1rem, 5.8vw, 5.2rem) clamp(1.25rem, 4.8vw, 5rem);
  background: var(--agency-cream);
}

.agency-custom figure {
  height: 452px;
  min-height: 0;
}

.agency-custom figure img {
  object-position: 50% 48%;
}

.agency-custom__copy {
  max-width: 465px;
}

.agency-custom .agency-btn {
  margin-top: 1.8rem;
}

.agency-balloon-cta {
  position: relative;
  min-height: 286px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: #fffaf4;
  background: #020b0d;
}

.agency-balloon-cta img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(.65) contrast(1.08) brightness(.48);
  transform: scale(1.05);
}

.agency-balloon-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 11, 13, .86), rgba(2, 11, 13, .5), rgba(2, 11, 13, .86)),
    linear-gradient(0deg, rgba(2, 11, 13, .76), rgba(2, 11, 13, .1));
}

.agency-balloon-cta > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.agency-balloon-cta .agency-kicker {
  margin-bottom: .8rem;
}

.agency-balloon-cta h2 {
  color: #fffaf4;
  font-size: clamp(3.25rem, 5vw, 5.8rem);
  line-height: .86;
}

.agency-balloon-cta .agency-btn {
  margin-top: 1.25rem;
}

.agency-balloon-footer {
  position: relative;
  overflow: hidden;
  color: #fffaf4;
  background:
    radial-gradient(circle at 88% 20%, rgba(169, 81, 90, .11), transparent 22rem),
    #020b0d;
  padding: clamp(3.7rem, 5.2vw, 4.7rem) clamp(1.25rem, 5.4vw, 5.5rem) 2.2rem;
}

.agency-balloon-footer > * {
  position: relative;
  z-index: 2;
}

.agency-footer-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.45fr;
  gap: clamp(2rem, 4.1vw, 4.8rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.4rem);
  border-bottom: 1px solid rgba(247, 241, 233, .13);
}

.agency-footer-brand img {
  width: 135px;
  margin-bottom: 1.5rem;
}

.agency-footer-brand p {
  max-width: 215px;
  color: rgba(255, 250, 244, .68);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.45;
}

.agency-socials {
  display: flex;
  gap: 1.35rem;
  margin-top: 1.65rem;
}

.agency-socials a {
  color: #fffaf4;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.agency-balloon-footer nav,
.agency-footer-gallery {
  display: grid;
  align-content: start;
}

.agency-balloon-footer h2 {
  margin-bottom: 1.1rem;
  font-family: var(--sans);
  color: rgba(255, 250, 244, .88);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.agency-balloon-footer nav a {
  margin-bottom: .64rem;
  color: rgba(255, 250, 244, .72);
  font-size: .76rem;
  line-height: 1.32;
}

.agency-balloon-footer nav a:hover,
.agency-balloon-footer nav a:focus-visible,
.agency-footer-gallery > a:hover,
.agency-footer-gallery > a:focus-visible {
  color: var(--agency-red);
}

.agency-footer-gallery > div {
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: .34rem;
}

.agency-footer-gallery img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 244, .14);
}

.agency-footer-gallery > a {
  display: inline-flex;
  width: max-content;
  margin-top: 1.05rem;
  color: var(--agency-red);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.agency-footer-bottom {
  width: min(1160px, 100%);
  margin: 1.9rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255, 250, 244, .58);
  font-size: .72rem;
}

.agency-footer-bottom nav {
  display: flex;
  gap: 1.3rem;
}

.agency-back-top {
  position: absolute;
  right: 1.7rem;
  bottom: 1.5rem;
  z-index: 3;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--agency-red);
  color: #fffaf4;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

@media (max-width: 1180px) {
  .agency-balloon-header {
    grid-template-columns: 150px minmax(0, 1fr) 128px;
    padding-inline: 1.6rem;
  }

  .agency-balloon-nav {
    gap: .9rem;
    font-size: .56rem;
  }

  .agency-purpose,
  .agency-custom {
    gap: 3rem;
  }

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

@media (max-width: 900px) {
  .agency-balloon-header {
    position: absolute;
    height: 78px;
    grid-template-columns: 1fr auto;
  }

  .agency-balloon-nav {
    display: none;
  }

  .agency-balloon-logo img {
    width: 132px;
  }

  .agency-balloon-hero {
    min-height: 640px;
  }

  .agency-balloon-hero__content {
    margin-left: 1.25rem;
    padding-top: 5.6rem;
  }

  .agency-balloon-hero__shade {
    background:
      linear-gradient(90deg, rgba(1, 6, 7, .94) 0%, rgba(1, 6, 7, .7) 52%, rgba(1, 6, 7, .32)),
      linear-gradient(0deg, rgba(1, 6, 7, .54), rgba(1, 6, 7, 0) 58%);
  }

  .agency-balloon-features {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 1.2rem;
  }

  .agency-balloon-features article {
    padding: 1.4rem 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 244, .16);
  }

  .agency-balloon-features article:nth-child(odd) {
    border-right: 1px solid rgba(255, 250, 244, .16);
  }

  .agency-balloon-features article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .agency-purpose,
  .agency-custom {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .agency-purpose__image,
  .agency-custom figure {
    min-height: auto;
    aspect-ratio: 1.2 / 1;
  }

  .agency-section-heading {
    text-align: left;
  }

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

@media (max-width: 620px) {
  .agency-balloon-header {
    height: 72px;
    padding-inline: 1rem;
  }

  .agency-balloon-logo img {
    width: 118px;
  }

  .agency-balloon-header__cta {
    min-height: 36px;
    padding-inline: .8rem;
    font-size: .54rem;
    letter-spacing: .12em;
  }

  .agency-balloon-hero {
    min-height: 616px;
  }

  .agency-balloon-hero__image {
    object-position: 62% 50%;
  }

  .agency-balloon-hero__content {
    width: min(350px, calc(100% - 2rem));
  }

  .agency-balloon-breadcrumb {
    margin-bottom: 1.45rem;
    font-size: .52rem;
  }

  .agency-balloon-hero__content h1 {
    font-size: clamp(4rem, 18vw, 5.2rem);
  }

  .agency-balloon-actions {
    flex-wrap: wrap;
    gap: 1.1rem;
  }

  .agency-balloon-features {
    grid-template-columns: 1fr;
    padding-block: 1.4rem;
  }

  .agency-balloon-features article,
  .agency-balloon-features article:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 244, .16);
  }

  .agency-balloon-features article:last-child {
    border-bottom: 0;
  }

  .agency-purpose,
  .agency-custom,
  .agency-occasions {
    padding-inline: 1rem;
  }

  .agency-purpose h2,
  .agency-custom h2,
  .agency-section-heading h2,
  .agency-balloon-cta h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .agency-card-grid {
    grid-template-columns: 1fr;
  }

  .agency-occasion-card {
    grid-template-rows: minmax(220px, 62vw) 1fr;
  }

  .agency-gallery-cta {
    width: 100%;
    min-height: 58px;
    margin-left: 0;
    white-space: normal;
    text-align: center;
  }

  .agency-custom figure,
  .agency-purpose__image {
    aspect-ratio: 1 / 1.06;
  }

  .agency-balloon-cta {
    min-height: 260px;
    padding-inline: 1rem;
  }

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

  .agency-footer-grid {
    gap: 2.1rem;
  }

  .agency-footer-bottom {
    display: grid;
    align-items: start;
  }

  .agency-footer-bottom nav {
    flex-wrap: wrap;
  }

  .agency-back-top {
    right: 1rem;
    bottom: 1rem;
  }
}

/* Balloon category integration with the homepage navigation/footer system. */
.agency-balloon-body .nav-group.is-current > summary {
  color: #b66a70;
}

.agency-balloon-body .button.gold,
.agency-balloon-body .reference-header .mega-nav > .button.gold,
.agency-balloon-body .universal-footer .footer-journey__button {
  background: linear-gradient(180deg, #a44958, #78323a) !important;
  border-color: rgba(182, 106, 112, .78) !important;
  color: #fffaf4 !important;
}

.agency-balloon-body .button.gold:hover,
.agency-balloon-body .reference-header .mega-nav > .button.gold:hover,
.agency-balloon-body .universal-footer .footer-journey__button:hover {
  background: linear-gradient(180deg, #b66a70, #843844) !important;
}

.agency-balloon-body .agency-balloon-hero__content {
  padding-top: clamp(6.75rem, 10dvh, 9.5rem);
}

@media (min-width: 901px) and (max-width: 1480px),
       (min-width: 901px) and (max-height: 840px) {
  .agency-balloon-page {
    --agency-feature-band-height: clamp(150px, 15dvh, 210px);
  }

  .agency-balloon-body .agency-balloon-hero {
    min-height: clamp(540px, calc(100dvh - var(--agency-feature-band-height)), 760px);
  }

  .agency-balloon-body .agency-balloon-hero__content {
    width: min(650px, calc(100% - 2rem));
    margin-left: clamp(1.35rem, 7.4vw, 5.8rem);
    row-gap: clamp(.72rem, 1.15dvh, 1.05rem);
    padding-top: clamp(7.7rem, 17dvh, 10.8rem);
  }

  .agency-balloon-breadcrumb {
    font-size: .54rem;
    letter-spacing: .16em;
  }

  .agency-balloon-body .agency-balloon-hero__content h1 {
    max-width: 680px;
    font-size: clamp(3.85rem, 5.15vw, 5.65rem);
    line-height: .92;
  }

  .agency-balloon-body .agency-balloon-hero__content > p:not(.agency-balloon-breadcrumb) {
    max-width: 520px;
    font-size: clamp(.96rem, .9vw, 1.08rem);
    line-height: 1.42;
  }

  .agency-balloon-actions {
    gap: 1.2rem;
    margin-top: .05rem;
  }

  .agency-balloon-body .agency-btn {
    min-height: 40px;
    padding: .78rem 1.1rem;
    font-size: .58rem;
    letter-spacing: .15em;
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .agency-balloon-page {
    --agency-feature-band-height: clamp(120px, 13dvh, 170px);
  }

  .agency-balloon-body .agency-balloon-hero {
    align-items: start;
    min-height: clamp(480px, calc(100dvh - var(--agency-feature-band-height)), 650px);
  }

  .agency-balloon-body .agency-balloon-hero__content {
    width: min(560px, calc(100% - 2rem));
    row-gap: .58rem;
    padding-top: clamp(10.4rem, 24dvh, 12.6rem);
  }

  .agency-balloon-body .agency-balloon-hero__content h1 {
    font-size: clamp(3rem, 4.25vw, 4.2rem);
    line-height: .94;
  }

  .agency-balloon-body .agency-balloon-hero__content > p:not(.agency-balloon-breadcrumb) {
    max-width: 460px;
    font-size: .86rem;
    line-height: 1.36;
  }

  .agency-balloon-body .agency-btn {
    min-height: 36px;
    padding: .66rem .92rem;
    font-size: .52rem;
  }
}

@media (min-width: 1800px) {
  .agency-balloon-body .agency-balloon-hero {
    min-height: calc(100dvh - var(--agency-feature-band-height));
  }

  .agency-balloon-body .agency-balloon-hero__content {
    width: min(900px, calc(100% - 10rem));
    margin-left: max(6rem, calc((100vw - 1860px) / 2 + 4rem));
    row-gap: clamp(1.35rem, 1.7dvh, 2rem);
    padding-top: clamp(7.5rem, 10.5dvh, 10.5rem);
  }

  .agency-balloon-body .agency-balloon-hero__content h1 {
    font-size: clamp(6.15rem, 4.72vw, 8rem);
    line-height: .88;
    max-width: 900px;
  }

  .agency-balloon-body .agency-balloon-hero__content > p:not(.agency-balloon-breadcrumb) {
    max-width: 650px;
    font-size: 1.36rem;
    line-height: 1.5;
  }

  .agency-balloon-body .agency-balloon-actions {
    gap: 2rem;
    margin-top: .45rem;
  }

  .agency-balloon-body .agency-btn,
  .agency-balloon-body .agency-outline-btn {
    min-height: 50px;
    padding: 1rem 1.55rem;
  }

  .agency-balloon-body .agency-balloon-features {
    min-height: var(--agency-feature-band-height);
    padding: clamp(2rem, 3dvh, 2.75rem) max(6rem, calc((100vw - 1880px) / 2 + 4rem));
  }

  .agency-balloon-body .agency-balloon-features article {
    min-height: 0;
  }

  .agency-balloon-body .agency-balloon-features h2 {
    font-size: .82rem;
  }

  .agency-balloon-body .agency-balloon-features p {
    max-width: 230px;
    font-size: 1.1rem;
  }

  .agency-balloon-body .agency-purpose {
    max-width: 1760px;
    grid-template-columns: minmax(360px, 440px) minmax(0, 1080px);
    gap: clamp(5rem, 7vw, 8.5rem);
    align-items: start;
    padding-top: clamp(4.5rem, 4.8vw, 5.4rem);
    padding-bottom: clamp(4.5rem, 4.8vw, 5.4rem);
  }

  .agency-balloon-body .agency-purpose h2,
  .agency-balloon-body .agency-custom h2 {
    font-size: clamp(4.45rem, 3.55vw, 6rem);
  }

  .agency-balloon-body .agency-purpose__copy > p:not(.agency-kicker),
  .agency-balloon-body .agency-custom__copy > p:not(.agency-kicker) {
    font-size: 1.16rem;
  }

  .agency-balloon-body .agency-purpose__image {
    height: 610px;
    min-height: 0;
  }

  .agency-balloon-body .agency-occasions {
    padding-top: clamp(4.6rem, 5.4vw, 6.2rem);
    padding-bottom: clamp(4.7rem, 5.4vw, 6.2rem);
  }

  .agency-balloon-body .agency-section-heading {
    width: min(1760px, calc(100% - 10rem));
    margin-bottom: 3rem;
  }

  .agency-balloon-body .agency-section-heading h2 {
    max-width: 1180px;
    font-size: clamp(4.15rem, 3.55vw, 6rem);
  }

  .agency-balloon-body .agency-section-copy {
    max-width: 620px;
    font-size: 1.22rem;
  }

  .agency-balloon-body .agency-card-grid {
    width: min(1760px, calc(100% - 10rem));
    gap: 1rem;
  }

  .agency-balloon-body .agency-card-grid.agency-card-grid--extended {
    column-gap: 1rem;
    row-gap: clamp(2rem, 2.1vw, 2.7rem);
  }

  .agency-balloon-body .agency-occasion-card {
    grid-template-rows: 285px 1fr;
  }

  .agency-balloon-body .agency-card-grid--extended .agency-occasion-card {
    grid-template-rows: 255px 1fr;
  }

  .agency-balloon-body .agency-occasion-card div {
    min-height: 160px;
    padding: 1.35rem 1.35rem 1.3rem;
  }

  .agency-balloon-body .agency-card-grid--extended .agency-occasion-card div {
    min-height: 176px;
  }

  .agency-balloon-body .agency-occasion-card h3 {
    font-size: 1.84rem;
  }

  .agency-balloon-body .agency-occasion-card p {
    max-width: 300px;
    font-size: 1.08rem;
  }

  .agency-balloon-body .agency-gallery-cta {
    min-height: 66px;
    margin-left: calc((100% - min(1760px, calc(100% - 10rem))) / 2);
    padding: 1.32rem 2.35rem;
    font-size: .82rem;
  }

  .agency-balloon-body .agency-custom {
    max-width: 1760px;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .72fr);
    gap: clamp(5rem, 7vw, 8rem);
    padding-top: clamp(5.3rem, 6vw, 6.8rem);
    padding-bottom: clamp(5.3rem, 6vw, 6.8rem);
  }

  .agency-balloon-body .agency-custom figure {
    height: 590px;
  }

  .agency-balloon-body .agency-custom__copy {
    max-width: 540px;
  }

  .agency-balloon-body .agency-balloon-cta {
    min-height: 340px;
  }

  .agency-balloon-body .agency-balloon-cta h2 {
    font-size: clamp(4rem, 4.4vw, 6.7rem);
  }

  .agency-balloon-body .universal-footer .footer-grid {
    width: min(1720px, 100%);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .agency-balloon-page {
    --agency-feature-band-height: clamp(120px, 13dvh, 170px);
  }

  .agency-balloon-body .agency-balloon-hero {
    align-items: start;
    min-height: clamp(480px, calc(100dvh - var(--agency-feature-band-height)), 650px);
  }

  .agency-balloon-body .agency-balloon-hero__content {
    width: min(560px, calc(100% - 2rem));
    margin-left: clamp(1.35rem, 7.4vw, 5.8rem);
    row-gap: .58rem;
    padding-top: clamp(10.4rem, 24dvh, 12.6rem);
  }

  .agency-balloon-body .agency-balloon-hero__content h1 {
    max-width: 580px;
    font-size: clamp(3rem, 4.25vw, 4.2rem);
    line-height: .94;
  }

  .agency-balloon-body .agency-balloon-hero__content > p:not(.agency-balloon-breadcrumb) {
    max-width: 460px;
    font-size: .86rem;
    line-height: 1.36;
  }

  .agency-balloon-body .agency-balloon-actions {
    gap: 1rem;
    margin-top: 0;
  }

  .agency-balloon-body .agency-btn,
  .agency-balloon-body .agency-outline-btn {
    min-height: 36px;
    padding: .66rem .92rem;
    font-size: .52rem;
  }
}

/* Gallery page final concept-match layer. Keep inherited header/footer, rebuild body. */
body:has(.gallery-build-v2) {
  background: #050b0c;
}

.gallery-build-v2 {
  background: #050b0c !important;
  color: #fff8ee !important;
}

.gallery-build-v2 .gallery-campaign-hero,
.gallery-build-v2 .gallery-experience-band,
.gallery-build-v2 .gallery-featured-story,
.gallery-build-v2 .gallery-editorial-masonry,
.gallery-build-v2 .gallery-detail-browser,
.gallery-build-v2 .gallery-transformation,
.gallery-build-v2 .gallery-signature-details,
.gallery-build-v2 .gallery-collection-rails,
.gallery-build-v2 .gallery-imagine-cta {
  display: none !important;
}

.gallery-build-v2 .gallery-v2-hero {
  min-height: 600px !important;
  height: 72svh;
  max-height: 760px;
  padding: clamp(8.4rem, 10vw, 10.2rem) clamp(1.6rem, 5.6vw, 5.6rem) clamp(3rem, 4vw, 4.2rem) !important;
  background: #050b0c !important;
}

.gallery-build-v2 .gallery-v2-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 8, 9, .96) 0%, rgba(3, 8, 9, .84) 30%, rgba(3, 8, 9, .22) 64%, rgba(3, 8, 9, .66) 100%),
    linear-gradient(180deg, rgba(3, 8, 9, .34) 0%, rgba(3, 8, 9, .04) 48%, #050b0c 100%) !important;
}

.gallery-build-v2 .gallery-v2-hero img {
  width: 76% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: saturate(.88) contrast(1.13) brightness(.7) !important;
}

.gallery-build-v2 .gallery-v2-hero__copy {
  max-width: 510px !important;
}

.gallery-build-v2 .gallery-v2-hero h1 {
  max-width: 510px !important;
  margin: .22em 0 .25em !important;
  font-size: clamp(3.15rem, 4.65vw, 6.15rem) !important;
  line-height: .91 !important;
}

.gallery-build-v2 .gallery-v2-hero p:not(.eyebrow) {
  max-width: 390px !important;
  font-size: .98rem !important;
  line-height: 1.74 !important;
}

.gallery-build-v2 .gallery-v2-categories {
  padding: 1.4rem clamp(1.5rem, 3vw, 3rem) clamp(4.2rem, 5vw, 5.4rem) !important;
  background: #050b0c !important;
}

.gallery-build-v2 .gallery-v2-category-grid {
  width: min(1500px, 100%) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: .35rem !important;
}

.gallery-build-v2 .gallery-v2-category-grid button {
  min-height: clamp(245px, 17vw, 320px) !important;
  border-color: rgba(255, 248, 238, .18) !important;
}

.gallery-build-v2 .gallery-v2-category-grid strong {
  font-size: clamp(1.6rem, 2vw, 2.55rem) !important;
}

.gallery-build-v2 .eo-dynamic-gallery {
  padding: clamp(4.4rem, 5.8vw, 6.2rem) clamp(1.5rem, 3vw, 3rem) clamp(4.8rem, 6vw, 6.6rem) !important;
  background: #050b0c !important;
  color: #fff8ee !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro {
  display: grid !important;
  grid-template-columns: minmax(240px, .9fr) minmax(280px, .78fr) !important;
  gap: clamp(2rem, 8vw, 10rem) !important;
  align-items: end !important;
  width: min(1280px, 100%) !important;
  margin: 0 auto 2.15rem !important;
  text-align: left !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -.9rem !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro h2 {
  max-width: 560px !important;
  margin: 0 !important;
  color: #fff8ee !important;
  font-size: clamp(2.15rem, 3.3vw, 4rem) !important;
  line-height: .98 !important;
}

.gallery-build-v2 .eo-dynamic-gallery__intro p:last-child {
  max-width: 470px !important;
  margin: 0 !important;
  color: rgba(255, 248, 238, .72) !important;
}

.gallery-build-v2 .eo-gallery-tabs {
  justify-content: flex-start !important;
  width: min(1280px, 100%) !important;
  margin: 0 auto 1.6rem !important;
  gap: 1.45rem !important;
}

.gallery-build-v2 .eo-gallery-tabs button {
  min-height: auto !important;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  padding: 0 0 .55rem !important;
  background: transparent !important;
  color: rgba(255, 248, 238, .58) !important;
  font-size: .65rem !important;
  letter-spacing: .15em !important;
}

.gallery-build-v2 .eo-gallery-tabs button.is-active,
.gallery-build-v2 .eo-gallery-tabs button:hover,
.gallery-build-v2 .eo-gallery-tabs button:focus-visible {
  border-bottom-color: #c47682 !important;
  color: #fff8ee !important;
}

.gallery-build-v2 .eo-gallery-panel {
  display: block !important;
  width: min(1280px, 100%) !important;
  margin: 0 auto !important;
}

.gallery-build-v2 .eo-gallery-panel__copy {
  display: none !important;
}

.gallery-build-v2 .eo-gallery-mosaic {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  grid-auto-rows: clamp(150px, 11.4vw, 215px) !important;
  gap: .35rem !important;
}

.gallery-build-v2 .eo-gallery-mosaic figure {
  border: 1px solid rgba(255, 248, 238, .12) !important;
  background: #101617 !important;
}

.gallery-build-v2 .eo-gallery-mosaic figure.wide {
  grid-column: span 2 !important;
}

.gallery-build-v2 .eo-gallery-mosaic figure.tall {
  grid-row: span 2 !important;
}

.gallery-build-v2 .eo-gallery-mosaic img {
  filter: saturate(.82) contrast(1.08) brightness(.84) !important;
}

.gallery-build-v2 .gallery-v2-cta {
  min-height: 255px !important;
  padding: clamp(3rem, 5vw, 4.6rem) 1.25rem !important;
}

.gallery-build-v2 .gallery-v2-cta h2 {
  max-width: 650px !important;
  font-size: clamp(2.3rem, 3.2vw, 4.2rem) !important;
}

.gallery-build-v2 + .site-footer .footer-journey {
  display: none !important;
}

@media (max-width: 980px) {
  .gallery-build-v2 .gallery-v2-hero {
    height: auto;
    min-height: 720px !important;
  }

  .gallery-build-v2 .gallery-v2-hero img {
    width: 100% !important;
    opacity: .78;
  }

  .gallery-build-v2 .gallery-v2-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gallery-build-v2 .gallery-v2-category-grid button:first-child {
    grid-column: 1 / -1;
  }

  .gallery-build-v2 .eo-dynamic-gallery__intro {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    text-align: center !important;
  }

  .gallery-build-v2 .eo-dynamic-gallery__intro p:last-child {
    margin: 0 auto !important;
  }

  .gallery-build-v2 .eo-gallery-tabs {
    justify-content: center !important;
  }

  .gallery-build-v2 .eo-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: clamp(170px, 31vw, 260px) !important;
  }
}

@media (max-width: 620px) {
  .gallery-build-v2 .gallery-v2-hero {
    min-height: 760px !important;
    padding-top: 7.8rem !important;
  }

  .gallery-build-v2 .gallery-v2-hero h1 {
    font-size: clamp(3rem, 15vw, 4.55rem) !important;
  }

  .gallery-build-v2 .gallery-v2-category-grid,
  .gallery-build-v2 .eo-gallery-mosaic {
    grid-template-columns: 1fr !important;
  }

  .gallery-build-v2 .eo-gallery-tabs {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

  .gallery-build-v2 .eo-gallery-mosaic figure,
  .gallery-build-v2 .eo-gallery-mosaic figure.wide,
  .gallery-build-v2 .eo-gallery-mosaic figure.tall {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 250px !important;
  }
}

/* Final gallery cascade for the dark immersive gallery page. */
.gallery-editorial-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(127, 63, 70, .22), transparent 28rem),
    radial-gradient(circle at 82% 35%, rgba(154, 111, 68, .14), transparent 34rem),
    #050a0b;
  color: #fff8ee;
}

.gallery-editorial-page .eyebrow {
  color: #c47682;
  letter-spacing: .22em;
}

.gallery-campaign-hero,
.gallery-experience-band,
.gallery-featured-story,
.gallery-editorial-masonry,
.gallery-detail-browser,
.gallery-transformation,
.gallery-signature-details,
.gallery-collection-rails {
  background: #050a0b;
  color: #fff8ee;
}

.gallery-campaign-hero {
  min-height: min(920px, 100svh);
  padding-top: clamp(8.5rem, 13vw, 12.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.gallery-campaign-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 7, 8, .95) 0%, rgba(3, 7, 8, .76) 28%, rgba(3, 7, 8, .28) 64%, rgba(3, 7, 8, .75) 100%),
    linear-gradient(180deg, rgba(3, 7, 8, .38) 0%, rgba(3, 7, 8, .1) 48%, #050a0b 100%);
}

.gallery-campaign-hero > img {
  width: 72%;
  left: auto;
  object-position: center;
  filter: saturate(.9) contrast(1.12) brightness(.7);
}

.gallery-campaign-hero__content {
  max-width: 680px;
}

.gallery-campaign-hero h1 {
  max-width: 650px;
  font-size: clamp(3.9rem, 7vw, 8.2rem);
  line-height: .9;
}

.gallery-campaign-hero h1 span {
  color: #d27787;
  font-style: italic;
}

.gallery-experience-band {
  margin-top: -1px;
  padding-top: clamp(1.6rem, 3vw, 3rem);
}

.experience-cover-grid figure {
  min-height: clamp(230px, 20vw, 340px);
  border: 1px solid rgba(255, 248, 238, .16);
  box-shadow: none;
}

.experience-cover-grid strong {
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
}

.eo-dynamic-gallery {
  padding: clamp(4.5rem, 7vw, 7.5rem) clamp(1.25rem, 5vw, 5rem) clamp(5rem, 8vw, 8rem);
  background: linear-gradient(180deg, #050a0b 0%, #081112 42%, #050a0b 100%);
  color: #fff8ee;
}

.eo-dynamic-gallery__intro {
  width: min(980px, 100%);
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  text-align: center;
}

.eo-dynamic-gallery__intro h2 {
  max-width: 820px;
  margin: .22em auto .28em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.3vw, 6.6rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}

.eo-dynamic-gallery__intro p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 248, 238, .72);
  line-height: 1.75;
}

.eo-gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  width: min(980px, 100%);
  margin: 0 auto clamp(2.2rem, 4vw, 3.6rem);
}

.eo-gallery-tabs button {
  min-height: 2.75rem;
  border: 1px solid rgba(255, 248, 238, .16);
  border-radius: 0;
  padding: .85rem 1.05rem;
  background: rgba(255, 248, 238, .035);
  color: rgba(255, 248, 238, .72);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .24s var(--ease), background .24s var(--ease), color .24s var(--ease), transform .24s var(--ease);
}

.eo-gallery-tabs button:hover,
.eo-gallery-tabs button:focus-visible,
.eo-gallery-tabs button.is-active {
  border-color: rgba(210, 119, 135, .86);
  background: rgba(210, 119, 135, .15);
  color: #fff8ee;
}

.eo-gallery-panel {
  display: grid;
  grid-template-columns: minmax(240px, .34fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  width: min(1480px, 100%);
  margin: 0 auto;
}

.eo-gallery-panel__copy {
  position: sticky;
  top: 8.5rem;
  padding-top: .4rem;
}

.eo-gallery-panel__copy h3 {
  margin: .25em 0 .35em;
  color: #fff8ee;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.9rem);
  font-weight: 500;
  line-height: .92;
}

.eo-gallery-panel__copy p:last-child {
  max-width: 420px;
  color: rgba(255, 248, 238, .72);
  line-height: 1.75;
}

.eo-gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 12.6vw, 230px);
  gap: .55rem;
}

.eo-gallery-mosaic figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, .13);
  background: #101617;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(14px);
  animation: galleryTileIn .56s var(--ease) forwards;
  animation-delay: var(--delay);
}

.eo-gallery-mosaic figure.wide {
  grid-column: span 2;
}

.eo-gallery-mosaic figure.tall {
  grid-row: span 2;
}

.eo-gallery-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04) brightness(.86);
  transition: transform .7s var(--ease), filter .45s var(--ease);
}

.eo-gallery-mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 7, 8, .82) 100%);
  opacity: .72;
  transition: opacity .32s var(--ease);
}

.eo-gallery-mosaic figcaption {
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .8rem;
  z-index: 1;
  color: rgba(255, 248, 238, .86);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

.eo-gallery-mosaic figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.08) brightness(.98);
}

.eo-gallery-mosaic figure:hover figcaption,
.eo-gallery-mosaic figure:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .gallery-campaign-hero > img {
    width: 100%;
    opacity: .72;
  }

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

  .experience-cover-grid figure:first-child {
    grid-column: 1 / -1;
  }

  .eo-gallery-panel {
    grid-template-columns: 1fr;
  }

  .eo-gallery-panel__copy {
    position: static;
    text-align: center;
  }

  .eo-gallery-panel__copy p:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  .eo-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 31vw, 250px);
  }
}

@media (max-width: 620px) {
  .gallery-campaign-hero {
    min-height: 86svh;
    padding-top: 7rem;
  }

  .gallery-campaign-hero h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .experience-cover-grid,
  .eo-gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .experience-cover-grid figure,
  .eo-gallery-mosaic figure,
  .eo-gallery-mosaic figure.wide,
  .eo-gallery-mosaic figure.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  .eo-gallery-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .5rem;
    scroll-snap-type: x proximity;
  }

  .eo-gallery-tabs button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}
@media (max-width: 1180px) {
  .reference-header,
  .reference-header.scrolled,
  .reference-header.open {
    display: grid !important;
    grid-template-columns: auto 46px !important;
    grid-template-rows: auto !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 1rem !important;
    min-height: 84px !important;
    padding: 14px 24px !important;
  }

  .reference-header.sticky-reference-header {
    display: none !important;
  }

  .reference-header .header-topline,
  .reference-header.scrolled .header-topline,
  .reference-header.open .header-topline {
    display: none !important;
    visibility: hidden !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .reference-header .brand,
  .reference-header.scrolled .brand,
  .reference-header.open .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    margin: 0 !important;
  }

  .reference-header .brand img,
  .reference-header.scrolled .brand img,
  .reference-header.open .brand img {
    width: clamp(126px, 38vw, 170px) !important;
    max-width: 42vw !important;
  }

  .reference-header .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
  }

  .reference-header .mega-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    top: 84px !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-height: calc(100dvh - 84px) !important;
    grid-column: 1 / -1 !important;
    justify-self: stretch !important;
    transform: none !important;
    z-index: 1200 !important;
    pointer-events: auto !important;
  }

  .reference-header.open .mega-nav {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    min-width: 100vw !important;
    padding: .9rem 24px 1.5rem !important;
    transform: none !important;
  }

  .reference-header .mega-panel .mega-intro,
  .reference-header .services-panel .mega-intro,
  .reference-header .mega-panel:not(.services-panel) .mega-intro {
    display: none !important;
  }

  .reference-header .services-panel,
  .reference-header .mega-panel:not(.services-panel) {
    display: block !important;
    padding-top: 0 !important;
  }

  .reference-header .service-directory,
  .reference-header .mega-panel:not(.services-panel) .mega-columns {
    display: block !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .reference-header .service-directory > div,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div {
    position: relative !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border-top: 1px solid rgba(164,73,88,.16) !important;
  }

  .reference-header .service-directory > div > p,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div > p {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 56px !important;
    width: 100% !important;
    padding: 1rem 2.4rem 1rem 0 !important;
    margin: 0 !important;
    line-height: 1.15 !important;
    z-index: 2 !important;
  }

  .reference-header .service-directory > div > p::before,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div > p::before {
    content: none !important;
  }

  .reference-header .service-directory > div > p::after,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div > p::after {
    right: .15rem !important;
  }

  .reference-header .mega-nav .service-directory a,
  .reference-header .mega-panel:not(.services-panel) .mega-columns a {
    position: relative !important;
    z-index: 1 !important;
    display: none !important;
    padding: .42rem 0 !important;
    margin: 0 !important;
  }

  .reference-header .service-directory > div.is-mobile-category-open a:not(.mega-view-all),
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open a:not(.mega-view-all) {
    display: block !important;
  }

  .reference-header .nav-group[open] > summary,
  .reference-header .service-directory > div.is-mobile-category-open > p,
  .reference-header .mega-panel:not(.services-panel) .mega-columns > div.is-mobile-category-open > p {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
  }
}
