:root {
  --loom-green: #263225;
  --green-soft: #3e5137;
  --parchment: #f6f2e6;
  --ivory: #fffaf0;
  --gold: #b89a5e;
  --ink: #2a241d;
  --oxide: #74382f;
  --slate: #4e5f73;
  --stone: #b8b8ae;
  --line: rgba(42, 36, 29, 0.16);
  --shadow: 0 24px 70px rgba(38, 50, 37, 0.16);
  --image-shadow: 0 22px 62px rgba(42, 36, 29, 0.13), 0 2px 10px rgba(42, 36, 29, 0.06);
  --image-shadow-soft: 0 16px 42px rgba(42, 36, 29, 0.1), 0 1px 6px rgba(42, 36, 29, 0.05);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--parchment);
  font-family: var(--sans);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--ivory);
  background: var(--ink);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--ivory);
  background: var(--ink);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-logo {
  height: 50px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(176px, 18vw, 210px);
  height: 62px;
  object-fit: contain;
  filter: brightness(0);
  transition: height 220ms ease;
}

/* Approved tile mark: light on dark surfaces, deep brown on light surfaces. */
.brand-logo {
  display: none;
}

.brand::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 50px;
  height: 64px;
  background: url("assets/loom-tile-logo-beige.svg") center / contain no-repeat;
}

.home-page .site-header .brand::after,
.contact-page .site-header .brand::after,
.footer .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg");
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.12em;
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav,
.footer nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a,
.footer a,
.nav-trigger {
  position: relative;
}

.nav a::after,
.footer nav a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.footer nav a:hover::after,
.nav-trigger:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 0;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 290px;
  padding: 14px;
  color: var(--ink);
  background: rgba(246, 242, 230, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--image-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(16px);
  max-height: min(72vh, 520px);
  overflow-y: auto;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a,
.nav-menu span {
  padding: 10px 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu span {
  color: rgba(42, 36, 29, 0.46);
}

/* Keep each school-row target generous while drawing the hover treatment only
   beneath the name itself. */
.nav-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.nav-toggle,
.nav-submenu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    align-items: center;
    min-height: 72px;
    padding: 8px 16px;
  }

  .site-header .brand,
  .site-header .nav-toggle {
    position: relative;
    z-index: 42;
  }

  .site-header .brand::after,
  .site-header.is-scrolled .brand::after {
    width: 34px;
    height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 74px;
    min-height: 44px;
    padding: 8px 0 8px 10px;
    color: currentColor;
    background: transparent;
    border: 0;
    border-radius: 0;
    font: 650 .68rem/1 var(--sans);
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-toggle-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 14px;
  }

  .nav-toggle-icon span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: top 240ms ease, transform 240ms ease;
  }

  .nav-toggle-icon span:first-child { top: 3px; }
  .nav-toggle-icon span:last-child { top: 10px; }
  .site-header.nav-open .nav-toggle-icon span:first-child { top: 7px; transform: rotate(45deg); }
  .site-header.nav-open .nav-toggle-icon span:last-child { top: 7px; transform: rotate(-45deg); }

  .site-header .nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    padding: 104px 24px max(36px, env(safe-area-inset-bottom));
    overflow-y: auto;
    color: var(--ink);
    background: var(--ivory);
    font-size: 1rem;
    letter-spacing: .11em;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 240ms ease, visibility 0s linear 240ms, transform 280ms cubic-bezier(.2, .8, .2, 1);
  }

  .site-header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-header.nav-open,
  .site-header.nav-open.is-scrolled {
    color: var(--ink);
    background: transparent;
    backdrop-filter: none;
  }

  .site-header.nav-open .brand::after {
    background-image: url("assets/loom-tile-logo-deep-brown.svg");
  }

  .site-header .nav > a,
  .site-header .nav-dropdown {
    flex: 0 0 auto;
    width: 100%;
    border-top: 1px solid rgba(42, 36, 29, .16);
  }

  .site-header .nav > a,
  .site-header .nav-trigger {
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 18px 0;
  }

  .site-header .nav > a:last-child {
    border-bottom: 1px solid rgba(42, 36, 29, .16);
  }

  .site-header .nav a::after,
  .site-header .nav-trigger::after {
    display: none;
  }

  .site-header .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    padding: 0;
  }

  .nav-submenu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-submenu-toggle span {
    display: block;
    font: 300 1.5rem/1 var(--sans);
    transition: transform 220ms ease;
  }

  .nav-dropdown.submenu-open .nav-submenu-toggle span {
    transform: rotate(45deg);
  }

  .site-header .nav-dropdown .nav-menu {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    min-width: 0;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 320ms ease, opacity 220ms ease, visibility 0s linear 320ms;
    backdrop-filter: none;
  }

  .site-header .nav-dropdown.submenu-open .nav-menu {
    max-height: 520px;
    padding: 0 0 16px 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-header .nav-menu a,
  .site-header .nav-menu span {
    min-height: 44px;
    padding: 13px 0;
    font-size: .72rem;
    letter-spacing: .08em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .nav,
  .nav-toggle-icon span,
  .nav-submenu-toggle span,
  .site-header .nav-menu {
    transition: none;
  }
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--loom-green);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.92);
}

.hero-product-image {
  object-position: center center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(21, 24, 18, 0.72), rgba(21, 24, 18, 0.18) 58%, rgba(21, 24, 18, 0.46)),
    linear-gradient(0deg, rgba(21, 24, 18, 0.68), rgba(21, 24, 18, 0.04) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(62px, 9vh, 118px) clamp(18px, 6vw, 90px);
  color: var(--ivory);
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 6.9vw, 7.4rem);
}

h2 {
  max-width: 920px;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
}

h3 {
  font-size: clamp(1.6rem, 3.2vw, 3.25rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--loom-green);
  background: #f8eee8;
  border-color: var(--ivory);
}

.button.secondary {
  color: var(--ivory);
  background: rgba(255, 250, 240, 0.08);
}

.contact .button.primary {
  color: var(--ivory);
  background: var(--loom-green);
  border-color: var(--loom-green);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--ivory);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  width: min(360px, calc(100% - 36px));
  padding-top: 16px;
  color: var(--ivory);
  border-top: 1px solid rgba(255, 250, 240, 0.42);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  margin-bottom: 6px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.band {
  background:
    radial-gradient(circle at 6% 18%, rgba(184, 154, 94, 0.13), transparent 22rem),
    var(--ivory);
}

.intro,
.projects,
.process,
.design-types,
.about,
.subpage-hero,
.project-index,
.project-system,
.story-steps,
.process-editorial,
.founding-story,
.beliefs,
.chapter,
.final-pieces,
.contact {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
}

.intro-copy h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4vw, 4.45rem);
}

.intro-statement {
  max-width: 1060px;
  margin: 24px 0 0;
  color: rgba(42, 36, 29, 0.78);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
}

.principle {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.principle-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.18rem;
  border: 1px solid rgba(184, 154, 94, 0.44);
  border-radius: 50%;
  background: rgba(184, 154, 94, 0.1);
}

.principle h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.principle p {
  margin: 0;
  color: rgba(42, 36, 29, 0.75);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.26fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 82px);
}

.section-break {
  display: grid;
  grid-template-columns: minmax(130px, 0.26fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-top: clamp(52px, 7vw, 92px);
  padding-top: clamp(26px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.section-break .eyebrow {
  margin-bottom: 0;
}

.section-break h3 {
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
}

.section-break p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(42, 36, 29, 0.7);
}

.feature-project {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: 680px;
  color: var(--ivory);
  background: var(--loom-green);
  box-shadow: var(--shadow);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.85);
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
}

.project-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.1rem;
}

.meta-list {
  display: grid;
  gap: 22px;
  margin: 40px 0 0;
}

.meta-list div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.24);
}

.meta-list dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meta-list dd {
  margin: 0;
}

.collection-gallery,
.type-grid,
.home-project-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 30px);
  margin-top: clamp(28px, 5vw, 62px);
}

.home-project-links {
  grid-template-columns: none;
}

.carousel-intro {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-top: clamp(48px, 7vw, 94px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.carousel-intro .eyebrow {
  flex: 0 0 auto;
  margin: 0;
}

.carousel-intro p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  color: rgba(42, 36, 29, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
}

.carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  margin-right: clamp(-72px, -5vw, -18px);
  margin-left: clamp(-72px, -5vw, -18px);
  padding: clamp(24px, 4vw, 44px) clamp(18px, 5vw, 72px) 12px;
  scroll-padding-inline: clamp(18px, 5vw, 72px);
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(42, 36, 29, 0.34) transparent;
}

.home-project-card {
  display: grid;
  flex: 0 0 min(540px, 78vw);
  min-height: 430px;
  align-content: end;
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: var(--ivory);
  background: var(--loom-green);
}

.home-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 420ms ease, opacity 420ms ease;
}

.home-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 24, 18, 0.82), rgba(21, 24, 18, 0.08));
}

.home-project-card span,
.home-project-card strong {
  position: relative;
  z-index: 1;
}

.home-project-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-project-card strong {
  max-width: 520px;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}

.home-project-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.carousel-track .home-project-card {
  scroll-snap-align: start;
}

.home-project-card.muted img {
  filter: grayscale(0.22) saturate(0.68);
}

.product-card,
.type-panel {
  margin: 0;
  background: var(--ivory);
}

.product-card {
  border: 1px solid var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-card figcaption {
  display: grid;
  gap: 4px;
  min-height: 98px;
  padding: 18px;
}

.product-card span,
.type-panel h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.1;
}

.product-card small {
  color: rgba(42, 36, 29, 0.65);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.process-copy {
  font-size: clamp(0.98rem, 1.32vw, 1.12rem);
}

.process-copy p {
  margin: 0 0 22px;
}

.sketch-stack {
  position: relative;
  min-height: 620px;
}

.sketch {
  position: absolute;
  width: min(66%, 520px);
  border: 1px solid rgba(42, 36, 29, 0.12);
  box-shadow: var(--image-shadow);
  background: var(--ivory);
  object-fit: cover;
}

.sketch.one {
  top: 0;
  left: 0;
}

.sketch.two {
  right: 0;
  bottom: 0;
}

.design-types {
  background: var(--parchment);
}

#process .section-heading h2,
.design-types .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.55vw, 4rem);
}

.type-panel {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.type-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--image-shadow-soft);
}

.type-panel h3 {
  margin: 22px 22px 10px;
}

.type-panel p {
  margin: 0 22px 26px;
  color: rgba(42, 36, 29, 0.72);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--image-shadow);
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.values span {
  padding: 8px 12px;
  color: var(--loom-green);
  background: rgba(184, 154, 94, 0.14);
  border: 1px solid rgba(184, 154, 94, 0.3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact {
  min-height: 72vh;
  display: grid;
  place-items: center;
  color: var(--ivory);
  text-align: center;
  background:
    linear-gradient(rgba(38, 50, 37, 0.72), rgba(38, 50, 37, 0.88)),
    url("assets/optimized/seal-medallion-lifestyle.webp") center / cover;
}

.contact-inner {
  width: min(850px, 100%);
}

.contact h2 {
  margin-inline: auto;
}

.contact p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px auto 32px;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.footer {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px clamp(18px, 5vw, 72px);
  color: rgba(42, 36, 29, 0.58);
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.footer p {
  display: none;
}

.footer nav {
  display: none;
}

.footer .brand {
  color: inherit;
  opacity: 0.82;
}

.footer .brand-logo {
  width: 190px;
  height: 56px;
}

.footer .brand::after {
  width: 44px;
  height: 56px;
}

.subpage-hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding-top: 130px;
  color: var(--ivory);
  background: var(--ink);
}

.subpage-hero-media {
  align-self: stretch;
  min-height: 560px;
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  box-shadow: var(--image-shadow);
}

.school-logo-field {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(32px, 5vw, 72px);
  background: var(--ivory);
}

.projects-hero-placeholder {
  min-height: 620px;
  color: var(--ivory);
  background:
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.055) 0 1px, transparent 1px 14px),
    rgba(255, 250, 240, 0.045);
  border-color: rgba(255, 250, 240, 0.16);
  box-shadow: var(--image-shadow);
}

.projects-hero-placeholder p {
  color: rgba(255, 250, 240, 0.68);
}

.collections-page {
  background: #2d211b;
}

.collections-page main,
.collections-page .subpage-hero,
.collections-page .collection-cta {
  background: #2d211b;
}

.collections-page .site-header,
.collections-page .site-header.is-scrolled {
  background: #2d211b;
  border-bottom: 0;
}

.projects-hero-media {
  overflow: hidden;
  background: #2d211b;
  box-shadow: var(--image-shadow);
}

.projects-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.school-logo-collage {
  position: absolute;
  margin: 0;
  transition: transform 260ms ease;
}

.school-logo-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  box-shadow: none;
}

.school-logo-collage:hover {
  transform: scale(1.045);
}

.logo-wra {
  z-index: 3;
  top: 28%;
  left: 31%;
  width: 38%;
  aspect-ratio: 1;
}

.logo-porters {
  z-index: 2;
  top: 9%;
  left: 7%;
  width: 27%;
  aspect-ratio: 1;
  transform: rotate(-5deg);
}

.logo-porters:hover {
  transform: rotate(-5deg) scale(1.045);
}

.logo-westminster {
  z-index: 1;
  top: 7%;
  right: 5%;
  width: 31%;
  aspect-ratio: 1;
  transform: rotate(3deg);
}

.logo-westminster:hover {
  transform: rotate(3deg) scale(1.045);
}

.logo-hill {
  z-index: 4;
  right: 7%;
  bottom: 8%;
  width: 26%;
  aspect-ratio: 1;
}

.logo-taft {
  z-index: 2;
  left: 6%;
  bottom: -8%;
  width: 27%;
  aspect-ratio: 0.8;
  transform: rotate(4deg);
}

.logo-taft:hover {
  transform: rotate(4deg) scale(1.045);
}

.process-hero .subpage-hero-media img,
.story-hero .subpage-hero-media img {
  object-position: center;
}

.subpage-hero-copy {
  padding-bottom: clamp(24px, 7vh, 84px);
}

.subpage-hero-copy h1,
.collection-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.6vw, 7.2rem);
}

.subpage-hero-copy p:not(.eyebrow),
.collection-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
}

.project-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.archive-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.archive-card.large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
  color: var(--ivory);
  background: var(--ink);
  border-color: transparent;
}

.archive-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--image-shadow-soft);
}

.archive-card > div {
  align-self: center;
  padding: clamp(24px, 4vw, 54px);
}

.archive-card h2 {
  font-size: clamp(2.45rem, 5.4vw, 5.6rem);
}

.archive-card p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.archive-card:not(.large) .text-link:hover,
.process-copy .text-link:hover,
.about-copy .text-link:hover {
  color: var(--loom-green);
}

.status-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 11px;
  color: var(--loom-green);
  background: rgba(184, 154, 94, 0.14);
  border: 1px solid rgba(184, 154, 94, 0.32);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-list.light div {
  border-color: rgba(255, 250, 240, 0.26);
}

.project-system {
  background: var(--parchment);
}

.school-projects {
  display: grid;
  gap: 3px;
  padding: 3px 0;
  background: var(--ivory);
}

.school-project-showcase {
  --collection-accent: #d8c59c;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  min-height: 104px;
  max-height: 104px;
  overflow: hidden;
  color: var(--ivory);
  background: #173966;
  transition: min-height 560ms cubic-bezier(.2, .8, .2, 1), max-height 560ms cubic-bezier(.2, .8, .2, 1), background-color 300ms ease;
}

.school-project-showcase:nth-child(2) { --collection-accent: #f0c2c9; background: #952d46; }
.school-project-showcase:nth-child(3) { --collection-accent: #efe2c3; background: #92773d; }
.school-project-showcase:nth-child(4) { --collection-accent: #bcd3be; background: #176142; }
.school-project-showcase:nth-child(5) { --collection-accent: #d0e0e3; background: #305c70; }
.school-project-showcase:nth-child(6) { --collection-accent: #e7c9b1; background: #9c503b; }
.school-project-showcase:nth-child(7) { --collection-accent: #ddd0bb; background: #554638; }

.school-project-showcase:hover,
.school-project-showcase:focus-visible {
  min-height: min(68vw, 680px);
  max-height: 680px;
}

.school-project-showcase:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.school-project-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(24px, 4vw, 68px);
  color: var(--ivory);
}

.school-project-summary h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  line-height: 1.02;
  transition: font-size 500ms cubic-bezier(.2, .8, .2, 1);
}

.school-project-summary p:not(.eyebrow) {
  max-width: 540px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.55;
  transition: opacity 220ms ease, max-height 420ms ease, margin 420ms ease;
}

.project-status {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 10px;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 94, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-open {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--collection-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: opacity 220ms ease, max-height 420ms ease, margin 420ms ease;
}

.project-open span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.school-project-showcase:hover .project-open span {
  transform: translateX(5px);
}

.school-product-cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: #e9e3d6;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 360ms ease 80ms, transform 560ms cubic-bezier(.2, .8, .2, 1);
}

.project-object {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--parchment);
  box-shadow: var(--image-shadow-soft);
}

.project-object:nth-child(2) {
  grid-column: 3 / 5;
}

.project-object:nth-child(3) {
  grid-column: 3 / 4;
}

.project-object.object-tall {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.project-object.object-wide {
  grid-column: 4 / 5;
}

.project-object img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-placeholder {
  display: grid;
  place-items: center;
  padding: 20px;
  color: rgba(42, 36, 29, 0.48);
  background: var(--parchment);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.project-mark {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
  background: #fff;
}

.project-mark img {
  object-fit: contain;
}

.school-project-showcase:hover .project-object img {
  transform: scale(1.025);
}

.school-project-showcase:hover .school-project-summary h2,
.school-project-showcase:focus-visible .school-project-summary h2 {
  font-size: clamp(2.65rem, 4.6vw, 5rem);
}

.school-project-showcase:hover .school-project-summary p:not(.eyebrow),
.school-project-showcase:focus-visible .school-project-summary p:not(.eyebrow) {
  max-height: 160px;
  margin-top: 26px;
  opacity: 1;
}

.school-project-showcase:hover .project-open,
.school-project-showcase:focus-visible .project-open {
  max-height: 44px;
  margin-top: 32px;
  opacity: 1;
}

.school-project-showcase:hover .school-product-cluster,
.school-project-showcase:focus-visible .school-product-cluster {
  opacity: 1;
  transform: scale(1);
}

.school-project-showcase .eyebrow {
  margin: 0 0 7px;
  color: var(--collection-accent);
  font-size: clamp(.58rem, .8vw, .73rem);
  letter-spacing: .17em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.developing-school-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
}

.developing-school-card {
  min-width: 0;
  color: inherit;
  background: var(--parchment);
  box-shadow: var(--image-shadow-soft);
  text-decoration: none;
}

.developing-school-card figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e9e3d6;
}

.developing-school-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.developing-school-card:hover figure img {
  transform: scale(1.025);
}

.developing-school-card .school-mark-figure {
  display: grid;
  place-items: center;
  padding: clamp(22px, 3vw, 44px);
  background: #fff;
}

.developing-school-card .school-mark-figure img {
  object-fit: contain;
}

.developing-school-card > div {
  min-height: 126px;
  padding: 20px 18px 22px;
}

.developing-school-card .eyebrow {
  margin-bottom: 10px;
  font-size: 0.62rem;
}

.developing-school-card h3 {
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  line-height: 1.02;
}

.inquiry-layout {
  min-height: 100svh;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(540px, 1.22fr);
  color: var(--ink);
  background: var(--parchment);
}

.inquiry-intro,
.inquiry-form {
  padding: clamp(54px, 7vw, 104px) clamp(28px, 6vw, 88px);
}

.inquiry-intro {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
  background: #173a2c;
}

.inquiry-intro-copy {
  position: relative;
  z-index: 1;
}

.inquiry-botanical {
  position: absolute;
  z-index: 0;
  right: -13%;
  bottom: -5%;
  width: min(95%, 530px);
  opacity: 0.16;
  pointer-events: none;
}

.inquiry-intro h1 {
  max-width: 460px;
  margin-bottom: clamp(52px, 5.6vw, 98px);
  font-size: clamp(3.15rem, 4.7vw, 5.7rem);
  line-height: 0.92;
}

.inquiry-title-line {
  display: block;
  white-space: nowrap;
}

.inquiry-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 250, 240, 0.73);
  font-size: clamp(1rem, 1.38vw, 1.28rem);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  column-gap: clamp(34px, 5vw, 88px);
  row-gap: clamp(34px, 4vw, 62px);
  background: var(--parchment);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  color: rgba(42, 36, 29, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  padding: 16px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(42, 36, 29, 0.32);
  border-radius: 0;
  font: inherit;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  line-height: 1.5;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(42, 36, 29, 0.33);
  opacity: 1;
}

.form-field-organization,
.form-field-message {
  grid-column: 1 / -1;
}

.form-field textarea {
  min-height: clamp(180px, 19vh, 290px);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  outline: 0;
}

.inquiry-form .button {
  grid-column: 1 / -1;
  justify-self: start;
  width: min(100%, 335px);
  min-width: 0;
  margin-top: 0;
  padding: 20px 42px;
  white-space: nowrap;
  color: var(--ivory);
  background: #173a2c;
  border-color: #173a2c;
}

.inquiry-form .button span {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.15rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: -18px 0 0;
  color: rgba(42, 36, 29, .72);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.45;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.form-status:empty {
  display: none;
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-status.is-success {
  color: #173a2c;
}

.form-status.is-error {
  color: #873f32;
}

.inquiry-form.is-submitting .button,
.inquiry-form .button:disabled {
  opacity: .68;
  cursor: wait;
}

.placeholder-school-hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  color: var(--ivory);
  background: #302921;
}

.placeholder-school-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(64px, 8vw, 120px) clamp(28px, 6vw, 90px);
}

.placeholder-school-copy h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.placeholder-school-copy p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.placeholder-school-image {
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  background: var(--parchment);
}

.placeholder-school-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-school-image.school-logo-hero {
  display: grid;
  place-items: center;
  padding: clamp(64px, 9vw, 140px);
}

.placeholder-school-image.school-logo-hero img {
  object-fit: contain;
}

/* The Hewitt hero intentionally keeps the left field open for future copy. */
.hewitt-hero {
  position: relative;
  min-height: clamp(580px, 76vh, 860px);
  overflow: hidden;
  background: #c7b6a4;
}

.hewitt-hero img {
  display: block;
  width: 100%;
  min-height: clamp(580px, 76vh, 860px);
  object-fit: cover;
  object-position: center center;
}

.hewitt-hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 6.5vw, 110px);
  bottom: clamp(64px, 12vh, 150px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 1.8vw, 26px);
  width: min(50vw, 600px);
  color: #132d51;
}

.hewitt-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5.1vw, 6rem);
  line-height: .9;
  white-space: nowrap;
}

.hewitt-hero-copy p {
  max-width: 100%;
  margin: 0;
  color: #415979;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
}

.hewitt-inspiration,
.hewitt-process {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(440px, 1.14fr);
  gap: clamp(48px, 9vw, 144px);
  padding: clamp(88px, 13vw, 180px) clamp(24px, 8vw, 136px);
  background: #f4efe7;
}

.hewitt-inspiration-copy,
.hewitt-process-copy {
  align-self: center;
  max-width: 520px;
}

.hewitt-inspiration h2,
.hewitt-process h2,
.hewitt-ring-feature h2 {
  margin: 0 0 30px;
  color: #132d51;
  font-size: clamp(2.9rem, 5.1vw, 5.8rem);
  line-height: .94;
}

.hewitt-inspiration-copy p:not(.eyebrow),
.hewitt-process-copy p:not(.eyebrow),
.hewitt-ring-feature-heading > p:not(.eyebrow) {
  max-width: 520px;
  color: #49617f;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.hewitt-inspiration-images {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: end;
  gap: clamp(14px, 2vw, 30px);
}

.hewitt-inspiration-image {
  margin: 0;
  overflow: hidden;
  background: #d9d4ca;
}

.hewitt-inspiration-image-tall { height: clamp(390px, 49vw, 690px); }
.hewitt-inspiration-image-wide { height: clamp(280px, 35vw, 480px); margin-bottom: clamp(18px, 4vw, 72px); }

.hewitt-inspiration-image img,
.hewitt-process-art img,
.hewitt-ring-pair img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hewitt-inspiration-image-tall img { object-position: center 40%; }
.hewitt-inspiration-image-wide img { object-position: center center; }

.hewitt-process {
  grid-template-columns: minmax(330px, .75fr) minmax(460px, 1.1fr);
  align-items: center;
  background: #eaf1f5;
}

.hewitt-process-art {
  justify-self: center;
  width: min(100%, 660px);
  padding: clamp(12px, 1.8vw, 26px);
  background: #c09c65;
  box-shadow: 18px 22px 0 rgba(19, 45, 81, .10);
}

.hewitt-process-art img { aspect-ratio: 864 / 1210; object-fit: cover; }

.hewitt-process h2 {
  font-size: clamp(2.65rem, 4.45vw, 5.15rem);
  white-space: normal;
}

.hewitt-process h2 span { white-space: nowrap; }

.hewitt-ring-feature {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 104px) clamp(64px, 8vw, 120px);
  color: #f6f0e8;
  background: #0c2340;
}

.hewitt-ring-feature-heading {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, .65fr);
  column-gap: 8vw;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto clamp(48px, 7vw, 94px);
}

.hewitt-ring-feature-heading .eyebrow { grid-column: 1 / -1; color: #a9c3dc; }
.hewitt-ring-feature h2 { margin-bottom: 0; color: #f6f0e8; }
.hewitt-ring-feature-heading > p:not(.eyebrow) { margin: 0; color: rgba(246, 240, 232, .76); }

.hewitt-ring-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  max-width: 1280px;
  margin: 0 auto;
}

.hewitt-ring-pair figure { position: relative; min-height: clamp(420px, 52vw, 760px); margin: 0; overflow: hidden; background: #d8d1c7; }
.hewitt-ring-pair figure:first-child img { object-position: center 42%; }
.hewitt-ring-pair figure:last-child img { object-position: center center; }
.hewitt-ring-pair figcaption { position: absolute; right: 24px; bottom: 20px; color: #fff; font: 500 .72rem/1 var(--font-sans); letter-spacing: .16em; text-shadow: 0 1px 10px rgba(0,0,0,.38); text-transform: uppercase; }

@media (max-width: 800px) {
  .hewitt-page .project-brief-inner.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hewitt-hero-copy {
    top: 52%;
    right: 24px;
    bottom: auto;
    left: 24px;
    width: auto;
  }

  .hewitt-hero-copy h1 {
    width: 58%;
    max-width: 430px;
    white-space: normal;
  }

  .hewitt-inspiration,
  .hewitt-process {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hewitt-inspiration-images { grid-template-columns: .78fr 1.22fr; }
  .hewitt-inspiration-image-tall { height: 440px; }
  .hewitt-inspiration-image-wide { height: 320px; margin-bottom: 32px; }
  .hewitt-process-art { width: min(100%, 480px); }
  .hewitt-process-copy { order: -1; }
  .hewitt-ring-feature-heading { grid-template-columns: 1fr; gap: 24px; }
  .hewitt-ring-pair figure { min-height: 460px; }
}

@media (max-width: 540px) {
  .hewitt-hero,
  .hewitt-hero img { min-height: 540px; }

  .hewitt-hero-copy {
    top: 50%;
    left: 20px;
    right: 20px;
    bottom: auto;
    width: auto;
  }

  .hewitt-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.25rem); }
  .hewitt-hero-copy h1 { white-space: normal; }
  .hewitt-hero-copy p { max-width: 340px; font-size: .96rem; }

  .hewitt-process h2 { font-size: clamp(2rem, 10vw, 2.8rem); }

  .hewitt-inspiration,
  .hewitt-process,
  .hewitt-ring-feature { padding-right: 20px; padding-left: 20px; }

  .hewitt-inspiration-images,
  .hewitt-ring-pair { grid-template-columns: 1fr; }

  .hewitt-inspiration-image-tall,
  .hewitt-inspiration-image-wide,
  .hewitt-ring-pair figure { height: 480px; min-height: 0; margin-bottom: 0; }

  .hewitt-inspiration-image-wide { height: 360px; }
}

/* Westminster concept review: use the generated image below the real site header,
   so its temporary navigation is cropped out. */
.placeholder-collection-page .site-header,
.placeholder-collection-page .site-header.is-scrolled {
  color: var(--ink);
  background: var(--parchment);
}

.placeholder-collection-page .site-header .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg");
}

.westminster-concept-hero {
  min-height: 100svh;
  padding-top: 98px;
  color: var(--ink);
  background: var(--parchment);
}

.westminster-concept-frame {
  position: relative;
  height: min(82svh, 56.25vw);
  min-height: 520px;
  overflow: hidden;
  background: #f3eee5;
}

.westminster-concept-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.westminster-concept-image[hidden] {
  display: none;
}

.westminster-concept-image img {
  position: absolute;
  top: -10.2%;
  width: 100%;
  max-width: none;
  height: auto;
}

.westminster-concept-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: var(--parchment);
}

.westminster-concept-switcher button {
  padding: 9px 13px;
  color: rgba(42, 36, 29, 0.62);
  font: 600 0.66rem/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(42, 36, 29, 0.2);
  border-radius: 0;
  cursor: pointer;
}

.westminster-concept-switcher button.is-active {
  color: var(--parchment);
  background: var(--ink);
  border-color: var(--ink);
}

.westminster-concept-switcher span {
  opacity: 0.58;
}

/* Westminster — product-led heritage hero. All featured objects are supplied
   collection photography; the copy is deliberately independent of the art. */
.westminster-page .site-header,
.westminster-page .site-header.is-scrolled {
  color: var(--ink);
  background: var(--parchment);
}

.westminster-page .site-header .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg");
}

.westminster-heritage-hero {
  position: relative;
  height: min(100svh, 62.5vw);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #f3eee5;
}

.westminster-hero-paper {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 19% 55%, rgba(255, 255, 255, .92), transparent 34%),
    linear-gradient(90deg, #f6f2e9 0%, #f4efe6 53%, #e6ddce 100%);
}

.westminster-hero-seal-lines {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: 37%;
  width: min(34vw, 510px);
  aspect-ratio: 1;
  opacity: .42;
  border: 1px solid rgba(182, 143, 66, .24);
  border-radius: 50%;
}

.westminster-hero-seal-lines::before,
.westminster-hero-seal-lines::after,
.westminster-hero-seal-lines span {
  position: absolute;
  content: "";
  display: block;
  background: rgba(182, 143, 66, .19);
}

.westminster-hero-seal-lines::before { inset: 15% 49.5%; }
.westminster-hero-seal-lines::after { inset: 49.5% 15%; }
.westminster-hero-seal-lines span:first-child { width: 30%; height: 30%; top: 20%; left: 20%; border: 1px solid rgba(182, 143, 66, .25); background: transparent; transform: rotate(45deg); }
.westminster-hero-seal-lines span:last-child { width: 30%; height: 30%; right: 20%; bottom: 20%; border: 1px solid rgba(182, 143, 66, .25); background: transparent; transform: rotate(45deg); }

.westminster-hero-marlet {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 61%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  box-shadow: inset 34px 0 52px rgba(72, 53, 31, .08);
}

.westminster-hero-marlet::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(246, 242, 233, .88), transparent 30%);
  pointer-events: none;
}

.westminster-hero-marlet img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 59% center;
}

.westminster-heritage-copy {
  position: absolute;
  z-index: 3;
  left: 54px;
  top: 61%;
  width: min(45vw, 620px);
}

.westminster-heritage-copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .94;
  white-space: nowrap;
}

.westminster-heritage-kicker {
  margin: clamp(16px, 1.9vw, 27px) 0 0;
  color: #a88643;
  font-size: clamp(.75rem, .9vw, .94rem);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.westminster-heritage-intro {
  max-width: 460px;
  margin: clamp(22px, 2.1vw, 30px) 0 0;
  color: rgba(42, 36, 29, .88);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.westminster-art-hero {
  position: relative;
  height: min(100svh, 52.45vw);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #f3eee5;
  isolation: isolate;
}

.westminster-hero-picture {
  display: contents;
}

.westminster-art-hero img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/* Matches the Hill hero hierarchy: serif title, uppercase milestone, then a
   restrained explanatory line—kept independent from the hero artwork. */
.westminster-hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(36px, 6.1vw, 98px);
  top: 37%;
  width: min(40vw, 620px);
  color: var(--ink);
}

.westminster-hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .94;
}

.westminster-hero-kicker {
  margin: clamp(16px, 1.9vw, 26px) 0 0;
  color: #9c7a36;
  font-size: clamp(.75rem, .9vw, .94rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.westminster-hero-intro {
  max-width: 630px;
  margin: clamp(24px, 2.2vw, 34px) 0 0;
  color: rgba(42, 36, 29, .88);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.westminster-page .hill-heirloom-copy p + p {
  margin-top: 20px;
}

.westminster-page .westminster-quote {
  margin-top: clamp(28px, 3vw, 42px);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
}

/* Westminster keeps Hill's paired-photo layout, but with a light, paper-led
   reading surface for the longer rituals narrative. */
.westminster-page .collection-inspiration {
  color: var(--ink);
  background: var(--ivory);
}

.westminster-page .collection-inspiration h2 {
  color: var(--ink);
}

.westminster-page .collection-inspiration-copy p:not(.eyebrow) {
  color: rgba(42, 36, 29, .76);
}

.westminster-page .westminster-gallery-centered-object > img {
  object-position: center center;
}

.westminster-page .westminster-gallery-cutout-opener > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}


@media (max-width: 760px) {
  .westminster-heritage-hero {
    height: max(660px, 100svh);
  }

  .westminster-art-hero {
    height: max(600px, 88svh);
  }

  .westminster-art-hero img {
    width: auto;
    min-width: 100%;
    object-position: 57% center;
  }

  .westminster-hero-copy {
    right: 24px;
    bottom: 8%;
    left: 24px;
    top: auto;
    width: auto;
  }

  .westminster-hero-copy h1 {
    font-size: clamp(1.25rem, 7vw, 3rem);
  }

  .westminster-hero-intro {
    max-width: 31rem;
  }

  .westminster-hero-marlet {
    top: 0;
    right: -10%;
    width: 112%;
    height: 57%;
  }

  .westminster-hero-marlet::after {
    background: linear-gradient(90deg, rgba(246, 242, 233, .3), transparent 40%);
  }

  .westminster-hero-seal-lines {
    top: 8%;
    right: -14%;
    width: 74vw;
  }

  .westminster-heritage-copy {
    top: auto;
    right: 24px;
    bottom: clamp(38px, 8vh, 68px);
    left: 24px;
    width: auto;
  }

  .westminster-heritage-copy h1 {
    max-width: 86vw;
    font-size: clamp(2.55rem, 11vw, 4.3rem);
    white-space: normal;
  }

  .westminster-heritage-intro {
    max-width: 32rem;
    font-size: clamp(.94rem, 4vw, 1.08rem);
    line-height: 1.45;
  }
}

.taft-hero {
  height: 100svh;
  min-height: 0;
  background: #f4ecdf;
}

.taft-hero-picture {
  display: contents;
}

.taft-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.taft-hero-copy {
  z-index: 1;
  top: clamp(150px, 24vh, 280px);
  width: min(40vw, 760px);
}

.taft-page .wra-heritage-kicker {
  color: #9b2538;
}

.taft-page .wra-heritage-intro {
  max-width: 760px;
}

@media (max-width: 760px) {
  .taft-page .taft-hero {
    height: max(720px, 100svh);
    min-height: 0;
  }

  .taft-hero-art {
    object-position: center;
  }

  .taft-page .taft-hero::after {
    display: none;
  }

  .taft-page .taft-hero-copy {
    z-index: 2;
  }
}

/* Westover: approved still hero composition. */
.westover-page .site-header,
.westover-page .site-header.is-scrolled {
  color: var(--ink);
  background: #f3eadb;
}

.westover-page .site-header .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg");
}

.westover-hero {
  position: relative;
  height: min(100svh, 62.5vw);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #f3eadb;
}

.westover-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: westover-hero-fade 1.45s ease-out 100ms forwards;
}

@keyframes westover-hero-fade {
  to { opacity: 1; }
}

.westover-hero-copy {
  position: absolute;
  z-index: 1;
  left: clamp(36px, 6.1vw, 98px);
  top: 61%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 1.8vw, 26px);
  width: min(68vw, 960px);
  color: #45334b;
  transform: none;
}

.westover-hero-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.9vw, 5.1rem); font-weight: 500; line-height: .94; letter-spacing: -.025em; white-space: nowrap; }
.westover-hero-copy p { max-width: 960px; margin: clamp(22px, 2.1vw, 30px) 0 0; color: rgba(69, 51, 75, .88); font-size: clamp(1rem, 1.25vw, 1.22rem); line-height: 1.55; }
.westover-hero-copy .collection-name,
.westover-hero-copy .collection-name + p { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .westover-hero-art { animation: none; opacity: 1; }
}

@media (max-width: 760px) {
  .westover-hero { height: 100svh; min-height: 650px; }
  .westover-hero-art { object-position: 61% center; }
  .westover-hero-copy { top: auto; right: 24px; bottom: 8%; left: 24px; width: auto; transform: none; }
  .westover-hero-copy h1 { font-size: clamp(1.25rem, 7vw, 3rem); white-space: normal; }
  .westover-hero-copy p { max-width: 35rem; margin-top: 22px; font-size: clamp(.94rem, 4vw, 1.08rem); }
}

/* Westover adopts the WRA page rhythm while keeping its own palette. */
.westover-page.wra-page .site-header,
.westover-page.wra-page .site-header.is-scrolled { background: #f3eadb; }
.westover-page .westover-inspiration { background: #fffaf0; }
.westover-page .westover-heirloom-section { background: #f3eadb; }
.westover-page .westover-product-gallery { background: #423244; }
.westover-page .westover-product-gallery .wra-gallery-slide span { color: #d7bed2; }
.westover-page .westover-product-gallery .wra-gallery-controls button { color: #fff8ec; }
.westover-page .westover-heirloom-section .wra-heirloom-copy { grid-template-columns: minmax(390px, .95fr) minmax(0, 1.05fr); align-items: center; }
.westover-page .westover-heirloom-section .wra-heirloom-copy h2 { width: 650px; max-width: none; font-size: clamp(2.05rem, 3.35vw, 3.75rem); }
.westover-page .westover-heirloom-section .westover-process-line { white-space: nowrap; }
.westover-page .westover-heirloom-section .wra-heirloom-copy > .westover-process-body { grid-column: 2; }
.westover-page .westover-heirloom-section .westover-process-body p { max-width: 660px; }
.westover-page .westover-heirloom-section .westover-process-body { align-self: center; }
.westover-page .westover-heirloom-section .westover-process-body p:first-child { margin-top: 0; }
.westover-page .westover-heirloom-section .westover-process-body p + p { margin-top: 24px; }
.westover-page .westover-heirloom-section .wra-symbol-studies { margin-top: clamp(18px, 2vw, 30px); }
@media (min-width: 761px) {
  .westover-page .westover-heirloom-section .westover-process-body { transform: translateY(clamp(18px, 2.2vw, 32px)); }
  .westover-page .westover-heirloom-section .wra-symbol-studies { transform: none; }
}
.westover-page .westover-product-gallery .wra-gallery-slide > img { object-position: center 40%; }
.westover-page .westover-product-gallery .westover-gallery-two-tone-pin > img { object-fit: cover; object-position: center; padding: 0; }
.westover-page .wra-symbol-study img { width: 62%; height: 88%; object-position: center bottom; }
.westover-page .wra-symbol-study:nth-child(2) img { width: 56%; }
.westover-page .wra-symbol-study:nth-child(3) img { width: 58%; }
@media (max-width: 760px) {
  .westover-page .westover-heirloom-section .wra-heirloom-copy h2 { width: auto; max-width: 100%; }
  .westover-page .westover-heirloom-section .westover-process-line { white-space: nowrap; }
  .westover-page .westover-heirloom-section .wra-heirloom-copy > .westover-process-body { grid-column: auto; }
  .westover-page .westover-heirloom-section .westover-process-body p:first-child { margin-top: 0; }
}

/* Miss Porter's: the complete hero and copy slowly emerge from black. */
.mps-heritage-hero {
  position: relative;
  height: min(100svh, 65.63vw);
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.mps-hero-artwork {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.mps-hero-reveal {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  animation: mps-hero-fade 2.6s .32s cubic-bezier(.22, .68, .25, 1) forwards;
}

.mps-hero-artwork {
  z-index: 1;
}

.mps-heritage-copy {
  position: absolute;
  z-index: 2;
  top: 61%;
  left: clamp(36px, 11vw, 184px);
  width: min(68vw, 960px);
  color: var(--ivory);
}

.mps-heritage-copy h1 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .94;
  white-space: nowrap;
}

.mps-heritage-intro {
  max-width: 710px;
  margin: clamp(22px, 2.1vw, 30px) 0 0;
  color: rgba(255, 250, 240, .82);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

.mps-page .collection-inspiration,
.mps-page .wra-heirloom-section,
.mps-page .wra-product-gallery {
  position: relative;
}

.mps-page.wra-page .collection-inspiration {
  color: var(--ink);
  background: var(--ivory);
}

.mps-page.wra-page .collection-inspiration h2 {
  color: var(--ink);
}

.mps-page.wra-page .collection-inspiration-copy p:not(.eyebrow) {
  color: rgba(42, 36, 29, .76);
  font-size: clamp(.96rem, 1.15vw, 1.08rem);
}

/* MPS alternates light and dark editorial fields: ivory, green, ivory. */
.mps-page.wra-page .wra-heirloom-section {
  color: var(--ivory);
  background: var(--loom-green);
}

/* Keep the MPS navigation inside the collection's deep-green world. */
.mps-page.wra-page .site-header,
.mps-page.wra-page .site-header.is-scrolled {
  color: var(--ivory);
  background: var(--loom-green);
  border-bottom: 0;
}

.mps-page.wra-page .site-header .brand::after {
  background-image: url("assets/loom-tile-logo-beige.svg");
}

.mps-page.wra-page .wra-heirloom-copy h2,
.mps-page.wra-page .wra-heirloom-copy p:not(.eyebrow) {
  color: var(--ivory);
}

.mps-page.wra-page .wra-heirloom-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, .78);
}

.mps-page.wra-page .wra-symbol-study img {
  filter: none;
  opacity: 1;
}

.mps-page.wra-page .wra-symbol-study figcaption {
  color: rgba(255, 250, 240, .68);
}

.mps-page.wra-page .wra-product-gallery {
  color: var(--ink);
  background: var(--ivory);
}

.mps-page.wra-page .wra-product-gallery-heading h2 {
  color: var(--ink);
}

.mps-page.wra-page .wra-product-gallery .wra-gallery-controls {
  color: rgba(42, 36, 29, .58);
}

.mps-page.wra-page .wra-product-gallery .wra-gallery-controls button {
  color: var(--ink);
}

.mps-page .collection-inspiration-cards {
  position: relative;
  min-height: clamp(360px, 44vw, 620px);
  isolation: isolate;
}

.mps-page .wra-heirloom-copy .mps-process-body {
  margin-top: clamp(44px, 4vw, 66px);
}

.mps-page .wra-heirloom-copy .mps-process-body p:not(.eyebrow) {
  margin: 0;
}

.mps-page .wra-heirloom-copy .mps-process-body p + p {
  margin-top: 0;
}

.mps-page .wra-heirloom-copy .mps-process-body p + p:not(.eyebrow) {
  margin-top: 22px;
}

.mps-page #mps-process {
  max-width: none;
  font-size: clamp(2.35rem, 4.15vw, 4.6rem);
}

.mps-page #mps-process span {
  display: block;
  white-space: nowrap;
}

.mps-page.wra-page .wra-symbol-study:nth-child(1) img {
  width: 54%;
  height: 91%;
  object-fit: contain;
  object-position: center bottom;
}

.mps-page.wra-page .wra-symbol-study:nth-child(2) img {
  width: 66%;
  height: 98%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
  opacity: 1;
}

.mps-page.wra-page .wra-symbol-study:nth-child(3) img {
  width: 88%;
  height: 82%;
  object-fit: contain;
  object-position: center bottom;
}

.mps-page.wra-page .wra-symbol-study figcaption {
  max-width: 100%;
  text-align: center;
  line-height: 1.45;
}

.mps-page.wra-page .wra-symbol-studies {
  grid-template-columns: .95fr .8fr 1.25fr;
  height: clamp(285px, 26vw, 400px);
  margin-top: clamp(44px, 4.4vw, 68px);
}

@media (max-width: 700px) {
  .mps-page.wra-page .wra-symbol-studies {
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mps-page.wra-page .wra-symbol-study {
    grid-template-rows: minmax(150px, 40vw) auto;
  }

  .mps-page.wra-page .wra-symbol-study:nth-child(1) img {
    width: 74%;
    height: 92%;
  }

  .mps-page.wra-page .wra-symbol-study:nth-child(2) img {
    width: 80%;
    height: 96%;
  }

  .mps-page.wra-page .wra-symbol-study:nth-child(3) img {
    width: 100%;
    height: 78%;
  }
}

/* Keep the Spirit Animal handle inside the first gallery crop. */
.mps-page .wra-product-gallery .wra-gallery-slide:nth-child(1) > img {
  object-position: 72% center;
}

/* Preserve the original Daisy Malachite photograph at a natural scale. */
.mps-page .wra-product-gallery .wra-gallery-slide:nth-child(4) > img {
  object-fit: cover;
  object-position: center top;
}

@keyframes mps-hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 900px) {
  .mps-heritage-hero {
    height: clamp(620px, 82svh, 760px);
  }

  .mps-heritage-copy {
    top: auto;
    bottom: clamp(46px, 8vh, 72px);
    left: clamp(30px, 7vw, 72px);
    width: min(72vw, 680px);
  }

  .mps-page .wra-heirloom-copy .mps-process-body {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .mps-heritage-hero {
    height: max(660px, 100svh);
  }

  .mps-hero-artwork {
    object-position: 58% center;
  }

  .mps-heritage-copy {
    right: 24px;
    bottom: clamp(30px, 6svh, 52px);
    left: 24px;
    width: auto;
  }

  .mps-heritage-copy h1 {
    max-width: min(82vw, 380px);
    font-size: clamp(2rem, 10vw, 3.7rem);
    line-height: .96;
    white-space: normal;
  }

  .mps-page #mps-process span {
    white-space: normal;
  }

  .mps-heritage-intro {
    max-width: 35rem;
    margin-top: 18px;
    font-size: clamp(.94rem, 4vw, 1.08rem);
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mps-hero-reveal {
    animation: none;
    opacity: 1;
  }
}

/* Miss Porter's hero directions: an in-page editorial comparison study. */
.mps-hero-study {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #123f2a;
}

.mps-study-controls {
  position: absolute;
  z-index: 12;
  top: 96px;
  right: clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 250, 240, .6);
}

.mps-study-label,
.mps-study-controls button,
.mps-direction-caption {
  margin: 0;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mps-study-label { color: #c9ab6a; }

.mps-study-controls button {
  padding: 6px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}

.mps-study-controls button.is-active { color: var(--ivory); border-color: #c9ab6a; }

.mps-hero-direction {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
}

.mps-hero-direction[hidden] { display: none; }

.mps-hero-copy {
  position: absolute;
  z-index: 5;
  right: auto;
  bottom: clamp(48px, 10vh, 118px);
  left: clamp(20px, 7vw, 110px);
  width: min(610px, calc(100% - 40px));
}

.mps-hero-copy h1 { font-size: clamp(3.25rem, 6.2vw, 7.25rem); }
.mps-hero-copy p:not(.eyebrow) { max-width: 455px; margin: 24px 0 0; color: rgba(255,250,240,.78); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.mps-direction-caption { display: block; margin-top: 36px; color: #d8bd82; }

.mps-hero-ceremonial { background: #123f2a; }
.mps-crest-watermark { position: absolute; z-index: -1; top: 12%; right: -7%; width: min(59vw, 830px); opacity: .105; filter: brightness(0) invert(1); }
.mps-ceremonial-object { position: absolute; top: 13%; right: 8%; bottom: 8%; width: min(50vw, 800px); margin: 0; }
.mps-ceremonial-object::after { content: ""; position: absolute; inset: 9% 8%; z-index: -1; background: #f4eee0; box-shadow: 0 35px 90px rgba(0,0,0,.3); }
.mps-ceremonial-object img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.mps-ceremonial-sketch { position: absolute; z-index: 3; top: 23%; right: 5.2%; width: min(9vw, 145px); opacity: .73; transform: rotate(8deg); }

.mps-hero-cinematic { background: #251d17; }
.mps-cinematic-image, .mps-cinematic-image img, .mps-cinematic-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.mps-cinematic-image { margin: 0; }
.mps-cinematic-image img { object-fit: cover; object-position: center; filter: saturate(.76) contrast(1.08); }
.mps-cinematic-wash { background: linear-gradient(90deg, rgba(20,15,10,.86) 0%, rgba(20,15,10,.54) 38%, rgba(20,15,10,.1) 78%), linear-gradient(0deg, rgba(20,15,10,.58), transparent 54%); }
.mps-cinematic-note { position: absolute; right: clamp(28px, 8vw, 140px); bottom: clamp(45px, 9vh, 100px); color: rgba(255,250,240,.77); font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.65rem); font-style: italic; line-height: 1.12; transform: rotate(-5deg); }

.mps-hero-graphic { background: #0d5637; }
.mps-graphic-mark { position: absolute; top: -13vw; right: -13vw; width: min(71vw, 920px); opacity: .13; filter: brightness(0) invert(1); }
.mps-graphic-sketch { position: absolute; z-index: 2; top: 13%; left: 18%; height: min(70vh, 610px); opacity: .91; transform: rotate(-8deg); }
.mps-graphic-object { position: absolute; top: 16%; right: 8%; width: min(46vw, 710px); margin: 0; filter: drop-shadow(26px 32px 26px rgba(0,0,0,.26)); transform: rotate(-10deg); }
.mps-graphic-object img { width: 100%; height: min(61vh, 630px); object-fit: cover; object-position: center; mix-blend-mode: multiply; }
.mps-hero-graphic .mps-hero-copy { bottom: 9vh; }

@media (max-width: 900px) {
  .mps-study-controls { top: 83px; right: 18px; left: 18px; justify-content: flex-end; gap: 14px; }
  .mps-study-label { display: none; }
  .mps-ceremonial-object { top: 17%; right: -8%; width: 77vw; height: 47vh; }
  .mps-ceremonial-sketch { top: 16%; right: 7%; width: 92px; }
  .mps-graphic-sketch { top: 13%; left: 4%; height: 51vh; }
  .mps-graphic-object { top: 18%; right: -14%; width: 88vw; }
}

@media (max-width: 600px) {
  .mps-study-controls { top: 82px; justify-content: space-between; gap: 7px; }
  .mps-study-controls button { font-size: .51rem; letter-spacing: .07em; }
  .mps-hero-copy { bottom: 42px; left: 20px; }
  .mps-hero-copy h1 { font-size: clamp(3rem, 14vw, 4.35rem); }
  .mps-hero-copy p:not(.eyebrow) { margin-top: 18px; font-size: .98rem; }
  .mps-direction-caption { margin-top: 23px; font-size: .56rem; }
  .mps-crest-watermark { top: 17%; right: -44%; width: 125vw; }
  .mps-ceremonial-object { top: 18%; right: -17%; width: 113vw; height: 42vh; }
  .mps-ceremonial-object::after { inset: 5%; }
  .mps-ceremonial-sketch { top: 15%; right: 5%; width: 65px; }
  .mps-cinematic-image img { object-position: 61% center; }
  .mps-cinematic-wash { background: linear-gradient(90deg, rgba(20,15,10,.84), rgba(20,15,10,.18) 106%), linear-gradient(0deg, rgba(20,15,10,.66), transparent 60%); }
  .mps-cinematic-note { display: none; }
  .mps-graphic-mark { top: -5%; right: -44%; width: 136vw; }
  .mps-graphic-sketch { top: 15%; left: 2%; height: 46vh; }
  .mps-graphic-object { top: 19%; right: -37%; width: 130vw; }
  .mps-graphic-object img { height: 45vh; }
}

.placeholder-object-band {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 6vw, 90px);
  background: var(--ivory);
}

.placeholder-object-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 34px;
}

.placeholder-object-grid .image-brief {
  min-height: clamp(280px, 31vw, 470px);
  color: var(--ink);
  background: var(--parchment);
  border-color: var(--line);
  box-shadow: var(--image-shadow-soft);
}

.placeholder-object-grid .image-brief::before {
  border-color: rgba(42, 36, 29, 0.12);
}

.sketch-object img {
  object-fit: contain;
  padding: clamp(12px, 2vw, 24px);
  background: #f3ede1;
}

.project-image-placeholder {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(42, 36, 29, 0.14);
  background: #f3ede1;
}

.project-image-placeholder span {
  color: rgba(42, 36, 29, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-cta .button.primary {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 10px 28px rgba(42, 36, 29, 0.1);
}

.projects-cta .collection-cta-inner h2 {
  margin-bottom: clamp(34px, 3vw, 44px);
}

.story-steps {
  display: grid;
  gap: 0;
}

.story-step {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  padding: clamp(36px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.story-step:last-child {
  border-bottom: 1px solid var(--line);
}

.story-step span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.story-step h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.story-step p {
  max-width: 820px;
  margin: 22px 0 0;
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
}

.process-editorial,
.founding-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: var(--parchment);
}

.editorial-copy p:not(.eyebrow),
.founding-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.editorial-images {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 18px;
  align-items: end;
}

.editorial-images img,
.founding-image img {
  width: 100%;
  object-fit: cover;
  box-shadow: var(--image-shadow);
}

.editorial-images img:first-child {
  aspect-ratio: 4 / 5;
  background: var(--ink);
}

.editorial-images img:last-child {
  aspect-ratio: 3 / 4;
}

.founding-image img {
  aspect-ratio: 4 / 5;
}

.beliefs {
  background: var(--parchment);
}

.belief-grid {
  display: grid;
  gap: 20px;
}

.collection-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hill-collection .hero-image {
  object-position: center;
  filter: saturate(0.7) brightness(0.78);
}

.collection-hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 36px));
  margin: 0 0 clamp(64px, 10vh, 126px) clamp(18px, 6vw, 90px);
  color: var(--ivory);
}

.hero-store-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(24px, 5vh, 48px);
  z-index: 3;
  width: min(300px, calc(100% - 36px));
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(246, 242, 230, 0.94);
  border: 1px solid rgba(42, 36, 29, 0.22);
  text-align: left;
  box-shadow: 0 18px 55px rgba(42, 36, 29, 0.2);
}

.hero-store-card p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-store-card .text-link {
  font-size: 0.72rem;
}

.collection-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.collection-hero #wra-title {
  max-width: 940px;
}

.collection-subtitle {
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.chapter-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1.06rem, 1.65vw, 1.28rem);
}

.chapter-image {
  margin: 0;
}

.chapter-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--image-shadow);
}

.chapter-image figcaption {
  margin-top: 12px;
  color: rgba(42, 36, 29, 0.68);
  font-size: 0.82rem;
}

.collection-inspiration,
.collection-translation,
.product-cluster-section {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 6vw, 90px);
}

.collection-inspiration {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  background: var(--ivory);
}

.collection-inspiration-copy h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.6vw, 5rem);
}

.collection-inspiration-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(42, 36, 29, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}

.collection-inspiration-image {
  min-height: clamp(360px, 44vw, 620px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 36, 29, 0.045), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(42, 36, 29, 0.055) 0 1px, transparent 1px 14px),
    rgba(246, 242, 230, 0.72);
  border-color: var(--line);
  box-shadow: var(--image-shadow-soft);
}

.collection-inspiration-image::before {
  border-color: rgba(42, 36, 29, 0.13);
}

.collection-inspiration-image p {
  color: rgba(42, 36, 29, 0.62);
}

.collection-translation {
  --collection-progress: 0;
  --collection-inverse: 1;
  --collection-sketch-x: 0px;
  --collection-sketch-y: 0px;
  --collection-sketch-scale: 1;
  --collection-object-x: 30px;
  --collection-object-y: -16px;
  --collection-object-scale: 0.975;
  min-height: 175vh;
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  color: var(--ivory);
  background: var(--ink);
}

.collection-translation-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

.collection-translation-copy h2 {
  max-width: 520px;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
}

.collection-translation-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.65;
}

.collection-transform-visual {
  position: sticky;
  top: 116px;
  min-height: clamp(540px, 58vw, 760px);
}

.collection-transform-layer {
  position: absolute;
  min-height: auto;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.08), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.055) 0 1px, transparent 1px 14px),
    rgba(255, 250, 240, 0.045);
  border-color: rgba(255, 250, 240, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
  transition: opacity 120ms linear, transform 120ms linear;
}

.collection-transform-layer::before {
  border-color: rgba(255, 250, 240, 0.13);
}

.collection-transform-layer p {
  color: rgba(255, 250, 240, 0.68);
}

.collection-transform-sketch {
  inset: 12% 18% 8% 0;
  opacity: var(--collection-inverse);
  transform: translate3d(var(--collection-sketch-x), var(--collection-sketch-y), 0) scale(var(--collection-sketch-scale));
}

.collection-transform-object {
  inset: 0 0 0 22%;
  opacity: var(--collection-progress);
  transform: translate3d(var(--collection-object-x), var(--collection-object-y), 0) scale(var(--collection-object-scale));
}

.wra-page .collection-transform-object {
  inset: 15% 5% 12% 34%;
}

.wra-page .collection-transform-object.has-image > img {
  padding: 12%;
  object-fit: contain;
  background: #302921;
}

.hill-page .collection-transform-sketch {
  inset: 15% 3% 42% 0;
}

.hill-page .collection-transform-layer.collection-transform-sketch.has-image > img {
  object-fit: cover;
  object-position: 50% 0;
  clip-path: inset(0 0 48% 0);
  transform: translateY(22%) scale(1.22);
  transform-origin: center top;
}

.contact-page .site-header {
  color: var(--ink);
  background: var(--parchment);
}

.contact-page main {
  padding-top: 92px;
}

.wra-page #wra-products {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.15rem, 3.55vw, 4.25rem);
}

.product-cluster-section {
  background: var(--parchment);
  overflow: hidden;
}

.product-cluster-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 70px);
}

.product-cluster-heading h2 {
  max-width: 980px;
  font-size: clamp(2.35rem, 4.7vw, 5.3rem);
}

.product-cluster {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  margin-right: clamp(-90px, -6vw, -18px);
  margin-left: clamp(-90px, -6vw, -18px);
  padding: 4px clamp(18px, 6vw, 90px) 24px;
  scroll-padding-inline: clamp(18px, 6vw, 90px);
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(42, 36, 29, 0.32) transparent;
}

.product-tile {
  flex: 0 0 min(430px, 72vw);
  display: grid;
  gap: 16px;
  align-content: start;
  text-align: left;
  padding: clamp(14px, 2vw, 20px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.62);
  border: 1px solid var(--line);
  font: inherit;
  scroll-snap-align: start;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.product-detail-trigger {
  appearance: none;
  cursor: pointer;
}

.product-detail-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.product-tile.large,
.product-tile.wide {
  flex-basis: min(560px, 82vw);
}

.product-tile.tall {
  flex-basis: min(470px, 76vw);
}

.product-tile .image-brief {
  min-height: clamp(260px, 27vw, 430px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 36, 29, 0.045), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(42, 36, 29, 0.055) 0 1px, transparent 1px 14px),
    rgba(246, 242, 230, 0.76);
  border-color: var(--line);
  box-shadow: var(--image-shadow-soft);
}

.product-tile.tall .image-brief {
  min-height: clamp(430px, 48vw, 690px);
}

.product-tile.wide .image-brief {
  min-height: clamp(250px, 22vw, 360px);
}

.product-tile .image-brief::before {
  border-color: rgba(42, 36, 29, 0.12);
}

.product-tile .image-brief p {
  color: rgba(42, 36, 29, 0.62);
}

.product-tile h3 {
  font-size: clamp(1.35rem, 2vw, 2.2rem);
}

.product-tile > p {
  max-width: 440px;
  margin: 0;
  color: rgba(42, 36, 29, 0.72);
  font-size: 0.96rem;
  line-height: 1.5;
}

.product-tile:hover {
  z-index: 2;
  background: var(--ivory);
  box-shadow: 0 28px 80px rgba(42, 36, 29, 0.16);
  transform: scale(1.035);
}

.product-cluster.uniform-products .product-tile,
.product-cluster.uniform-products .product-tile.large,
.product-cluster.uniform-products .product-tile.tall,
.product-cluster.uniform-products .product-tile.wide {
  flex-basis: min(390px, 76vw);
}

.product-cluster.uniform-products .product-tile .image-brief,
.product-cluster.uniform-products .product-tile.tall .image-brief,
.product-cluster.uniform-products .product-tile.wide .image-brief {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.product-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.product-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 29, 0.52);
  backdrop-filter: blur(10px);
}

.product-detail-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(82vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.68fr);
  gap: clamp(20px, 4vw, 52px);
  overflow: auto;
  padding: clamp(18px, 3vw, 34px);
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(255, 250, 240, 0.5);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
}

.product-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(246, 242, 230, 0.88);
  border: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}

.product-detail-image {
  min-height: 220px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 36, 29, 0.045), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(42, 36, 29, 0.055) 0 1px, transparent 1px 14px),
    rgba(246, 242, 230, 0.76);
  border-color: var(--line);
}

.product-detail-image:first-child {
  grid-row: span 2;
}

.product-detail-image::before {
  border-color: rgba(42, 36, 29, 0.12);
}

.product-detail-image p {
  color: rgba(42, 36, 29, 0.62);
}

.product-detail-copy {
  align-self: center;
  padding-right: 22px;
}

.product-detail-copy h2 {
  font-size: clamp(2.15rem, 4vw, 4.4rem);
}

.product-detail-copy p:not(.eyebrow) {
  color: rgba(42, 36, 29, 0.72);
}

.product-detail-symbol {
  margin-top: 24px;
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.18;
}

.sketch-chapter {
  color: var(--ivory);
  background: var(--ink);
}

.sketch-pair {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 18px;
  align-items: end;
}

.sketch-pair img {
  width: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 250, 240, 0.08);
  box-shadow: var(--image-shadow);
}

.sketch-pair img:first-child {
  aspect-ratio: 4 / 3;
}

.sketch-pair img:last-child {
  aspect-ratio: 3 / 4;
}

.lifestyle-band {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--loom-green);
}

.lifestyle-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 24, 18, 0.72), rgba(21, 24, 18, 0.14) 58%, rgba(21, 24, 18, 0.62));
}

.lifestyle-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin: 0 0 clamp(64px, 10vh, 120px) clamp(18px, 6vw, 90px);
}

.lifestyle-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1.06rem, 1.8vw, 1.32rem);
}

.sketch-to-object {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(82px, 11vw, 170px) clamp(18px, 5vw, 72px);
  color: var(--ivory);
  background:
    radial-gradient(circle at 78% 12%, rgba(184, 154, 94, 0.12), transparent 28rem),
    var(--ink);
}

.process-sticky {
  position: sticky;
  top: 116px;
  align-self: start;
}

.process-sticky h2 {
  font-size: clamp(2.6rem, 5.2vw, 5.8rem);
}

.process-sticky p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
}

.process-scroll {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
}

.process-stage {
  display: grid;
  grid-template-columns: 46px minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  min-height: 640px;
  padding: clamp(22px, 3.6vw, 44px);
  background: rgba(255, 250, 240, 0.055);
  border: 1px solid rgba(255, 250, 240, 0.1);
  opacity: var(--stage-opacity, 0.55);
  transform: scale(var(--stage-scale, 0.98));
  transition: opacity 180ms ease, transform 180ms ease;
}

.process-stage > span {
  align-self: start;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.process-stage h3 {
  font-size: clamp(1.55rem, 2.6vw, 3rem);
}

.process-stage p {
  max-width: 520px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.96rem;
}

.process-stage > img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  background: rgba(255, 250, 240, 0.04);
  border: 1px solid rgba(255, 250, 240, 0.1);
}

.object-stage {
  grid-template-columns: 46px minmax(190px, 0.3fr) minmax(0, 1fr);
}

.object-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.34fr);
  gap: 18px;
  align-items: stretch;
}

.object-gallery figure {
  margin: 0;
  background: var(--ivory);
}

.object-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-main img {
  aspect-ratio: 4 / 5;
}

.object-gallery figcaption {
  padding: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.object-thumbs {
  display: grid;
  gap: 18px;
}

.object-thumbs img {
  aspect-ratio: 1 / 1;
}

.purchase-band {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(72px, 10vw, 150px) clamp(18px, 6vw, 90px);
  color: var(--ink);
  background: var(--parchment);
}

.purchase-band > img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--image-shadow);
}

.purchase-band::after {
  content: none;
}

.purchase-copy {
  width: min(760px, 100%);
}

.purchase-copy h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.8rem);
}

.purchase-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(42, 36, 29, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.compact-purchase {
  display: block;
  padding-top: clamp(48px, 7vw, 90px);
  padding-bottom: clamp(48px, 7vw, 90px);
}

.compact-purchase .purchase-copy {
  margin: 0 auto;
  text-align: center;
}

.compact-purchase .purchase-copy p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.collection-cta {
  padding: clamp(44px, 6vw, 76px) clamp(18px, 6vw, 90px);
  color: var(--ink);
  text-align: center;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.collection-cta-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.collection-cta:not(.projects-cta) .collection-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 2.8vw, 38px);
}

.collection-cta:not(.projects-cta) .collection-cta-inner > .eyebrow,
.collection-cta:not(.projects-cta) .collection-cta-inner > h2 {
  margin: 0;
}

.collection-cta:not(.projects-cta) .cta-headline span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .collection-cta:not(.projects-cta) .cta-headline {
    font-size: clamp(1.15rem, 5.8vw, 2.15rem);
  }
}

.collection-cta h2 {
  margin: 0 auto 24px;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
}

.small-cta {
  min-height: 0;
}

.dark-cta {
  color: var(--ivory);
  background: var(--ink);
  border-top: 0;
}

.dark-cta .button.primary {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.collection-cta:not(.projects-cta) .cta-chat-button {
  min-width: 182px;
  min-height: 54px;
  gap: 14px;
  padding: 15px 24px;
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--gold);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(12, 8, 5, .28), inset 0 0 0 3px rgba(184, 154, 94, .14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.collection-cta:not(.projects-cta) .cta-chat-button:hover {
  background: #fffdf7;
  box-shadow: 0 14px 30px rgba(12, 8, 5, .32), inset 0 0 0 3px rgba(184, 154, 94, .22);
  transform: translateY(-3px);
}

.collection-cta:not(.projects-cta) .cta-chat-arrow {
  transition: transform 180ms ease;
}

.collection-cta:not(.projects-cta) .cta-chat-button:hover .cta-chat-arrow {
  transform: translateX(3px);
}

.dark-cta .eyebrow {
  color: var(--gold);
}

.about-hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.about-hero > img,
.about-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero > img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85);
}

.about-hero-scrim {
  background:
    linear-gradient(90deg, rgba(42, 36, 29, 0.72), rgba(42, 36, 29, 0.2) 58%, rgba(42, 36, 29, 0.36)),
    linear-gradient(0deg, rgba(42, 36, 29, 0.62), rgba(42, 36, 29, 0.04) 58%);
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 36px));
  margin: 0 0 clamp(62px, 10vh, 130px) clamp(18px, 6vw, 90px);
}

.about-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 7.4vw, 8rem);
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 860px;
  margin: 24px 0 0;
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
}

.about-split,
.approach,
.founder-letter {
  padding: clamp(84px, 11vw, 170px) clamp(18px, 8vw, 130px);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: center;
  background: var(--ivory);
}

.about-split.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.02fr);
}

.about-split.reverse .about-split-copy {
  order: 2;
}

.about-split.reverse .about-split-image {
  order: 1;
}

.about-split-copy h2,
.approach-heading h2,
.founder-letter-heading h2 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5.1vw, 5.7rem);
}

.about-split-copy p:not(.eyebrow) {
  max-width: 820px;
  margin: 26px 0 0;
  color: rgba(42, 36, 29, 0.78);
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
}

.about-split-image {
  margin: 0;
}

.about-split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--image-shadow);
}

.sketch-field {
  padding: clamp(18px, 3vw, 34px);
  background: #f2ead9;
  border-radius: 8px;
  box-shadow: var(--image-shadow-soft);
}

.sketch-field img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.approach {
  background: var(--parchment);
}

.story-approach {
  position: relative;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.story-approach-carousel {
  position: relative;
  width: min(1120px, 100%);
  min-height: clamp(520px, 54vw, 690px);
  margin: 0 auto;
}

.story-approach-panels {
  position: relative;
  min-height: clamp(520px, 54vw, 690px);
}

.story-approach-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.story-approach-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-approach-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.story-approach-copy h2 {
  color: var(--loom-green);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.story-approach-copy p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(42, 36, 29, 0.76);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

.story-approach-panel figure {
  margin: 0;
}

.story-approach-panel figure img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--image-shadow);
}

.story-approach-panel:nth-child(2) figure img,
.story-approach-panel:nth-child(3) figure img {
  object-fit: contain;
  background: var(--ivory);
  padding: clamp(14px, 2vw, 26px);
}

.story-approach-controls {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(12px, 2vw, 28px);
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateY(-50%);
}

.story-approach-controls > button {
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  cursor: pointer;
}

.story-approach-controls > button:disabled {
  opacity: 0.3;
  cursor: default;
}

.story-approach-dots {
  display: grid;
  gap: 9px;
}

.story-approach-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(42, 36, 29, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.story-approach-dots button.is-active {
  background: var(--gold);
}

.approach-heading {
  margin-bottom: clamp(44px, 8vw, 110px);
}

.approach-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  margin-top: clamp(48px, 8vw, 120px);
}

.approach-row:first-of-type {
  margin-top: 0;
}

.approach-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
}

.approach-row.reverse .approach-copy {
  order: 2;
}

.approach-row.reverse figure {
  order: 1;
}

.approach-copy span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.approach-copy h3 {
  color: var(--loom-green);
  font-size: clamp(2.2rem, 4.1vw, 4.3rem);
}

.approach-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(42, 36, 29, 0.76);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
}

.approach-row figure {
  margin: 0;
}

.approach-row figure img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--image-shadow);
}

.approach-row:nth-of-type(3) figure img,
.approach-row:nth-of-type(4) figure img {
  object-fit: contain;
  background: var(--ivory);
  padding: clamp(14px, 2vw, 26px);
}

.approach-row.carry figure img {
  object-fit: cover;
  padding: 0;
}

.founder-letter {
  background: var(--ivory);
}

.founder-letter-heading {
  text-align: center;
}

.founder-letter-heading .eyebrow {
  color: var(--gold);
}

.founder-letter-heading h2 {
  margin-inline: auto;
  color: var(--gold);
}

.letter-paper {
  width: min(1040px, 100%);
  margin: clamp(34px, 6vw, 78px) auto 0;
  padding: clamp(34px, 6vw, 76px);
  color: rgba(42, 36, 29, 0.84);
  background: #fffaf0;
  border: 1px solid rgba(184, 154, 94, 0.28);
  box-shadow: 0 24px 80px rgba(42, 36, 29, 0.12);
  transform: rotate(-1.2deg);
}

.handwritten-letter {
  position: relative;
  overflow: hidden;
}

.handwritten-letter::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(184, 154, 94, 0.14);
  pointer-events: none;
}

.letter-paper p {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.9vw, 1.62rem);
  line-height: 1.45;
}

.handwritten-letter p {
  max-width: none;
  margin-bottom: clamp(18px, 3vw, 32px);
  color: rgba(42, 36, 29, 0.76);
  font-family: "Snell Roundhand", "Bradley Hand", "Segoe Script", cursive;
  font-size: clamp(1.12rem, 1.7vw, 1.46rem);
  line-height: 1.72;
}

.handwritten-letter span {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1100ms ease, transform 1100ms ease;
  transition-delay: var(--line-delay, 0ms);
}

.handwritten-letter.is-writing span {
  opacity: 1;
  transform: translateY(0);
}

.letter-paper .letter-signoff {
  margin-top: 34px;
  color: var(--loom-green);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
    row-gap: 10px;
    max-width: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    margin: 0 18px 132px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
  }

  .intro,
  .section-heading,
  .section-break,
  .feature-project,
  .process-layout,
  .about,
  .about-split,
  .about-split.reverse,
  .approach-row,
  .approach-row.reverse,
  .sketch-to-object,
  .process-stage,
  .object-stage,
  .purchase-band,
  .collection-inspiration,
  .collection-translation,
  .product-cluster-heading,
  .subpage-hero,
  .archive-card,
  .process-editorial,
  .founding-story,
  .chapter {
    grid-template-columns: 1fr;
  }

  .inquiry-layout,
  .placeholder-school-hero {
    grid-template-columns: 1fr;
  }

  .inquiry-layout {
    margin-top: 0;
  }

  .inquiry-intro {
    min-height: 620px;
  }

  .placeholder-school-image {
    min-height: 520px;
  }

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

  .about-split.reverse .about-split-copy,
  .about-split.reverse .about-split-image,
  .approach-row.reverse .approach-copy,
  .approach-row.reverse figure {
    order: initial;
  }

  .process-sticky {
    position: static;
  }

  .collection-translation {
    min-height: auto;
  }

  .story-approach {
    min-height: auto;
  }

  .story-approach-carousel,
  .story-approach-panels {
    min-height: 760px;
  }

  .story-approach-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    align-content: center;
  }

  .story-approach-panel figure img {
    max-height: 430px;
  }

  .story-approach-controls {
    top: auto;
    right: 16px;
    bottom: 16px;
    grid-template-columns: auto auto auto;
    transform: none;
  }

  .story-approach-dots {
    grid-template-columns: repeat(4, auto);
    align-items: center;
  }

  .hero-store-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -44px 18px 44px;
    align-self: end;
  }

  .collection-translation-copy,
  .collection-transform-visual {
    position: static;
  }

  .collection-transform-visual {
    min-height: 560px;
  }

  .product-detail-panel {
    grid-template-columns: 1fr;
    max-height: 86vh;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .process-stage {
    min-height: 0;
  }

  .feature-project {
    min-height: 0;
  }

  .project-media img {
    aspect-ratio: 4 / 3;
  }

  .project-index,
  .archive-card.large {
    grid-template-columns: 1fr;
  }

  .school-project-showcase {
    grid-template-columns: 1fr;
  }

  .school-project-summary {
    min-height: 460px;
  }

  .school-product-cluster {
    min-height: 560px;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .subpage-hero-media {
    min-height: 420px;
  }

  .school-logo-field {
    min-height: 540px;
  }

  .archive-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .story-step {
    grid-template-columns: 56px 1fr;
  }

  .editorial-images,
  .sketch-pair {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    min-height: 100vh;
  }

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

  .principle {
    min-height: 0;
  }

  .principle-icon {
    margin-bottom: 22px;
  }

  .collection-gallery,
  .type-grid,
  .home-project-links {
    grid-template-columns: 1fr;
  }

  .sketch-stack {
    min-height: 520px;
  }

  .sketch {
    width: 72%;
  }

  .footer {
    align-items: center;
  }
}

@media (max-width: 560px) {
  .hero-store-card p {
    white-space: normal;
  }

  .site-header {
    align-items: center;
    gap: 6px;
    padding: 11px 8px;
  }

  .brand {
    flex-direction: row;
    align-items: center;
  }

  .brand-logo {
    width: 128px;
    height: 40px;
  }

  .brand::after {
    width: 32px;
    height: 41px;
  }

  .site-header.is-scrolled .brand-logo {
    height: 40px;
  }

  .brand-mark {
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }

  .brand-sub {
    margin-left: 4px;
    font-size: 0.44rem;
    letter-spacing: 0.08em;
  }

  .nav,
  .footer nav {
    font-size: 0.47rem;
    letter-spacing: 0.04em;
  }

  .nav {
    max-width: none;
    gap: 5px;
    line-height: 1.2;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(21, 24, 18, 0.82), rgba(21, 24, 18, 0.38) 58%, rgba(21, 24, 18, 0.74)),
      linear-gradient(0deg, rgba(21, 24, 18, 0.82), rgba(21, 24, 18, 0.18) 58%);
  }

  .hero-content {
    margin: 0 18px 132px;
  }

  h1 {
    font-size: clamp(2.85rem, 13.4vw, 4rem);
    max-width: 100%;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .intro,
  .projects,
  .process,
  .design-types,
  .about,
  .about-split,
  .approach,
  .founder-letter,
  .collection-inspiration,
  .collection-translation,
  .product-cluster-section,
  .sketch-to-object,
  .purchase-band,
  .subpage-hero,
  .project-index,
  .project-system,
  .school-projects,
  .story-steps,
  .process-editorial,
  .founding-story,
  .beliefs,
  .chapter,
  .final-pieces,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-copy {
    padding: 28px 20px;
  }

  .sketch-stack {
    min-height: 420px;
  }

  .subpage-hero-copy h1,
  .collection-hero-copy h1,
  .about-hero-copy h1,
  .collection-hero #wra-title {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .collection-kicker {
    font-size: clamp(1.08rem, 5.6vw, 1.72rem);
  }

  .about-hero {
    min-height: 820px;
  }

  .about-hero-copy {
    margin-left: 18px;
    margin-right: 18px;
  }

  .about-split-copy h2,
  .approach-heading h2,
  .founder-letter-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .about-split-image img {
    aspect-ratio: 4 / 4.8;
  }

  .approach-row {
    margin-top: 64px;
  }

  .approach-row figure img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .approach-row:nth-of-type(3) figure img,
  .approach-row:nth-of-type(4) figure img {
    aspect-ratio: 4 / 4.4;
  }

  .letter-paper {
    padding: 28px 22px;
    transform: rotate(-0.5deg);
  }

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

  .process-stage > img {
    max-height: none;
  }

  .subpage-hero-media {
    min-height: 330px;
  }

  .collection-hero-copy,
  .lifestyle-copy {
    margin-left: 18px;
    margin-right: 18px;
  }

  .story-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .archive-card {
    padding: 12px;
  }

  .school-projects {
    gap: 24px;
  }

  .school-project-showcase {
    min-height: 0;
  }

  .school-project-summary {
    min-height: 390px;
    padding: 34px 24px;
  }

  .school-project-summary h2 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .school-product-cluster {
    min-height: 430px;
    gap: 8px;
    padding: 8px;
  }

  .archive-card h2,
  .story-step h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .chapter-image img,
  .founding-image img {
    aspect-ratio: 4 / 4.6;
  }

  .collection-transform-visual {
    min-height: 470px;
  }

  .product-cluster {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .product-tile:hover {
    transform: none;
  }

  .product-detail-modal {
    padding: 12px;
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
  }

  .product-detail-image:first-child {
    grid-row: auto;
  }

  .product-detail-copy {
    padding-right: 0;
  }

  .wra-page #wra-products {
    white-space: normal;
  }

  .inquiry-intro,
  .inquiry-form,
  .placeholder-school-copy,
  .placeholder-object-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .inquiry-intro h1,
  .placeholder-school-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .placeholder-school-image {
    min-height: 420px;
  }

  .placeholder-object-grid,
  .developing-school-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage structure draft */
.studio-home {
  background: var(--parchment);
}

.showroom-hero,
.home-section,
.home-cta {
  padding: clamp(72px, 9vw, 138px) clamp(18px, 5vw, 72px);
}

.showroom-hero {
  height: 100svh;
  min-height: 620px;
  position: relative;
  display: block;
  padding: 0;
  isolation: isolate;
  color: var(--ink);
  background: var(--parchment);
}

.home-page .site-header {
  color: var(--ink);
  background: var(--parchment);
}

.home-page .site-header.is-scrolled,
.contact-page .site-header.is-scrolled {
  color: var(--ink);
  background: var(--parchment);
}

.showroom-hero-copy {
  position: absolute;
  z-index: 2;
  top: 36.9%;
  left: clamp(18px, 5.7vw, 120px);
  padding: 0;
}

.showroom-hero-copy h1 {
  max-width: 34vw;
  font-size: clamp(3rem, 4.3vw, 5.6rem);
  line-height: 1;
}

.showroom-hero-copy .eyebrow {
  max-width: 390px;
  margin-bottom: clamp(28px, 3.2vw, 54px);
}

.showroom-hero-copy .text-link {
  margin-top: clamp(48px, 3.8vw, 72px);
}

.showroom-hero .text-link {
  align-items: center;
  border-bottom: 0;
  transform-origin: left center;
  transition: color 180ms ease, transform 180ms ease;
}

.showroom-hero .text-link:hover {
  color: var(--gold);
  transform: scale(1.025);
}

.showroom-hero .text-link::after {
  content: "→";
  margin-left: 14px;
  font-size: 1.15em;
  font-weight: 400;
  line-height: 1;
}

.showroom-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-sketches {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero-sketch {
  position: absolute;
  opacity: 0;
  filter: sepia(0.22) saturate(0.76);
  animation: hero-sketch-in 1.35s ease-out 160ms forwards;
}

.hero-sketch-tree {
  top: 12%;
  left: 48%;
  width: clamp(196px, 17vw, 420px);
  animation-delay: 160ms;
}

.hero-sketch-chain {
  bottom: 20%;
  left: 34%;
  width: clamp(330px, 31.5vw, 610px);
  transform: none;
  animation-delay: 160ms;
}

.hero-sketch-note {
  right: auto;
  bottom: 8.2%;
  left: 54%;
  width: clamp(104px, 7.2vw, 180px);
  animation-delay: 160ms;
}

.hero-showcase {
  position: absolute;
  z-index: 2;
  top: 12.1%;
  right: 4.9%;
  width: 32.2%;
  height: 79.2%;
  max-height: none;
  overflow: hidden;
  opacity: 0;
  transform: none;
  animation: hero-photo-in 1.35s ease-out 160ms forwards;
}

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

.hero-intro {
  opacity: 0;
  transform: none;
  animation: hero-copy-in 1.35s ease-out 160ms forwards;
}

@keyframes hero-sketch-in {
  from { opacity: 0; }
  to { opacity: 0.76; }
}

@keyframes hero-photo-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

.image-brief {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 32px);
  color: rgba(255, 250, 240, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.025)),
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.07) 0 1px, transparent 1px 14px),
    rgba(255, 250, 240, 0.055);
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.showroom-hero .image-brief {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 36, 29, 0.045), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(42, 36, 29, 0.055) 0 1px, transparent 1px 14px),
    rgba(255, 250, 240, 0.44);
  border-color: rgba(42, 36, 29, 0.16);
}

.showroom-hero .image-brief::before {
  border-color: rgba(42, 36, 29, 0.13);
}

.showroom-hero .image-brief p {
  color: rgba(42, 36, 29, 0.62);
}

.image-brief::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  pointer-events: none;
}

.image-brief span {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-brief p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(0.84rem, 1vw, 0.98rem);
}

.image-brief.has-image {
  padding: 0;
  background: var(--parchment);
  border-color: rgba(42, 36, 29, 0.12);
  box-shadow: var(--image-shadow-soft);
}

.image-brief.has-image::before {
  display: none;
}

.image-brief.has-image > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-showcase-card:hover .has-image > img,
.use-case-panel:hover .has-image > img {
  transform: scale(1.025);
}

.process-layer.has-image > img,
.collection-transform-layer.has-image > img {
  object-fit: contain;
  background: #f3ede1;
}

.process-layer-final.has-image > img,
.collection-transform-object.has-image > img {
  object-fit: cover;
  background: var(--parchment);
}

.home-section {
  background: var(--ivory);
}

.school-logo-banner {
  display: grid;
  gap: clamp(24px, 3.5vh, 34px);
  padding: clamp(62px, 7.5vh, 82px) clamp(24px, 6vw, 92px) clamp(68px, 8vh, 90px);
  color: #f3ebdd;
  background: #352e28;
  border-top: 1px solid #685c52;
  border-bottom: 1px solid #685c52;
  overflow: visible;
}

.showroom-hero + .school-logo-banner {
  margin-top: clamp(48px, 6vw, 84px);
}

.school-archive-nav {
  position: static;
  display: grid;
  gap: clamp(20px, 3vh, 30px);
  padding: 0;
  background: #352e28;
}

.school-logo-banner-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  margin: 0 auto;
  width: min(1180px, 100%);
  max-height: 132px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 320ms ease, opacity 220ms ease, transform 320ms ease;
}

.school-logo-banner-heading .eyebrow {
  color: #c5a568;
}

.school-logo-banner-heading h2 {
  max-width: none;
  color: #f3ebdd;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.02;
  white-space: nowrap;
}

.school-logo-banner-track {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 42px);
  margin-inline: auto;
  padding: 4px clamp(12px, 1.5vw, 20px) 12px;
  overflow: visible;
}

.school-logo-link {
  appearance: none;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 0 0 7px;
  color: #f3ebdd;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  opacity: 0.56;
  cursor: pointer;
  transition: opacity 200ms ease, border-color 200ms ease;
}

.school-logo-mark {
  position: relative;
  width: min(100%, 104px);
  height: 96px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  transition: width 320ms ease, height 320ms ease;
}

.school-logo-mark img {
  position: static;
  width: 92px;
  height: 88px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.school-logo-white {
  transform: scale(var(--logo-white-scale, 1));
}

.school-logo-name {
  color: #d8cfc3;
  font-size: 0.7rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 180ms ease, max-height 260ms ease;
}

.school-logo-link[data-school-tab="hill"] {
  --logo-white-scale: 1.09;
}

.school-logo-link[data-school-tab="taft"] {
  --logo-white-scale: 0.96;
}

.school-logo-link[data-school-tab="westover"] {
  --logo-white-scale: 1.05;
}

.school-logo-link[data-school-tab="hewitt"] {
  --logo-white-scale: 0.9;
}

.school-logo-link:hover,
.school-logo-link:focus-visible,
.school-logo-link.is-active {
  opacity: 1;
}

.school-logo-link.is-active {
  border-bottom-color: #c5a568;
}

.school-logo-link:hover .school-logo-mark img,
.school-logo-link:focus-visible .school-logo-mark img {
  filter: brightness(1.08);
}

.school-logo-link:focus-visible {
  outline: 1px solid #c5a568;
  outline-offset: 5px;
}

.school-archive-panels {
  width: min(1180px, 100%);
  margin-inline: auto;
  border: 1px solid #685c52;
  min-height: 0;
}

.school-archive-panel {
  height: clamp(340px, 47vh, 400px);
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(300px, 0.82fr);
}

.school-logo-banner.is-condensed .school-archive-nav {
  margin-inline: calc(clamp(24px, 6vw, 92px) * -1);
  padding: 6px clamp(24px, 6vw, 92px) 4px;
  gap: 2px;
  box-shadow: 0 10px 24px rgba(20, 16, 13, 0.18);
}

.school-logo-banner.is-condensed .school-logo-banner-heading {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
}

.school-logo-banner.is-condensed .school-logo-banner-track {
  gap: clamp(22px, 3.2vw, 48px);
}

.school-logo-banner.is-condensed .school-logo-link {
  gap: 0;
  padding-bottom: 4px;
}

.school-logo-banner.is-condensed .school-logo-mark {
  width: min(100%, 58px);
  height: 54px;
}

.school-logo-banner.is-condensed .school-logo-mark img {
  width: 54px;
  height: 50px;
}

.school-logo-banner.is-condensed .school-logo-name {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.school-archive-panel[hidden] {
  display: none;
}

.school-archive-image,
.school-archive-placeholder {
  min-width: 0;
  overflow: hidden;
  background: #29231e;
}

.school-archive-image {
  display: block;
}

.school-archive-image:focus-visible {
  outline: 2px solid #c5a568;
  outline-offset: -4px;
}

.school-archive-placeholder {
  display: grid;
  place-content: center;
  gap: 8px;
  color: #d8cfc3;
  text-align: center;
  border-right: 1px solid #685c52;
}

.school-archive-placeholder::before {
  content: "";
  width: min(440px, 60vw);
  height: 1px;
  margin-bottom: 8px;
  background: #685c52;
}

.school-archive-placeholder span {
  color: #c5a568;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.school-archive-placeholder strong {
  color: #f3ebdd;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-weight: 400;
}

.school-archive-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.school-archive-image-hill img {
  object-position: center 42%;
}

.school-archive-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 2.2vh, 26px);
  padding: clamp(22px, 3vw, 38px);
  border-left: 1px solid #685c52;
}

.school-archive-copy .eyebrow,
.school-archive-copy .text-link {
  color: #c5a568;
}

.school-archive-copy h3 {
  position: relative;
  top: -3px;
  max-width: 15ch;
  color: #f3ebdd;
  font-size: clamp(1.5rem, 2.1vw, 2.35rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
}

.school-archive-copy > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 0;
  color: #d8cfc3;
  font-size: clamp(0.84rem, 1vw, 1rem);
  line-height: 1.48;
}

.school-archive-copy .text-link {
  margin-top: 0;
  transform-origin: left center;
  transition: color 180ms ease, transform 180ms ease;
}

.school-archive-copy .text-link:hover,
.school-archive-copy .text-link:focus-visible {
  color: #c5a568;
  transform: scale(1.025);
}

.scroll-scene {
  min-height: 230vh;
}

.scroll-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.horizontal-viewport {
  overflow: visible;
}

.horizontal-track {
  --track-x: 0px;
  transform: translate3d(var(--track-x), 0, 0);
  transition: transform 80ms linear;
  will-change: transform;
}

.carousel-section {
  min-height: 0;
  padding-top: clamp(76px, 9vw, 138px);
  padding-bottom: clamp(76px, 9vw, 138px);
}

.carousel-shell {
  width: 100%;
}

.carousel-stage {
  position: relative;
  width: min(1120px, calc(100vw - 160px));
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  --carousel-index: 0;
  --carousel-offset: 0px;
  --carousel-gap: 18px;
  display: flex;
  width: 100%;
  gap: var(--carousel-gap);
  overflow: visible;
  margin: 0;
  padding: 0;
  scroll-padding-inline: 0;
  scroll-snap-type: none;
  transform: translate3d(calc(var(--carousel-offset) * -1), 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-track > * {
  flex: 0 0 calc((100% - 36px) / 3);
}

.carousel-track.project-showcase-grid,
.carousel-track.use-case-grid {
  width: 100%;
}

.carousel-track .project-showcase-card,
.carousel-track .use-case-panel {
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(42, 36, 29, 0.28);
  border-radius: 50%;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--ivory);
  background: var(--ink);
}

.carousel-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.carousel-arrow-prev {
  left: -66px;
}

.carousel-arrow-next {
  right: -66px;
}

.carousel-dots {
  min-height: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(42, 36, 29, 0.2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.carousel-dot.is-active {
  background: var(--ink);
  transform: scale(1.25);
}

.carousel-track .project-showcase-card .image-brief,
.carousel-track .project-showcase-card:first-child .image-brief {
  min-height: clamp(340px, 34vw, 480px);
}

.carousel-track .use-case-panel .image-brief {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.home-section:nth-of-type(3),
.process-preview {
  background: var(--parchment);
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.home-section-heading h2 {
  max-width: 900px;
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
}

.finished-product-gallery {
  width: min(1120px, calc(100vw - 160px));
  margin: 0 auto clamp(72px, 9vw, 132px);
}

.finished-gallery-stage {
  position: relative;
}

.finished-gallery-viewport {
  overflow: hidden;
  box-shadow: var(--image-shadow-soft);
}

.finished-gallery-track {
  display: flex;
  transform: translate3d(calc(var(--finished-gallery-index, 0) * -100%), 0, 0);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.finished-gallery-page {
  flex: 0 0 100%;
  height: clamp(430px, 52vw, 650px);
  display: grid;
  gap: clamp(12px, 1.5vw, 20px);
}

.finished-gallery-duo {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

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

.finished-gallery-page figure {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background: var(--parchment);
}

.finished-gallery-page img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.finished-gallery-page figure:hover img {
  transform: scale(1.025);
}

.finished-gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(42, 36, 29, 0.28);
  border-radius: 50%;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.finished-gallery-arrow:hover,
.finished-gallery-arrow:focus-visible {
  color: var(--ivory);
  background: var(--ink);
}

.finished-gallery-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.finished-gallery-prev {
  left: -66px;
}

.finished-gallery-next {
  right: -66px;
}

.finished-gallery-dots {
  min-height: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.finished-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(42, 36, 29, 0.2);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.finished-gallery-dot.is-active {
  background: var(--ink);
  transform: scale(1.25);
}

.use-case-heading {
  width: min(1120px, calc(100vw - 160px));
  margin: 0 auto clamp(26px, 4vw, 54px);
  padding-top: clamp(38px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.use-case-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.25vw, 3.8rem);
  line-height: 1.02;
}

.collections-page .subpage-hero-copy h1 {
  max-width: 940px;
  font-size: clamp(2.7rem, 4.25vw, 4.8rem);
}

.collections-page .subpage-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.collections-page .subpage-hero-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-top: clamp(34px, 3vw, 42px);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.6;
}

.collections-page .school-project-summary h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
}

.wra-page .collection-hero-copy h1,
.hill-page .collection-hero-copy h1 {
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

/* WRA bicentennial hero: paper and chapel first → oak and pendant → copy. */
.wra-heritage-hero {
  position: relative;
  /* A 16:10 desktop canvas that scales down with the viewport instead of
     retaining a minimum height and clipping its composition. */
  height: min(100svh, 62.5vw);
  min-height: 0;
  overflow: hidden;
  background: var(--parchment);
  isolation: isolate;
}

.wra-hero-paper,
.wra-hero-chapel-stamp,
.wra-hero-oak,
.wra-hero-pendant {
  position: absolute;
}

.wra-hero-paper {
  z-index: -2;
  inset: 0;
  background-color: var(--ivory);
}

.wra-hero-chapel-stamp {
  z-index: 1;
  top: clamp(88px, 12vh, 144px);
  left: 52%;
  width: clamp(235px, 24.5vw, 390px);
  aspect-ratio: 1.08 / 1;
  margin: 0;
  padding: clamp(7px, .7vw, 11px);
  overflow: hidden;
  background: #f5eee1;
  box-shadow: 0 15px 19px rgba(65, 51, 34, .14), 0 2px 5px rgba(65, 51, 34, .13);
  transform: rotate(-.8deg);
  opacity: 0;
  animation: wra-chapel-reveal 2.7s .42s cubic-bezier(.2, .8, .2, 1) forwards;
}

.wra-hero-chapel-stamp::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(105, 88, 65, .22);
  box-shadow: inset 0 0 0 5px rgba(255, 253, 245, .26);
  pointer-events: none;
}

.wra-hero-chapel-stamp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  filter: grayscale(1) sepia(.12) contrast(.86) brightness(1.05);
}

.wra-hero-oak {
  z-index: 0;
  top: 0;
  left: clamp(-16px, -1vw, 0px);
  width: auto;
  max-width: none;
  height: 100%;
  opacity: 0;
  transform: translate(-12px, 8px);
  animation: wra-objects-reveal 1.15s .42s cubic-bezier(.2, .8, .2, 1) forwards;
}

.wra-hero-pendant {
  z-index: 2;
  top: -24%;
  right: 0;
  width: 36vw;
  height: auto;
  max-height: none;
  object-fit: contain;
  opacity: 0;
  transform: rotate(3deg);
  filter: brightness(1.12) contrast(.9) drop-shadow(0 13px 12px rgba(58, 44, 28, .14));
  animation: wra-pendant-reveal 1.15s .42s cubic-bezier(.2, .8, .2, 1) forwards;
}

.wra-heritage-copy {
  position: absolute;
  z-index: 3;
  left: clamp(36px, 11vw, 184px);
  top: 61%;
  width: min(68vw, 960px);
  opacity: 0;
  transform: none;
  animation: wra-copy-reveal 1.15s .42s cubic-bezier(.2, .8, .2, 1) forwards;
}

.wra-heritage-copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .94;
  white-space: nowrap;
}

.wra-heritage-kicker {
  margin: clamp(16px, 1.9vw, 27px) 0 0;
  color: var(--gold);
  font-size: clamp(.75rem, .9vw, .94rem);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.wra-heritage-intro {
  max-width: 610px;
  margin: clamp(22px, 2.1vw, 30px) 0 0;
  color: rgba(42, 36, 29, .88);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
  white-space: nowrap;
}

/* Section 01: two moments from Reserve, stacked like well-used photographs. */
.wra-page .collection-inspiration-cards {
  position: relative;
  min-height: clamp(360px, 44vw, 620px);
  isolation: isolate;
}

.wra-page .wra-inspiration-card {
  position: absolute;
  width: 92%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0;
  padding: clamp(7px, .8vw, 12px);
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--image-shadow);
  transition: transform 950ms cubic-bezier(.2, .8, .2, 1), box-shadow 950ms ease;
}

.wra-page .wra-inspiration-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(.97);
}

.wra-page .wra-inspiration-card-alumni {
  z-index: 1;
  top: 12%;
  left: 1%;
  transform: rotate(-5deg);
}

.wra-page .wra-inspiration-card-alumni img {
  object-position: center;
}

.wra-page .wra-inspiration-card-reunion {
  z-index: 2;
  right: 1%;
  bottom: 12%;
  transform: rotate(4deg);
}

.wra-page .wra-inspiration-card-reunion img {
  object-position: center 42%;
}

.wra-page .collection-inspiration-cards:hover .wra-inspiration-card-alumni {
  z-index: 3;
  transform: translate(15%, 12%) rotate(4deg);
  box-shadow: 0 28px 72px rgba(42, 36, 29, .22), 0 2px 10px rgba(42, 36, 29, .08);
}

.wra-page .collection-inspiration-cards:hover .wra-inspiration-card-reunion {
  transform: translate(-10%, -7%) rotate(-4deg);
}

/* Section 01: Hill's historic house and current community, held as paired photographs. */
.hill-page .hill-inspiration-cards {
  position: relative;
  min-height: clamp(360px, 44vw, 620px);
  isolation: isolate;
}

.hill-page .hill-inspiration-card {
  position: absolute;
  width: 92%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0;
  padding: clamp(7px, .8vw, 12px);
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--image-shadow);
  transition: transform 950ms cubic-bezier(.2, .8, .2, 1), box-shadow 950ms ease;
}

.hill-page .hill-inspiration-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.97);
}

.hill-page .hill-inspiration-card-meigs {
  z-index: 1;
  top: 12%;
  left: 1%;
  transform: rotate(-5deg);
}

.hill-page .hill-inspiration-card-meigs img {
  object-position: center;
  filter: grayscale(.84) sepia(.12) contrast(.9) brightness(1.04);
}

.hill-page .hill-inspiration-card-celebration {
  z-index: 2;
  right: 1%;
  bottom: 12%;
  transform: rotate(4deg);
}

.hill-page .hill-inspiration-card-celebration img {
  object-position: center 42%;
}

.hill-page .hill-inspiration-cards:hover .hill-inspiration-card-meigs {
  z-index: 3;
  transform: translate(15%, 12%) rotate(4deg);
  box-shadow: 0 28px 72px rgba(42, 36, 29, .22), 0 2px 10px rgba(42, 36, 29, .08);
}

.hill-page .hill-inspiration-cards:hover .hill-inspiration-card-celebration {
  transform: translate(-10%, -7%) rotate(-4deg);
}

@keyframes wra-objects-reveal {
  to { opacity: .82; transform: translate(0, 0); }
}

@keyframes wra-pendant-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wra-copy-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wra-chapel-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wra-hero-oak,
  .wra-hero-pendant,
  .wra-hero-chapel-stamp,
  .wra-heritage-copy {
    animation: none;
  }

  .wra-hero-oak,
  .wra-hero-pendant { opacity: 1; transform: none; }
  .wra-hero-chapel-stamp { opacity: 1; }
  .wra-heritage-copy { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .wra-heritage-hero {
    height: 100svh;
    min-height: 0;
  }

  .wra-hero-oak {
    top: 2%;
    left: -37%;
    width: 166vw;
  }

  .wra-hero-chapel-stamp {
    top: 14%;
    left: auto;
    right: 7%;
    width: 41vw;
  }

  .wra-hero-pendant {
    top: 8%;
    right: -2%;
    width: 55vw;
    height: auto;
  }

  .wra-heritage-copy {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 8%;
    width: auto;
  }

  .wra-heritage-copy h1 {
    font-size: clamp(1.25rem, 7vw, 3rem);
  }

  .wra-heritage-intro {
    white-space: normal;
  }

  .wra-page .collection-inspiration-cards,
  .hill-page .hill-inspiration-cards {
    min-height: min(112vw, 520px);
  }
}

.wra-page .collection-hero-copy p:not(.eyebrow),
.hill-page .collection-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

@media (min-width: 901px) {
  .wra-page .collection-hero-copy p:not(.eyebrow) {
    max-width: 610px;
  }
}

/* Hill 175 hero: the approved still life, separated only for its school-sketch reveal. */
.hill-heritage-hero {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: #f8eee8;
  isolation: isolate;
}

.hill-hero-art,
.hill-heritage-copy {
  position: absolute;
}

.hill-hero-picture {
  display: contents;
}

.hill-hero-art {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hill-hero-art {
  z-index: 0;
  opacity: 1;
}

.hill-heritage-copy {
  z-index: 2;
  left: clamp(36px, 6.1vw, 98px);
  top: 50%;
  width: min(48vw, 760px);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-50%);
  animation: hill-primary-reveal 1.15s .16s ease-out forwards;
}

.hill-heritage-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .94;
}

.hill-heritage-kicker {
  margin: clamp(16px, 1.9vw, 26px) 0 0;
  color: #173966;
  font-size: clamp(.75rem, .9vw, .94rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hill-heritage-intro {
  max-width: 630px;
  margin: clamp(24px, 2.2vw, 34px) 0 0;
  color: rgba(42, 36, 29, .88);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.55;
}

@keyframes hill-primary-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hill-school-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hill-heritage-copy {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .hill-heritage-hero {
    height: max(690px, 100svh);
  }

  .hill-heritage-copy {
    top: auto;
    right: 24px;
    bottom: 8%;
    left: 24px;
    width: auto;
    transform: none;
  }

  .hill-heritage-copy h1 {
    font-size: clamp(1.25rem, 7vw, 3rem);
  }

  .hill-heritage-intro {
    max-width: 31rem;
  }
}

/* Keep the full navigation legible without letting it push a narrow phone layout sideways. */
@media (max-width: 480px) {
  .hill-page {
    overflow-x: clip;
  }

  .hill-page .site-header {
    gap: 10px;
    padding: 10px 14px;
  }

  .hill-page .site-header .brand::after {
    width: 36px;
    height: 46px;
  }

  .hill-page .nav {
    gap: 8px;
    font-size: .53rem;
    letter-spacing: .075em;
  }

  .hill-page .nav-dropdown {
    padding: 7px 0;
  }

  .hill-page .hill-heritage-copy {
    right: 20px;
    bottom: 7%;
    left: 20px;
  }

  .hill-page .hill-heritage-kicker,
  .hill-page .hill-symbol-study figcaption {
    letter-spacing: .08em;
  }
}

.wra-page .collection-inspiration,
.hill-page .collection-inspiration {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
}

.wra-page .collection-inspiration {
  color: var(--ivory);
  background: var(--ink);
}

.hill-page .collection-inspiration {
  color: var(--ivory);
  background: #173966;
}

.wra-page .collection-inspiration h2,
.hill-page .collection-inspiration h2 {
  color: var(--ivory);
}

.wra-page .collection-inspiration-copy p:not(.eyebrow),
.hill-page .collection-inspiration-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, .76);
}

.wra-page .collection-inspiration-copy p:not(.eyebrow),
.hill-page .collection-inspiration-copy p:not(.eyebrow) {
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
}

.wra-page .product-cluster-heading h2,
.hill-page .product-cluster-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.wra-page .product-tile h3,
.hill-page .product-tile h3 {
  font-size: clamp(1.3rem, 1.65vw, 1.8rem);
}

.project-showcase-grid {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
}

.project-showcase-card {
  display: grid;
  width: min(720px, 74vw);
  gap: 14px;
  padding: clamp(12px, 1.5vw, 18px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.58);
  border: 1px solid var(--line);
}

.project-showcase-card:first-child .image-brief {
  min-height: 620px;
}

.project-showcase-card .image-brief,
.use-case-panel .image-brief,
.process-preview-step .image-brief {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 36, 29, 0.055), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(42, 36, 29, 0.055) 0 1px, transparent 1px 14px),
    rgba(246, 242, 230, 0.78);
  border-color: var(--line);
}

.project-showcase-card .image-brief::before,
.use-case-panel .image-brief::before,
.process-preview-step .image-brief::before {
  border-color: rgba(42, 36, 29, 0.12);
}

.project-showcase-card .image-brief p,
.use-case-panel .image-brief p,
.process-preview-step .image-brief p {
  color: rgba(42, 36, 29, 0.62);
}

.project-showcase-card strong,
.project-showcase-card small {
  display: block;
}

.project-showcase-card strong {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.project-showcase-card small {
  color: rgba(42, 36, 29, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.is-coming-soon {
  opacity: 0.78;
}

.use-case-grid {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
}

.use-case-grid-static {
  width: min(1120px, calc(100vw - 160px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  margin: 0 auto;
}

.use-case-grid-static .use-case-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-brown);
}

.use-case-grid-static .use-case-panel .image-brief {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 0;
  box-shadow: none;
}

.use-case-grid-static .use-case-panel .image-brief::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(49, 39, 29, 0.72);
  transition: background-color 260ms ease;
}

.use-case-grid-static .use-case-panel img {
  transition: transform 500ms ease, filter 260ms ease;
  filter: saturate(0.72);
}

.use-case-grid-static .use-case-panel h3 {
  max-width: 22ch;
  margin: 0;
  padding: 24px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.use-case-grid-static .use-case-panel:hover .image-brief::after,
.use-case-grid-static .use-case-panel:focus-within .image-brief::after {
  background: rgba(49, 39, 29, 0.18);
}

.use-case-grid-static .use-case-panel:hover img,
.use-case-grid-static .use-case-panel:focus-within img {
  transform: scale(1.025);
  filter: saturate(1);
}

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

.use-case-section.use-case-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 5.5vw, 80px);
  width: min(1180px, calc(100vw - 128px));
  margin: 0 auto;
  padding: clamp(22px, 2.75vw, 36px) 0 clamp(36px, 4.5vw, 62px);
}

.use-case-explorer .use-case-heading {
  width: auto;
  margin: 0 0 clamp(30px, 3vw, 42px);
  padding: 0;
  border: 0;
}

.use-case-explorer .use-case-heading h2 {
  max-width: none;
  margin: 0 0 clamp(22px, 2.2vw, 30px);
  font-size: clamp(2.2rem, 3.05vw, 3.7rem);
  line-height: 1.06;
}

.use-case-explorer .use-case-heading h2 span {
  display: block;
  white-space: nowrap;
}

.use-case-explorer .use-case-heading p {
  max-width: 640px;
  margin: 0;
  color: rgba(42, 36, 29, 0.68);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

.use-case-list {
  border-top: 1px solid var(--line);
}

.use-case-option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 26px;
  gap: 12px;
  width: 100%;
  padding: 15px 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.use-case-number {
  color: rgba(42, 36, 29, 0.45);
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.2;
  transition: color 220ms ease;
}

.use-case-option-copy {
  display: grid;
  gap: 0;
}

.use-case-option strong {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.45vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}

.use-case-detail {
  max-width: none;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(42, 36, 29, 0.67);
  font-family: Avenir, "Avenir Next", Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.45;
  opacity: 0;
  transition: max-height 320ms ease, margin-top 320ms ease, opacity 220ms ease;
}

.use-case-arrow {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.use-case-option.is-active {
  border-bottom-color: rgba(184, 154, 94, 0.78);
}

.use-case-option.is-active .use-case-number {
  color: var(--gold);
}

.use-case-option.is-active .use-case-detail {
  max-height: 100px;
  margin-top: 9px;
  opacity: 1;
}

.use-case-option.is-active .use-case-arrow {
  opacity: 1;
  transform: translateX(0);
}

.use-case-option:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

.use-case-media {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  background: #e9e3d7;
  box-shadow: 0 24px 48px rgba(42, 36, 29, 0.14);
}

.use-case-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 420ms ease, transform 650ms ease;
}

.use-case-image.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.use-case-panel {
  display: grid;
  width: min(420px, 72vw);
  gap: 18px;
}

.use-case-panel .image-brief {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.use-case-panel h3,
.process-preview-step h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.15;
}

.use-case-panel > p {
  margin: -4px 0 0;
  color: rgba(42, 36, 29, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .use-case-section.use-case-explorer {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
    gap: 44px;
    padding: 24px 0 36px;
  }

  .use-case-explorer .use-case-heading h2 {
    max-width: none;
  }

  .use-case-media {
    grid-row: 1;
    width: min(100%, 560px);
    margin: 0 auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .school-logo-banner {
    min-height: auto;
    display: block;
    padding-inline: 24px;
  }

  .school-archive-nav {
    position: static;
  }

  .school-logo-banner.is-condensed .school-archive-nav {
    margin-inline: 0;
    padding: 0;
    box-shadow: none;
  }

  .school-logo-banner.is-condensed .school-logo-banner-heading {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .school-logo-banner.is-condensed .school-logo-name {
    max-height: none;
    opacity: 1;
  }

  .school-archive-panel {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .school-archive-image,
  .school-archive-placeholder {
    aspect-ratio: 4 / 3;
  }

  .school-archive-placeholder {
    border-right: 0;
    border-bottom: 1px solid #685c52;
  }

  .school-archive-copy {
    border-top: 1px solid #685c52;
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .use-case-section.use-case-explorer {
    width: calc(100% - 28px);
    gap: 34px;
    padding: 24px 0 44px;
  }

  .use-case-explorer .use-case-heading h2 {
    max-width: none;
    font-size: min(6.4vw, 1.85rem);
    line-height: 1.08;
  }

  .use-case-explorer .use-case-heading h2 span {
    display: block;
    white-space: nowrap;
  }

  .use-case-option {
    grid-template-columns: 42px minmax(0, 1fr) 24px;
    gap: 10px;
    padding: 20px 0;
  }

  .use-case-option strong {
    font-size: 1.28rem;
  }

  .use-case-detail {
    font-size: 0.88rem;
  }

  .use-case-media {
    aspect-ratio: 4 / 5;
  }

  .school-logo-banner {
    padding: 68px 16px;
  }

  .school-logo-banner-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
    max-height: none;
    overflow: visible;
  }

  .school-logo-banner-heading h2 {
    font-size: clamp(2rem, 9vw, 2.3rem);
    line-height: 1.05;
    white-space: normal;
  }

  .showroom-hero + .school-logo-banner {
    margin-top: 36px;
  }

  .school-logo-banner-track {
    grid-template-columns: repeat(7, 82px);
    gap: 10px;
    width: calc(100vw - 32px);
  }

  .school-logo-name {
    font-size: 0.65rem;
  }

  .school-archive-image,
  .school-archive-placeholder {
    aspect-ratio: 1 / 1;
  }

  .school-archive-copy {
    gap: 16px;
    padding: 28px 22px 34px;
  }

  .school-archive-copy h3 {
    font-size: 2.25rem;
  }
}

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

.process-preview-step {
  display: grid;
  gap: 18px;
  padding: clamp(14px, 2vw, 24px);
  background: var(--ivory);
}

.process-preview-step .image-brief {
  min-height: clamp(240px, 26vw, 380px);
}

.process-preview > .text-link {
  margin-top: 34px;
}

.process-transform {
  min-height: 190vh;
  padding-top: 0;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(184, 154, 94, 0.12), transparent 28rem),
    var(--ivory);
}

.process-transform-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: center;
  padding: clamp(82px, 9vw, 138px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.process-transform-copy {
  position: relative;
  z-index: 2;
}

.process-transform-copy h2 {
  max-width: 640px;
  font-size: clamp(2.5rem, 4.7vw, 5.4rem);
}

.process-transform-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 26px 0 0;
  color: rgba(42, 36, 29, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.process-transform-visual {
  --process-progress: 0;
  --process-inverse: 1;
  --sketch-x: 0px;
  --sketch-y: 0px;
  --sketch-scale: 1;
  --final-x: 34px;
  --final-y: -18px;
  --final-scale: 0.975;
  --process-accent-opacity: 0.18;
  position: relative;
  min-height: clamp(520px, 62vw, 760px);
}

.process-layer {
  position: absolute;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(42, 36, 29, 0.045), rgba(184, 154, 94, 0.08)),
    repeating-linear-gradient(135deg, rgba(42, 36, 29, 0.045) 0 1px, transparent 1px 14px),
    rgba(246, 242, 230, 0.58);
  border-color: rgba(42, 36, 29, 0.14);
  box-shadow: 0 30px 90px rgba(42, 36, 29, 0.08);
  transition: opacity 120ms linear, transform 120ms linear;
}

.process-layer::before {
  border-color: rgba(42, 36, 29, 0.12);
}

.process-layer p {
  color: rgba(42, 36, 29, 0.62);
}

.process-layer-sketch {
  inset: 9% 20% 10% 0;
  opacity: var(--process-inverse);
  transform: translate3d(var(--sketch-x), var(--sketch-y), 0) scale(var(--sketch-scale));
}

.process-layer-final {
  inset: 0 0 0 22%;
  opacity: var(--process-progress);
  transform: translate3d(var(--final-x), var(--final-y), 0) scale(var(--final-scale));
}

.process-layer-final::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: clamp(70px, 9vw, 120px);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 154, 94, 0.34);
  border-radius: 50%;
  opacity: var(--process-accent-opacity);
}

.home-cta {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 82px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 7vw, 108px);
  color: var(--ivory);
  background: var(--loom-green);
}

.cta-visual {
  width: min(100%, 460px);
  min-height: 0;
  height: clamp(260px, 32vw, 420px);
  justify-self: end;
}

.home-cta-copy h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.8vw, 5.6rem);
}

.home-cta-copy .button {
  margin-top: 34px;
}

.home-cta.home-cta-editorial {
  position: relative;
  min-height: clamp(380px, 46vh, 480px);
  grid-template-columns: minmax(0, 1.08fr) minmax(120px, 0.32fr) minmax(280px, 0.76fr);
  gap: clamp(24px, 3.5vw, 58px);
  align-items: center;
  padding: clamp(28px, 3vw, 44px) clamp(32px, 7vw, 110px);
  overflow: hidden;
}

.home-cta-editorial .home-cta-copy h2 {
  max-width: 820px;
  margin: clamp(26px, 3vw, 44px) 0 0;
  font-size: clamp(2.75rem, 4.5vw, 5rem);
  line-height: 1.02;
}

.home-cta-editorial .home-cta-sketch {
  width: 173%;
  max-height: 408px;
  align-self: end;
  object-fit: contain;
  opacity: 0.14;
  transform: translate(calc(-50% - 40px), 50%) rotate(20deg);
  transform-origin: 50% 100%;
  pointer-events: none;
}

.home-cta-editorial .home-cta-invitation {
  padding-top: clamp(24px, 3vw, 42px);
  border-top: 1px solid rgba(243, 235, 221, 0.22);
  color: #d8cfc3;
}

.home-cta-editorial .home-cta-invitation p {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.48;
}

.home-cta-editorial .home-cta-invitation .button {
  display: flex;
  width: min(100%, 390px);
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(26px, 3vw, 40px);
  color: var(--loom-green);
  background: #f3ebdd;
}

@media (max-width: 900px) {
  .home-cta.home-cta-editorial {
    min-height: 410px;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 28px 40px;
    padding: 28px 32px 34px;
  }

  .home-cta-editorial .home-cta-copy h2 {
    margin-top: 26px;
    font-size: clamp(2.5rem, 5.8vw, 3.35rem);
  }

  .home-cta-editorial .home-cta-sketch {
    position: absolute;
    left: 43%;
    bottom: -7%;
    width: 27%;
    max-height: 50%;
    opacity: 0.1;
    transform: translate(-35%, 40%) rotate(20deg);
  }

  .home-cta-editorial .home-cta-invitation {
    position: relative;
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .home-cta.home-cta-editorial {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 24px 190px;
  }

  .home-cta-editorial .home-cta-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .home-cta-editorial .home-cta-sketch {
    left: auto;
    right: -2%;
    bottom: 0;
    width: 50%;
    max-height: 38%;
    opacity: 0.16;
    transform: translate(6%, 10%) rotate(20deg);
    z-index: 0;
  }

  .home-cta-editorial .home-cta-copy,
  .home-cta-editorial .home-cta-invitation {
    position: relative;
    z-index: 1;
    justify-self: start;
    width: min(74%, 430px);
  }

  .home-cta-editorial .home-cta-invitation p,
  .home-cta-editorial .home-cta-invitation .button {
    width: 100%;
    max-width: none;
  }
}

/* Shared case-study bridge: a concise institutional brief between the visual
   hero and the source material. */
.collection-name {
  margin: 15px 0 0;
  font-size: clamp(.7rem, .88vw, .86rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mps-heritage-copy .collection-name,
.westover-hero-copy .collection-name,
.hewitt-hero-copy .collection-name {
  max-width: none;
  margin: 15px 0 0;
  font-size: clamp(.7rem, .88vw, .86rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mps-heritage-copy .collection-name {
  margin-top: clamp(16px, 1.9vw, 27px);
  font-size: clamp(.75rem, .9vw, .94rem);
  letter-spacing: .19em;
}

.hewitt-hero-copy .collection-name { margin: 0; }

.westover-hero-copy .collection-name {
  color: rgba(69, 51, 75, .76);
}

.project-brief {
  position: relative;
  z-index: 2;
  padding: clamp(64px, 8vw, 118px) clamp(22px, 6vw, 88px);
  background: #eee8da;
  border-top: 1px solid rgba(42, 36, 29, .14);
  border-bottom: 1px solid rgba(42, 36, 29, .14);
}

.wra-page .project-brief { background: #eee8dc; }
.hill-page .project-brief { background: #ebe5d9; }
.mps-page .project-brief {
  background: #e7ebd9;
  border-bottom: 0;
}
.westminster-page .project-brief { background: #ece7dd; }
.taft-page .project-brief {
  background: #eee7df;
  border-top: 0;
}
.westover-page .project-brief {
  background: #eee3df;
  border-top: 0;
}
.hewitt-page .project-brief {
  --brief-accent: #cfb274;
  color: var(--ivory);
  background: #0c2340;
  border-top: 0;
  border-bottom: 0;
}

body.hill-page:not(.taft-page):not(.westminster-page) .project-brief {
  border-top: 0;
}

.hewitt-page .project-brief-copy h2,
.hewitt-page .project-brief-facts dd {
  color: var(--ivory);
}

.hewitt-page .project-brief-copy > p {
  color: rgba(255, 250, 240, .78);
}

.hewitt-page .project-brief-facts {
  border-top-color: rgba(255, 250, 240, .24);
}

.hewitt-page .project-brief-facts > div + div {
  border-left-color: rgba(255, 250, 240, .18);
}

.project-brief-inner {
  display: grid;
  grid-template-columns: minmax(180px, .52fr) minmax(0, 1.48fr);
  gap: clamp(40px, 8vw, 126px);
  width: min(100%, 1320px);
  margin: 0 auto;
}

.project-brief-label {
  padding-top: 9px;
}

.project-brief .eyebrow,
.project-proof .eyebrow {
  margin: 0;
}

.project-status,
.proof-stage {
  max-width: 27ch;
  margin: 20px 0 0;
  color: rgba(42, 36, 29, .65);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-brief-copy h2 {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.2vw, 4.75rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.03em;
}

.project-brief-copy > p {
  max-width: 740px;
  margin: 30px 0 0;
  color: rgba(42, 36, 29, .76);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.66;
}

.project-brief-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(44px, 5vw, 70px) 0 0;
  border-top: 1px solid rgba(42, 36, 29, .2);
}

.project-brief-facts > div {
  min-width: 0;
  padding: 22px clamp(18px, 2vw, 30px) 0 0;
}

.project-brief-facts > div + div {
  padding-left: clamp(18px, 2vw, 30px);
  border-left: 1px solid rgba(42, 36, 29, .16);
}

.project-brief-facts dt {
  margin: 0 0 8px;
  color: rgba(42, 36, 29, .56);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-brief-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.42;
}

/* Editorial proof close: one strong claim, then the context that makes it
   credible. */
.project-proof {
  position: relative;
  z-index: 2;
  padding: clamp(78px, 10vw, 154px) clamp(22px, 6vw, 88px);
  color: var(--ink);
  background: #f6f0e4;
  border-top: 1px solid rgba(42, 36, 29, .14);
}

.project-proof-inner {
  display: grid;
  grid-template-columns: minmax(180px, .5fr) minmax(0, 1.5fr);
  gap: clamp(40px, 8vw, 126px);
  width: min(100%, 1320px);
  margin: 0 auto;
}

.project-proof-meta {
  padding-top: 12px;
}

.project-proof-story blockquote {
  margin: 0;
}

.project-proof-story blockquote p,
.project-proof-story > h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5.1vw, 6rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.035em;
}

.project-proof-story blockquote footer {
  margin-top: clamp(26px, 3vw, 42px);
  color: rgba(42, 36, 29, .7);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-proof-context {
  max-width: 760px;
  margin: clamp(36px, 5vw, 68px) 0 0;
  padding-top: 24px;
  color: rgba(42, 36, 29, .72);
  font-size: clamp(.98rem, 1.18vw, 1.14rem);
  line-height: 1.65;
  border-top: 1px solid rgba(42, 36, 29, .2);
}

.proof-fact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 900px;
  margin: clamp(44px, 5vw, 70px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(42, 36, 29, .2);
}

.proof-fact-list li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 24px clamp(18px, 2.4vw, 34px) 0 0;
}

.proof-fact-list li + li {
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 1px solid rgba(42, 36, 29, .16);
}

.proof-fact-list strong {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.8vw, 5.3rem);
  font-weight: 500;
  line-height: .9;
}

.proof-fact-list span {
  color: rgba(42, 36, 29, .64);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .collection-name {
    margin-top: 12px;
    font-size: .67rem;
    letter-spacing: .1em;
  }

  .project-brief,
  .project-proof {
    padding: 60px 22px 68px;
  }

  .project-brief-inner,
  .project-proof-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .project-brief-label,
  .project-proof-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-top: 0;
  }

  .project-status,
  .proof-stage {
    max-width: 19ch;
    margin: 0;
    text-align: right;
    font-size: .63rem;
  }

  .project-brief-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  .project-brief-copy > p {
    margin-top: 22px;
    font-size: 1rem;
  }

  .project-brief-facts,
  .proof-fact-list {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 38px;
  }

  .project-brief-facts > div,
  .proof-fact-list li {
    padding: 18px 0;
  }

  .project-brief-facts > div + div,
  .proof-fact-list li + li {
    padding-left: 0;
    border-top: 1px solid rgba(42, 36, 29, .14);
    border-left: 0;
  }

  .project-proof-story blockquote p,
  .project-proof-story > h2 {
    font-size: clamp(2.25rem, 11.4vw, 3.8rem);
    line-height: 1;
  }

  .project-proof-story blockquote footer {
    margin-top: 24px;
    font-size: .64rem;
  }

  .project-proof-context {
    margin-top: 34px;
    padding-top: 20px;
    font-size: .96rem;
  }

  .proof-fact-list strong {
    font-size: clamp(2.5rem, 14vw, 4.25rem);
  }

  .westover-page .westover-heirloom-section .wra-heirloom-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .westover-page .westover-heirloom-section .wra-heirloom-copy > .westover-process-body {
    grid-column: 1;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .showroom-hero {
    position: relative;
    display: grid;
    height: auto;
    min-height: 0;
    padding: 104px clamp(18px, 5vw, 40px) 0;
    overflow: hidden;
  }

  .hero-sketch-tree {
    top: 84px;
    left: 42%;
    width: min(43vw, 330px);
  }

  .hero-sketch-chain {
    bottom: 7%;
    left: 20%;
    width: min(60vw, 460px);
  }

  .hero-sketch-note {
    right: 18%;
    bottom: 29%;
  }

  .showroom-hero-copy {
    position: relative;
    top: auto;
    left: auto;
    padding-bottom: 12px;
  }

  .showroom-hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  .showroom-hero-copy .text-link {
    margin-top: 26px;
  }

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

  .finished-product-gallery {
    width: min(100% - 36px, 720px);
  }

  .finished-gallery-page {
    height: clamp(360px, 62vw, 520px);
  }

  .finished-gallery-prev {
    left: -48px;
  }

  .finished-gallery-next {
    right: -48px;
  }

  .use-case-heading {
    width: min(100% - 36px, 720px);
  }

  .use-case-grid-static {
    width: min(100% - 36px, 720px);
    display: grid;
  }

  .school-logo-banner-track {
    grid-template-columns: repeat(7, 94px);
    gap: 12px;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .school-logo-link {
    grid-column: span 1;
    scroll-snap-align: start;
  }

  .school-logo-link:nth-child(5),
  .school-logo-link:nth-child(6),
  .school-logo-link:nth-child(7) {
    grid-column: span 1;
    width: auto;
  }

  .showroom-hero,
  .home-cta,
  .project-showcase-grid {
    grid-template-columns: 1fr;
  }

  .scroll-scene {
    min-height: auto;
  }

  .scroll-sticky {
    position: static;
    min-height: 0;
    overflow: visible;
  }

  .horizontal-viewport {
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .horizontal-track {
    transform: none !important;
  }

  .process-transform {
    min-height: auto;
    padding: clamp(72px, 9vw, 138px) clamp(18px, 5vw, 72px);
  }

  .process-transform-sticky {
    position: static;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 0;
    overflow: visible;
  }

  .process-transform-visual {
    min-height: 560px;
  }

  .cta-visual {
    width: min(100%, 520px);
    height: clamp(260px, 68vw, 420px);
    justify-self: start;
  }

  .project-showcase-card,
  .use-case-panel {
    scroll-snap-align: start;
  }

  .carousel-stage {
    width: calc(100vw - 112px);
  }

  .carousel-track > * {
    flex-basis: calc((100% - 18px) / 2);
  }

  .carousel-arrow-prev {
    left: -48px;
  }

  .carousel-arrow-next {
    right: -48px;
  }

  .hero-showcase {
    position: relative;
    top: auto;
    right: auto;
    height: min(118vw, 720px);
    width: min(100%, calc(min(118vw, 720px) * 5 / 7));
    justify-self: center;
    margin-top: 20px;
  }

  .project-showcase-card:first-child .image-brief {
    min-height: 420px;
  }

  .use-case-grid,
  .process-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .inquiry-layout {
    margin-top: 0;
  }

  .inquiry-intro,
  .inquiry-form {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .inquiry-intro {
    min-height: 560px;
  }

  .inquiry-intro h1 {
    margin-bottom: 42px;
    font-size: clamp(3.1rem, 15.5vw, 4.5rem);
  }

  .inquiry-botanical {
    right: -20%;
    width: 88%;
    opacity: 0.13;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .form-field-name,
  .form-field-email,
  .form-field-organization,
  .form-field-message {
    grid-column: 1;
  }

  .form-field textarea {
    min-height: 180px;
  }

  .inquiry-form .button {
    width: 100%;
    min-width: 0;
  }

  .finished-product-gallery {
    width: calc(100% - 28px);
    margin-bottom: 72px;
  }

  .finished-gallery-page {
    height: clamp(250px, 76vw, 360px);
    gap: 8px;
  }

  .finished-gallery-duo {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .finished-gallery-arrow {
    width: 38px;
    height: 38px;
    background: rgba(255, 250, 240, 0.92);
  }

  .finished-gallery-prev {
    left: 10px;
  }

  .finished-gallery-next {
    right: 10px;
  }

  .use-case-heading {
    width: calc(100% - 28px);
  }

  .use-case-grid-static {
    width: calc(100% - 28px);
    display: grid;
  }

  .showroom-hero,
  .home-section,
  .home-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .showroom-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 3.4rem);
    line-height: 1.04;
  }

  .hero-sketches {
    display: block;
    z-index: 3;
  }

  .hero-sketch-tree {
    top: clamp(470px, 132vw, 560px);
    left: 47%;
    width: 48vw;
  }

  .hero-sketch-chain,
  .hero-sketch-note {
    display: none;
  }

  .hero-showcase,
  .use-case-grid,
  .process-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    height: min(124vw, 620px);
    width: min(88vw, calc(min(124vw, 620px) * 5 / 7));
  }

  .hero-sketch-tree {
    top: 88px;
    left: 46%;
    width: 43vw;
  }

  .hero-sketch-chain {
    bottom: 5%;
    left: 10%;
    width: 74vw;
  }

  .hero-sketch-note {
    right: 12%;
    bottom: 26%;
    width: 27vw;
  }

  .home-section-heading {
    display: grid;
  }

  .process-transform {
    padding-left: 16px;
    padding-right: 16px;
  }

  .process-transform-visual {
    min-height: 470px;
  }

  .carousel-stage {
    width: calc(100vw - 56px);
  }

  .carousel-track > * {
    flex-basis: 100%;
  }

  .carousel-arrow {
    top: auto;
    bottom: -58px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .carousel-arrow-prev {
    left: 0;
  }

  .carousel-arrow-next {
    right: 0;
  }

  .carousel-dots {
    margin-top: 30px;
  }

  .carousel-track .project-showcase-card .image-brief,
  .carousel-track .project-showcase-card:first-child .image-brief,
  .carousel-track .use-case-panel .image-brief {
    min-height: 380px;
  }

  .process-layer-sketch {
    inset: 12% 12% 18% 0;
  }

  .process-layer-final {
    inset: 0 0 0 14%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-approach-panel,
  .handwritten-letter span,
  .hero-sketch,
  .hero-showcase,
  .hero-intro {
    transition: none;
    animation: none;
  }

  .handwritten-letter span {
    opacity: 1;
    transform: none;
  }

  .hero-sketch,
  .hero-showcase,
  .hero-intro {
    opacity: 1;
    transform: none;
  }
}

/* Collections accordion: deliberately compact until a collection is explored. */
.collections-page .school-projects {
  counter-reset: collection;
}

.collections-page .school-project-showcase {
  counter-increment: collection;
}

.collections-page .school-project-summary::before {
  content: "0" counter(collection);
  display: block;
  margin-bottom: clamp(12px, 2vw, 28px);
  color: var(--collection-accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.collections-page .school-project-summary {
  padding: 10px clamp(24px, 5vw, 72px);
}

.collections-page .school-project-summary h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.55rem);
}

.collections-page .school-project-showcase:hover .school-project-summary,
.collections-page .school-project-showcase:focus-visible .school-project-summary {
  padding-top: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(32px, 5vw, 72px);
}

@media (max-width: 900px) {
  .collections-page .school-project-showcase {
    grid-template-columns: 1fr;
  }

  .collections-page .school-project-showcase:hover,
  .collections-page .school-project-showcase:focus-visible {
    min-height: 720px;
    max-height: 720px;
  }

  .collections-page .school-project-summary {
    min-height: 0;
  }

  .collections-page .school-product-cluster {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .collections-page .school-project-showcase {
    min-height: 88px;
    max-height: 88px;
  }

  .collections-page .school-project-summary {
    padding: 17px 22px;
  }

  .collections-page .school-project-summary::before {
    display: none;
  }

  .collections-page .school-project-summary h2 {
    font-size: clamp(1.35rem, 6.7vw, 2rem);
  }

  .collections-page .school-project-showcase:hover,
  .collections-page .school-project-showcase:focus-visible {
    min-height: 650px;
    max-height: 650px;
  }

  .collections-page .school-project-showcase:hover .school-project-summary h2,
  .collections-page .school-project-showcase:focus-visible .school-project-summary h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .collections-page .school-product-cluster {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collections-page .school-project-showcase,
  .collections-page .school-project-summary h2,
  .collections-page .school-project-summary p:not(.eyebrow),
  .collections-page .school-product-cluster,
  .collections-page .project-open {
    transition: none;
  }
}

/* Collections library: compact identity strips that unfold into a product gallery. */
.legacy-collection-accordion {
  display: none;
}

.collection-strips {
  display: grid;
  gap: 16px;
  width: min(1120px, calc(100% - clamp(36px, 10vw, 144px)));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 150px) 0;
  background: var(--ivory);
}

.collection-strip {
  --school-color: #173966;
  display: grid;
  grid-template-rows: 110px 0fr;
  overflow: hidden;
  color: var(--ink);
  border: 2px solid var(--school-color);
  background: var(--ivory);
  transition: grid-template-rows 560ms cubic-bezier(.2, .8, .2, 1), box-shadow 260ms ease;
}

.strip-wra { --school-color: #74382f; }
.strip-hill { --school-color: #173966; }
.strip-mps { --school-color: #176142; }
.strip-westminster { --school-color: #92773d; }
.strip-taft { --school-color: #952d46; }
.strip-westover { --school-color: #775b72; }
.strip-hewitt { --school-color: #54483b; }

.collection-strip:hover,
.collection-strip:focus-visible {
  grid-template-rows: 110px minmax(380px, 1fr);
  box-shadow: 0 20px 46px rgba(42, 36, 29, .08);
  outline: none;
}

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

.collection-strip-header {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  min-width: 0;
  padding: 18px clamp(20px, 3.2vw, 42px);
}

.collection-strip-header img {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.collection-strip-header > span {
  overflow: hidden;
  color: var(--school-color);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-strip-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 0;
  padding: 0 clamp(20px, 3.2vw, 42px) clamp(20px, 3.2vw, 42px);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 260ms ease 140ms, transform 480ms cubic-bezier(.2, .8, .2, 1) 80ms;
}

.collection-strip:hover .collection-strip-gallery,
.collection-strip:focus-visible .collection-strip-gallery {
  opacity: 1;
  transform: translateY(0);
}

.collection-image-placeholder {
  display: grid;
  min-height: 0;
  place-items: center;
  color: color-mix(in srgb, var(--school-color) 58%, white);
  background:
    linear-gradient(135deg, transparent 49.8%, color-mix(in srgb, var(--school-color) 17%, transparent) 50%, transparent 50.2%),
    color-mix(in srgb, var(--school-color) 8%, var(--parchment));
  border: 1px solid color-mix(in srgb, var(--school-color) 28%, transparent);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.collection-image-placeholder:first-child {
  grid-row: 1 / 3;
}

@media (max-width: 700px) {
  .collection-strips {
    width: calc(100% - 36px);
    gap: 12px;
    padding: 52px 0 72px;
  }

  .collection-strip {
    grid-template-rows: 88px 0fr;
  }

  .collection-strip:hover,
  .collection-strip:focus-visible {
    grid-template-rows: 88px 300px;
  }

  .collection-strip-header {
    gap: 15px;
    padding: 12px 16px;
  }

  .collection-strip-header img {
    width: 54px;
    height: 54px;
  }

  .collection-strip-header > span {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
  }

  .collection-strip-gallery {
    gap: 7px;
    padding: 0 12px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-strip,
  .collection-strip-gallery {
    transition: none;
  }
}

/* Approved collections overview: a simple product-led school grid. */
.collections-page .collection-strips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2.4vw, 38px) clamp(24px, 2.5vw, 42px);
  width: min(1360px, calc(100% - clamp(36px, 9vw, 144px)));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) 0;
  background: transparent;
}

.collections-page .collection-strip {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  overflow: hidden;
  align-self: start;
  border: 0;
  background: transparent;
  box-shadow: 12px 14px 28px -22px rgba(11, 7, 5, .34);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.collections-page .collection-strip:hover,
.collections-page .collection-strip:focus-visible {
  grid-template-rows: auto auto;
  box-shadow: 15px 18px 34px -22px rgba(11, 7, 5, .42);
  transform: translateY(-4px);
}

.collections-page .collection-strip:focus-visible {
  outline: 2px solid var(--school-color);
  outline-offset: 4px;
}

.collections-page .collection-strip-header {
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-height: 100px;
  padding: 18px clamp(18px, 2.3vw, 30px);
  border-top: 5px solid var(--school-color);
}

.collections-page .collection-strip-header img {
  width: 60px;
  height: 60px;
}

.collections-page .collection-strip-header > span {
  color: #2d211b;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.25vw, 2.4rem);
  line-height: 1.08;
  white-space: normal;
}

.collections-page .collection-strip-header img {
  filter: none;
}

.collections-page .collection-strip-gallery {
  grid-row: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
  gap: 6px;
  min-height: 0;
  aspect-ratio: 32 / 13;
  padding: 0;
  opacity: 1;
  transform: none;
  transition: none;
}

.collections-page .collection-image-placeholder {
  display: grid;
  min-height: 0;
  place-items: center;
  color: color-mix(in srgb, var(--school-color) 62%, #2d211b);
  background:
    linear-gradient(135deg, transparent 49.8%, color-mix(in srgb, var(--school-color) 20%, transparent) 50%, transparent 50.2%),
    color-mix(in srgb, var(--school-color) 7%, var(--ivory));
  border: 0;
}

.collections-page .collection-image-placeholder:first-child {
  grid-row: auto;
}

.collections-page .collection-image-placeholder:nth-child(3) {
  display: none;
}

@media (max-width: 760px) {
  .collections-page .collection-strips {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    gap: 24px;
    padding: 52px 0 72px;
  }

  .collections-page .collection-strip {
    grid-template-rows: auto auto;
  }

  .collections-page .collection-strip-header {
    min-height: 86px;
    padding: 14px 18px;
  }

  .collections-page .collection-strip-header img {
    width: 54px;
    height: 54px;
  }
}

/* Collections page refinements. */
.collections-page .projects-hero-media {
  display: grid;
  place-items: center;
}

.collections-page .projects-hero-media img {
  width: 85%;
  height: 85%;
}

/* Match the home hero's considered fade-in for the collections introduction. */
.collections-page .projects-hero-media {
  opacity: 0;
  animation: hero-photo-in 1.35s ease-out 160ms forwards;
}

.collections-page .projects-hero .hero-intro {
  opacity: 0;
  transform: none;
  animation: hero-copy-in 1.35s ease-out 160ms forwards;
}

@media (min-width: 901px) {
  .collections-page .projects-hero .hero-intro {
    position: relative;
    left: clamp(-28px, -1.8vw, -14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .collections-page .projects-hero-media,
  .collections-page .projects-hero .hero-intro {
    opacity: 1;
    animation: none;
  }
}

.collections-page main {
  background: var(--ivory);
}

.collections-page .subpage-hero {
  background: #2d211b;
}

.collections-divider {
  width: min(1360px, calc(100% - clamp(36px, 9vw, 144px)));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 58px) 0 0;
}

.collections-divider p {
  margin: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: clamp(.68rem, .85vw, .8rem);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.collections-page .collection-strip-gallery > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.collections-page .collection-strip-gallery > img:first-child {
  object-position: center;
}

.collections-page .collection-strip-gallery > img:nth-child(2) {
  object-position: center 34%;
}

.collections-page .strip-mps .collection-strip-gallery {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.collections-page .strip-taft .collection-strip-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collections-page .strip-westover .collection-strip-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collections-page .strip-hewitt .collection-strip-gallery {
  grid-template-columns: minmax(0, 1fr);
}

.collections-page .strip-mps {
  grid-template-rows: auto auto;
  align-self: start;
}

.collections-page .strip-mps .collection-strip-gallery {
  min-height: 0;
  aspect-ratio: 32 / 13;
}

.collections-page .projects-cta {
  position: relative;
  overflow: hidden;
  background: var(--loom-green);
}

.collections-page .projects-cta .collection-cta-inner {
  position: relative;
  z-index: 1;
}

.projects-cta-sketch {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(54vw, 720px);
  max-height: 118%;
  object-fit: contain;
  opacity: .5;
  pointer-events: none;
  transform: translate(5ch, 50%) rotate(30deg);
}

@media (max-width: 760px) {
  .collections-divider {
    width: calc(100% - 36px);
    gap: 14px;
  }

  .collections-divider p {
    font-size: .68rem;
  }

  .projects-cta-sketch {
    right: -28%;
    width: 135vw;
    opacity: .5;
  }
}

/* Curated folio treatment for the school collection index. */
.collections-page .collection-strips {
  gap: clamp(54px, 6vw, 92px) clamp(40px, 5vw, 76px);
  padding-top: clamp(42px, 5vw, 76px);
  padding-bottom: clamp(92px, 11vw, 160px);
}

.collections-page .collection-strip {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.collections-page .collection-strip:hover,
.collections-page .collection-strip:focus-visible {
  box-shadow: none;
  transform: translateY(-3px);
}

/* The folios enter as a quiet, sequential procession through the collection. */
.collections-page .collection-strip.reveal {
  opacity: 0;
  transform: translateY(50%);
  transition: opacity 900ms ease-out, transform 1000ms cubic-bezier(.2, .8, .2, 1);
}

.collections-page .collection-strip.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collections-page .collection-strip.reveal:nth-child(even) { transition-delay: 260ms; }

.collections-page .collection-strip-gallery {
  gap: clamp(5px, .625vw, 9px);
}

.collections-page .collection-strip-header {
  gap: clamp(14px, 1.7vw, 22px);
  min-height: 0;
  padding: clamp(17px, 2vw, 27px) 0 0;
  border-top-width: 2px;
}

.collections-page .collection-strip-header img {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

/* These supplied crests carry more transparent space around the artwork. */
.collections-page .strip-westover .collection-strip-header img {
  transform: scale(1.28);
}

.collections-page .collection-strip-header > span:not(.collection-explore) {
  flex: 1;
  color: var(--school-color);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: none;
}

.collections-page .collection-strip-header > .collection-explore {
  flex: 0 0 auto;
  display: inline-block;
  overflow: visible;
  color: var(--school-color);
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform-origin: center;
  transition: transform 180ms ease;
}

.collections-page .collection-strip:hover .collection-explore,
.collections-page .collection-strip:focus-visible .collection-explore {
  transform: scale(1.08);
}

.collections-page .collection-explore::after {
  content: " →";
  display: inline;
  font-size: .7rem;
}

/* WRA — the three ideas behind the collection */
.wra-page .wra-heirloom-section {
  display: block;
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  padding: clamp(110px, 11vw, 160px) clamp(18px, 6.8vw, 110px);
  color: var(--ink);
  background: var(--ivory);
}

.wra-page .site-header,
.wra-page .site-header.is-scrolled {
  color: var(--ink);
  background: var(--ivory);
  border-bottom-color: rgba(42, 36, 29, .11);
}

.wra-page .site-header .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg");
}

.wra-page .wra-heirloom-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.15fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
  align-self: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.wra-page .wra-heirloom-copy h2 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: .98;
}

.wra-page .wra-heirloom-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: clamp(44px, 4vw, 66px) 0 0;
  color: rgba(42, 36, 29, .76);
  font-size: clamp(.96rem, 1.16vw, 1.12rem);
  line-height: 1.62;
}

.wra-page .wra-symbol-studies {
  display: grid;
  grid-template-columns: 1fr .92fr 1.08fr;
  gap: clamp(22px, 5vw, 88px);
  align-items: start;
  max-width: 1400px;
  width: 100%;
  height: clamp(205px, 21vw, 335px);
  margin: clamp(34px, 3.5vw, 58px) auto 0;
  padding-top: 0;
}

.wra-page .wra-symbol-study {
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-items: end;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
}

.wra-page .wra-symbol-study img {
  display: block;
  width: 70%;
  height: 70%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  mix-blend-mode: normal;
}

.wra-page .wra-symbol-study:nth-child(2) img {
  width: 59%;
}

.wra-page .wra-symbol-study figcaption {
  margin-top: clamp(18px, 2.4vw, 32px);
  color: rgba(42, 36, 29, .68);
  font-size: clamp(.68rem, .85vw, .84rem);
  font-weight: 650;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.wra-page .wra-symbol-studies.is-visible .wra-symbol-study {
  animation: wra-symbol-fade 850ms cubic-bezier(.2, .75, .25, 1) forwards;
}

.wra-page .wra-symbol-studies.is-visible .wra-symbol-study:nth-child(2) {
  animation-delay: 220ms;
}

.wra-page .wra-symbol-studies.is-visible .wra-symbol-study:nth-child(3) {
  animation-delay: 440ms;
}

/* Hill — a colored-pencil study of place, intimacy, and legacy. */
.hill-page .hill-heirloom-section {
  display: block;
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  padding: clamp(110px, 11vw, 160px) clamp(18px, 6.8vw, 110px);
  color: var(--ink);
  background: #f8eee8;
}

.hill-page .hill-heirloom-copy {
  position: static;
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(0, 1.15fr);
  gap: clamp(52px, 7vw, 112px);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.hill-page .hill-heirloom-copy h2 {
  max-width: 560px;
  width: calc(100% + clamp(0px, 5vw, 72px));
  color: var(--ink);
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: .98;
}

.hill-page .hill-heirloom-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: clamp(44px, 4vw, 66px) 0 0;
  color: rgba(42, 36, 29, .76);
  font-size: clamp(.96rem, 1.16vw, 1.12rem);
  line-height: 1.62;
}

.hill-page .hill-symbol-studies {
  display: grid;
  grid-template-columns: 1fr .92fr 1.08fr;
  gap: clamp(22px, 5vw, 88px);
  align-items: start;
  max-width: 1400px;
  width: 100%;
  height: clamp(205px, 21vw, 335px);
  margin: clamp(34px, 3.5vw, 58px) auto 0;
}

.hill-page .hill-symbol-study {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-items: end;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
}

.hill-page .hill-symbol-study img {
  display: block;
  width: 61%;
  height: 65%;
  object-fit: contain;
  object-position: center bottom;
}

.hill-page .hill-symbol-study:nth-child(2) img {
  width: 37%;
  height: 54%;
}

.hill-page .hill-symbol-study:nth-child(3) img {
  width: 76%;
  height: 42%;
}

.hill-page .hill-symbol-study figcaption {
  margin-top: clamp(18px, 2.4vw, 32px);
  color: rgba(42, 36, 29, .68);
  font-size: clamp(.68rem, .85vw, .84rem);
  font-weight: 650;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hill-page .hill-symbol-studies.is-visible .hill-symbol-study {
  animation: wra-symbol-fade 850ms cubic-bezier(.2, .75, .25, 1) forwards;
}

.hill-page .hill-symbol-studies.is-visible .hill-symbol-study:nth-child(2) {
  animation-delay: 220ms;
}

.hill-page .hill-symbol-studies.is-visible .hill-symbol-study:nth-child(3) {
  animation-delay: 440ms;
}

@keyframes wra-symbol-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .wra-page .wra-heirloom-section {
    display: block;
    aspect-ratio: auto;
    height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .wra-page .wra-heirloom-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .wra-page .wra-symbol-studies {
    gap: 10px;
    height: auto;
    margin-top: 58px;
    padding-top: 0;
  }

  .wra-page .wra-symbol-study {
    grid-template-rows: minmax(145px, 42vw) auto;
  }

  .wra-page .wra-symbol-study figcaption {
    font-size: .55rem;
    letter-spacing: .12em;
  }

  .hill-page .hill-heirloom-section {
    display: block;
    aspect-ratio: auto;
    height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hill-page .hill-heirloom-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hill-page .hill-symbol-studies {
    gap: 10px;
    height: auto;
    margin-top: 28px;
  }

  .hill-page .hill-heirloom-copy p:not(.eyebrow) {
    margin-top: 0;
  }

  .hill-page .hill-symbol-study {
    grid-template-rows: minmax(145px, 42vw) auto;
  }

  .hill-page .hill-symbol-study img {
    width: 86%;
    height: 64%;
  }

  .hill-page .hill-symbol-study:nth-child(2) img {
    width: 55%;
    height: 50%;
  }

  .hill-page .hill-symbol-study:nth-child(3) img {
    width: 100%;
    height: 40%;
  }

  .hill-page .hill-symbol-study figcaption {
    font-size: .55rem;
    letter-spacing: .12em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wra-page .wra-symbol-study {
    opacity: 1;
    transform: none;
  }

  .wra-page .wra-symbol-studies.is-visible .wra-symbol-study {
    animation: none;
  }

  .hill-page .hill-symbol-study {
    opacity: 1;
    transform: none;
  }

  .hill-page .hill-symbol-studies.is-visible .hill-symbol-study {
    animation: none;
  }
}

@media (max-width: 760px) {
  .collections-page .collection-strips {
    gap: 48px;
    padding-top: 36px;
    padding-bottom: 82px;
  }

  .collections-page .collection-strip-header {
    padding-top: 14px;
  }

  .collections-page .collection-strip-header img {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .collections-page .collection-strip-header > span:not(.collection-explore) {
    font-size: .95rem;
  }

  .collections-page .collection-strip-header > .collection-explore {
    font-size: .46rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collections-page .collection-strip.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Collection heroes begin with an unobtrusive header. Once the reader moves
   into the story, a quiet parchment surface protects the navigation from the
   changing artwork and copy beneath it. */
.wra-page .site-header,
.hill-page .site-header,
.mps-page .site-header,
.westminster-page .site-header,
.taft-page .site-header,
.westover-page .site-header,
.hewitt-page .site-header {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none;
}

body:is(.wra-page, .hill-page, .mps-page, .westminster-page, .taft-page, .westover-page, .hewitt-page) .site-header.is-scrolled:not(.nav-open) {
  color: var(--ink) !important;
  background: rgba(246, 242, 230, .94) !important;
  border-bottom: 0 !important;
  backdrop-filter: blur(16px) saturate(.9);
  -webkit-backdrop-filter: blur(16px) saturate(.9);
}

body:is(.wra-page, .hill-page, .mps-page, .westminster-page, .taft-page, .westover-page, .hewitt-page) .site-header.is-scrolled:not(.nav-open) .brand::after,
body:is(.wra-page, .hill-page, .mps-page, .westminster-page, .taft-page, .westover-page, .hewitt-page) .site-header.nav-open .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg") !important;
}

body:is(.wra-page, .hill-page, .mps-page, .westminster-page, .taft-page, .westover-page, .hewitt-page) .site-header.nav-open {
  color: var(--ink) !important;
}

.site-header.nav-on-dark {
  color: var(--ivory) !important;
}

.site-header.nav-on-light {
  color: var(--ink) !important;
}

.site-header.nav-on-dark .brand::after {
  background-image: url("assets/loom-tile-logo-beige.svg") !important;
}

.site-header.nav-on-light .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg") !important;
}

/* The contact page uses a fixed parchment header, so its controls should not
   inherit the artwork-aware light treatment used by collection pages. */
.contact-page .site-header,
.contact-page .site-header.is-scrolled,
.contact-page .site-header.nav-on-dark,
.contact-page .site-header.nav-on-light {
  color: var(--ink) !important;
  background: var(--parchment);
}

.contact-page .site-header .brand::after,
.contact-page .site-header.is-scrolled .brand::after,
.contact-page .site-header.nav-on-dark .brand::after,
.contact-page .site-header.nav-on-light .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg") !important;
}

/* The Collections header remains deep brown throughout the page. Keep its
   closed navigation light even while the content underneath becomes ivory. */
.collections-page .site-header:not(.nav-open) {
  color: var(--ivory) !important;
  background: #2d211b;
}

.collections-page .site-header:not(.nav-open) .brand::after {
  background-image: url("assets/loom-tile-logo-beige.svg") !important;
}

.collections-page .site-header.nav-open {
  color: var(--ink) !important;
}

.collections-page .site-header.nav-open .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg") !important;
}

/* The homepage header remains parchment throughout the page. Keep its closed
   navigation dark even while the content underneath becomes deep brown. */
.home-page .site-header:not(.nav-open) {
  color: var(--ink) !important;
  background: var(--parchment);
}

.home-page .site-header:not(.nav-open) .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg") !important;
}

/* WRA — image-led collection gallery */
.wra-page .wra-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - 80px);
  color: var(--ivory);
  background: var(--ink);
}

.wra-page .dark-cta {
  background: var(--ink);
}

.wra-page .wra-product-gallery-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  padding: clamp(62px, 6.1vw, 104px) clamp(32px, 5.2vw, 84px) clamp(52px, 5.5vw, 88px);
}

.wra-page .wra-product-gallery-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 54px);
}

.wra-page .wra-product-gallery-heading h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.7rem, 4.15vw, 4.5rem);
  line-height: .96;
  color: var(--ivory);
  white-space: nowrap;
}

.wra-page .wra-gallery-stage {
  display: grid;
  grid-template-columns: minmax(88px, .22fr) minmax(310px, 1fr) minmax(88px, .22fr);
  gap: clamp(14px, 2vw, 32px);
  min-height: 0;
  align-items: center;
}

.wra-page .wra-gallery-slides {
  position: relative;
  height: 100%;
  min-height: 360px;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  justify-self: center;
  width: min(100%, 510px);
}

.wra-page .wra-gallery-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.wra-page .wra-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wra-page .wra-gallery-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wra-page .wra-gallery-slide::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(transparent, rgba(23, 18, 14, .8));
}

.wra-page .wra-gallery-slide > div {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: #fff8ec;
}

.wra-page .wra-gallery-slide span {
  color: #dfb76b;
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .16em;
}

.wra-page .wra-gallery-slide h3 {
  margin: 10px 0 5px;
  color: #fff8ec;
  font-size: clamp(.92rem, 1.1vw, 1.08rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wra-page .wra-gallery-slide p {
  margin: 0;
  color: rgba(255, 248, 236, .84);
  font-size: .92rem;
}

.wra-page .wra-gallery-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  height: clamp(225px, 32vw, 430px);
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #fff8ec;
  background: #241e19;
  cursor: pointer;
}

.wra-page .wra-gallery-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(31, 25, 20, .3);
  transition: background 220ms ease;
}

.wra-page .wra-gallery-preview:hover::after,
.wra-page .wra-gallery-preview:focus-visible::after {
  background: rgba(31, 25, 20, .05);
}

.wra-page .wra-gallery-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wra-page .wra-gallery-preview span {
  position: absolute;
  z-index: 1;
  bottom: 17px;
  left: 50%;
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
}

.wra-page .wra-gallery-preview:focus-visible {
  outline: 2px solid #bc914b;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .wra-page .wra-product-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wra-page .wra-product-gallery-main {
    padding: 56px 20px;
  }

  .wra-page .wra-product-gallery-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wra-page .wra-product-gallery-heading h2 {
    white-space: normal;
  }

  .wra-page .wra-gallery-stage {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 10px;
  }

  .wra-page .wra-gallery-preview {
    height: 250px;
  }

  .wra-page .wra-gallery-slides {
    min-height: 410px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wra-page .wra-gallery-slide { transition: none; }
}

/* Three-piece WRA gallery view */
.wra-page .wra-gallery-stage {
  display: block;
}

.wra-page .wra-gallery-slides {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(14px, 1.65vw, 28px);
  width: 100%;
  height: clamp(375px, 43vw, 590px);
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  transition: grid-template-columns 520ms cubic-bezier(.2, .75, .25, 1);
}

.wra-page .wra-gallery-slide,
.wra-page .wra-gallery-slide.is-active {
  position: relative;
  display: none;
  inset: auto;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.wra-page .wra-gallery-slide.is-active {
  display: block;
}

.wra-page .wra-gallery-slides:has(.wra-gallery-slide.is-slot-2:hover) {
  grid-template-columns: 1fr 1.6fr 1fr;
}

.wra-page .wra-gallery-slides:has(.wra-gallery-slide.is-slot-3:hover) {
  grid-template-columns: 1fr 1fr 1.6fr;
}

.wra-page .wra-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  color: rgba(255, 250, 240, .58);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.wra-page .wra-gallery-controls button {
  border: 0;
  padding: 4px;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.wra-page .wra-gallery-controls button:disabled {
  cursor: default;
  opacity: .3;
}

.wra-page .wra-gallery-controls button:not(:disabled):hover,
.wra-page .wra-gallery-controls button:focus-visible {
  color: #a77e3e;
  outline: none;
}

/* Hill — same three-piece collection gallery, with Hill's quieter blue-led palette. */
.hill-page .hill-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - 80px);
  color: var(--ivory);
  background: #173966;
}

.hill-page .hill-product-gallery .wra-product-gallery-main {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  padding: clamp(62px, 6.1vw, 104px) clamp(32px, 5.2vw, 84px) clamp(52px, 5.5vw, 88px);
}

.hill-page .hill-product-gallery .wra-product-gallery-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 54px);
}

.hill-page .hill-product-gallery .wra-product-gallery-heading h2 {
  max-width: none;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(2.7rem, 4.15vw, 4.5rem);
  line-height: .96;
  white-space: nowrap;
}

.hill-page .hill-product-gallery .wra-gallery-stage {
  display: block;
}

.hill-page .hill-product-gallery .wra-gallery-slides {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(14px, 1.65vw, 28px);
  width: 100%;
  height: clamp(375px, 43vw, 590px);
  min-height: 0;
  margin: 0;
  transition: grid-template-columns 520ms cubic-bezier(.2, .75, .25, 1);
}

.hill-page .hill-product-gallery .wra-gallery-slide,
.hill-page .hill-product-gallery .wra-gallery-slide.is-active {
  position: relative;
  display: none;
  height: 100%;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hill-page .hill-product-gallery .wra-gallery-slide.is-active {
  display: block;
}

.hill-page .hill-product-gallery .wra-gallery-slides:has(.wra-gallery-slide.is-slot-2:hover) {
  grid-template-columns: 1fr 1.6fr 1fr;
}

.hill-page .hill-product-gallery .wra-gallery-slides:has(.wra-gallery-slide.is-slot-3:hover) {
  grid-template-columns: 1fr 1fr 1.6fr;
}

.hill-page .hill-product-gallery .wra-gallery-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep the bracelet visible at the vertical center of its card. */
.hill-page .hill-product-gallery .wra-gallery-slide:nth-child(6) > img {
  height: 140%;
  object-position: 30% center;
  transform: translateY(-28%);
}

.hill-page .dark-cta {
  background: var(--ink);
}

.hill-page .site-header,
.hill-page .site-header.is-scrolled {
  color: var(--ink);
  background: #f8eee8;
  border-bottom-color: rgba(42, 36, 29, .11);
}

.hill-page .site-header .brand::after {
  background-image: url("assets/loom-tile-logo-deep-brown.svg");
}

.hill-page .hill-product-gallery .wra-gallery-slide::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(transparent, rgba(23, 18, 14, .8));
}

.hill-page .hill-product-gallery .wra-gallery-slide > div {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: #fff8ec;
}

.hill-page .hill-product-gallery .wra-gallery-slide span {
  color: #8da8ce;
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .16em;
}

.hill-page .hill-product-gallery .wra-gallery-slide h3 {
  margin: 10px 0 5px;
  color: #fff8ec;
  font-size: clamp(.92rem, 1.1vw, 1.08rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hill-page .hill-product-gallery .wra-gallery-slide p {
  margin: 0;
  color: rgba(255, 248, 236, .84);
  font-size: .92rem;
}

.hill-page .hill-product-gallery .wra-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  color: rgba(255, 250, 240, .58);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hill-page .hill-product-gallery .wra-gallery-controls button {
  padding: 4px;
  border: 0;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.hill-page .hill-product-gallery .wra-gallery-controls button:disabled {
  cursor: default;
  opacity: .3;
}

.hill-page .hill-product-gallery .wra-gallery-controls button:not(:disabled):hover,
.hill-page .hill-product-gallery .wra-gallery-controls button:focus-visible {
  color: #8da8ce;
  outline: none;
}

@media (max-width: 760px) {
  .hill-page .hill-product-gallery {
    min-height: 0;
  }

  .hill-page .hill-product-gallery .wra-product-gallery-main {
    padding: 56px 20px;
  }

  .hill-page .hill-product-gallery .wra-product-gallery-heading h2 {
    white-space: normal;
  }

  .hill-page .hill-product-gallery .wra-gallery-slides {
    grid-template-columns: 1fr;
    height: 470px;
  }

  .hill-page .hill-product-gallery .wra-gallery-slide.is-active:not(.is-featured) {
    display: none;
  }

  .hill-page .hill-product-gallery .wra-gallery-controls {
    justify-content: space-between;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .wra-page .wra-gallery-slides {
    grid-template-columns: 1fr;
    height: 470px;
  }

  .wra-page .wra-gallery-slide.is-active:not(.is-featured) {
    display: none;
  }

  .wra-page .wra-gallery-controls {
    justify-content: space-between;
    gap: 12px;
  }
}

/* WRA responsive layout: switch compositions before their desktop grids become cramped. */
@media (max-width: 900px) {
  .wra-page .collection-inspiration {
    grid-template-columns: minmax(0, 1fr);
  }

  .wra-page .collection-inspiration-copy {
    min-width: 0;
  }

  .wra-page .wra-heritage-hero {
    height: clamp(620px, 82svh, 760px);
  }

  .wra-page .wra-heirloom-section {
    padding-top: clamp(76px, 10vw, 104px);
    padding-bottom: clamp(76px, 10vw, 104px);
  }

  .wra-page .wra-heirloom-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wra-page .wra-heirloom-copy p:not(.eyebrow) {
    margin-top: 0;
  }

  .wra-page .wra-symbol-studies {
    height: clamp(190px, 29vw, 265px);
    margin-top: clamp(36px, 5vw, 48px);
  }

  .wra-page .wra-product-gallery-main {
    padding: clamp(64px, 8vw, 84px) clamp(24px, 5vw, 48px) clamp(56px, 7vw, 72px);
  }

  .wra-page .wra-product-gallery-heading h2 {
    font-size: clamp(2.35rem, 5.4vw, 3.75rem);
  }

  /* Hill switches to a taller, controlled composition before the desktop hero becomes cramped. */
  .hill-page .hill-heritage-hero {
    height: clamp(660px, 88svh, 800px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .hill-page .hill-hero-art,
  .hill-page .hill-hero-school {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 52% top;
  }

  .hill-page .hill-hero-school {
    transform: translateY(clamp(54px, 6vw, 76px));
  }

  .hill-page .hill-hero-sketch {
    top: 5%;
    right: -3%;
    width: min(66vw, 670px);
  }

  .hill-page .hill-hero-cuff {
    top: 10%;
    right: -31%;
    width: min(106vw, 940px);
  }

  .hill-page .hill-hero-velvet {
    right: -10%;
    width: min(68vw, 590px);
  }

  .hill-page .hill-heritage-copy {
    top: auto;
    bottom: clamp(42px, 6vh, 64px);
    width: min(70vw, 620px);
  }

  .hill-page .hill-heirloom-copy h2 {
    width: auto;
  }

  .hill-page .hill-product-gallery .wra-product-gallery-heading h2 {
    font-size: clamp(2.35rem, 5.4vw, 3.75rem);
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .wra-page .wra-heritage-hero {
    height: max(660px, 100svh);
  }

  .wra-page .wra-hero-oak {
    /* Keep the tree proportional while allowing it to reach the hero's base. */
    top: 0;
    left: -3%;
    width: auto;
    height: 100%;
    max-width: none;
  }

  .wra-page .wra-hero-pendant {
    z-index: 0;
    top: 8%;
    right: -2%;
    width: 55vw;
    height: auto;
  }

  .wra-page .wra-heritage-copy {
    bottom: clamp(32px, 7vh, 64px);
  }

  .wra-page .wra-heritage-copy h1 {
    max-width: min(82vw, 380px);
    line-height: .96;
    white-space: normal;
  }

  .wra-page .wra-heritage-intro {
    max-width: 35rem;
    font-size: clamp(.94rem, 4vw, 1.08rem);
    line-height: 1.45;
  }

  .wra-page .wra-hero-intro-break {
    display: none;
  }

  .wra-page .wra-heirloom-section {
    padding: 70px 20px;
  }

  .wra-page .wra-heirloom-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    line-height: 1.04;
  }

  .wra-page .wra-heirloom-copy {
    gap: 34px;
  }

  .wra-page .wra-heirloom-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.72;
  }

  .wra-page .wra-symbol-studies {
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 42px;
  }

  .wra-page .wra-symbol-study {
    grid-template-rows: minmax(128px, 35vw) auto;
  }

  .wra-page .wra-symbol-study img,
  .wra-page .wra-symbol-study:nth-child(2) img {
    width: 88%;
    height: 74%;
  }

  .wra-page .wra-symbol-study figcaption {
    min-height: 2.6em;
    margin-top: 12px;
    font-size: .52rem;
    letter-spacing: .1em;
    line-height: 1.3;
    text-align: center;
  }

  .wra-page .wra-product-gallery-main {
    padding: 64px 20px 52px;
  }

  .wra-page .wra-product-gallery-heading {
    margin-bottom: 28px;
  }

  .wra-page .wra-product-gallery-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    white-space: normal;
  }

  .wra-page .wra-gallery-slides {
    height: min(126vw, 520px);
    min-height: 0;
  }

  .wra-page .wra-gallery-slide > div {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .wra-page .wra-gallery-controls {
    margin-top: 16px;
    font-size: .59rem;
  }
}

/* Taft hero: intentionally occupy the artwork's clear upper-left field.
   Kept after the shared WRA responsive rules so that this page owns its placement. */
.taft-page .taft-hero-copy.wra-heritage-copy {
  top: 50%;
  bottom: auto;
  left: clamp(28px, 4vw, 64px);
  right: auto;
  width: min(42vw, 680px);
  transform: translateY(-50%);
}

.taft-page .taft-hero-copy .wra-heritage-intro {
  max-width: 680px;
  white-space: normal;
}

.taft-page .hill-heirloom-section {
  background: #f5e8d8;
  padding-top: clamp(92px, 9vw, 132px);
  padding-bottom: clamp(92px, 9vw, 132px);
}

.taft-page .collection-inspiration {
  background: #641429;
  padding-top: clamp(72px, 7.5vw, 112px);
  padding-bottom: clamp(72px, 7.5vw, 112px);
}

.taft-page .hill-product-gallery {
  background: #641429;
}

.taft-page .collection-inspiration-copy,
.taft-page .collection-inspiration-copy h2,
.taft-page .collection-inspiration-copy p:not(.eyebrow) {
  color: var(--ivory);
}

.taft-page .collection-inspiration-copy .eyebrow {
  color: #d7ad63;
}

.taft-page .hill-heirloom-copy h2 {
  width: auto;
  max-width: none;
  font-size: clamp(2.4rem, 4.15vw, 4.5rem);
}

.taft-page .hill-heirloom-copy {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 4vw, 64px);
}

.taft-page .hill-heirloom-copy p:not(.eyebrow) {
  margin-top: clamp(26px, 3vw, 42px);
}

.taft-page .hill-product-gallery .wra-gallery-slide:first-child > img {
  object-position: center 42%;
}

/* Hill's sixth gallery card has a special oversized crop. Taft's sixth card is
   Soccer, so restore the normal full-card treatment here. */
.taft-page .hill-product-gallery .wra-gallery-slide:nth-child(6) > img {
  height: 100%;
  object-position: center;
  transform: none;
}

.taft-page .hill-symbol-study img {
  object-fit: contain;
}

.taft-page .hill-inspiration-card-meigs img {
  object-position: center;
}

.taft-page .hill-inspiration-card-celebration img {
  object-position: center;
}

@media (max-width: 760px) {
  .taft-page .taft-hero-copy.wra-heritage-copy {
    top: clamp(118px, 15vh, 146px);
    bottom: auto;
    left: 24px;
    right: 24px;
    width: auto;
    transform: none;
  }

  .taft-page .taft-hero-copy .wra-heritage-intro {
    max-width: 34rem;
    font-size: clamp(.94rem, 4vw, 1.06rem);
    line-height: 1.46;
  }

  .taft-page .collection-inspiration {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .taft-page .hill-heirloom-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* Preserve the phone composition after the tablet rules above. */
@media (max-width: 700px) {
.hill-page .hill-heritage-hero {
    height: max(720px, 100svh);
    min-height: 0;
    aspect-ratio: auto;
  }

  .hill-page .hill-hero-art,
  .hill-page .hill-hero-school {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 52% top;
  }

  .hill-page .hill-hero-school {
    transform: translateY(clamp(48px, 13vw, 68px));
  }

  .hill-page .hill-hero-sketch {
    top: 3%;
    right: -34%;
    width: 128vw;
  }

  .hill-page .hill-hero-cuff {
    top: auto;
    right: -25%;
    bottom: -2px;
    width: 142vw;
  }

  .hill-page .hill-hero-velvet {
    right: -5%;
    bottom: -2px;
    width: 108vw;
  }

  .hill-page .hill-heritage-copy {
    top: auto;
    right: 20px;
    bottom: clamp(42px, 7vh, 64px);
    left: 20px;
    width: auto;
  }

  .hill-page .hill-heritage-intro {
    max-width: 30rem;
    font-size: clamp(.96rem, 4.1vw, 1.08rem);
    line-height: 1.48;
  }

  .hill-page .hill-heirloom-copy h2 {
    width: auto;
  }

  .hill-page .collection-inspiration {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  .hill-page .collection-inspiration-copy {
    min-width: 0;
  }

  .hill-page .collection-inspiration-copy h2,
  .hill-page .collection-inspiration-copy p:not(.eyebrow) {
    max-width: none;
  }
}

/* Taft — contained source studies, positioned like the completed Porter’s
   section: a generous field around the artwork and a calm buffer below. */
.taft-page .hill-symbol-studies {
  grid-template-columns: 1fr .92fr 1.08fr;
  gap: clamp(22px, 5vw, 88px);
  height: clamp(275px, 27vw, 410px);
  margin-top: clamp(18px, 1.7vw, 28px);
}

.taft-page .hill-symbol-study img,
.taft-page .hill-symbol-study:nth-child(2) img,
.taft-page .hill-symbol-study:nth-child(3) img {
  width: 60%;
  height: 66%;
  object-fit: contain;
  object-position: center bottom;
}

.taft-page .hill-symbol-study:nth-child(1) img {
  transform: none;
}

.taft-page .hill-symbol-study:nth-child(2) img {
  transform: none;
}

.taft-page .hill-symbol-study:nth-child(3) img {
  transform: none;
}

/* Westminster — three isolated source studies, not product photography. */
.westminster-page .hill-symbol-studies {
  grid-template-columns: .94fr .9fr 1.16fr;
  gap: clamp(24px, 5vw, 88px);
  height: clamp(275px, 29vw, 455px);
}

.westminster-page .hill-symbol-study img,
.westminster-page .hill-symbol-study:nth-child(2) img,
.westminster-page .hill-symbol-study:nth-child(3) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.westminster-page .hill-symbol-study:nth-child(1) img {
  transform: scale(.94);
}

.westminster-page .hill-symbol-study:nth-child(2) img {
  transform: scale(.98);
}

.westminster-page .hill-symbol-study:nth-child(3) img {
  transform: scale(.84);
}

/* Westminster — a black / parchment / black sequence, tied together by the
   fine gold embroidery line introduced in the hero artwork. */
.westminster-page .collection-inspiration,
.westminster-page .hill-product-gallery {
  background: #11100f;
}

.westminster-page .hill-heirloom-section {
  background: #f3eee5;
}

.westminster-page .collection-inspiration,
.westminster-page .hill-product-gallery {
  position: relative;
}

.westminster-page .collection-inspiration::after,
.westminster-page .collection-inspiration::before,
.westminster-page .hill-product-gallery::before {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      #0b0a09 0 1px,
      #c49b43 1px 3px,
      #f0d38b 3px 4px,
      #8c6827 4px 5px,
      #0b0a09 5px 7px);
}

.westminster-page .collection-inspiration::before {
  top: 0;
}

.westminster-page .collection-inspiration::after {
  bottom: 0;
}

.westminster-page .hill-product-gallery::before {
  top: 0;
}

@media (max-width: 760px) {
  .taft-page .hill-heirloom-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .taft-page .hill-symbol-studies {
    height: auto;
    gap: 10px;
    margin-top: 20px;
  }

  .taft-page .hill-symbol-study {
    grid-template-rows: minmax(145px, 42vw) auto;
  }

  .westminster-page .hill-symbol-studies {
    height: auto;
    gap: 10px;
  }

  .westminster-page .hill-symbol-study {
    grid-template-rows: minmax(145px, 42vw) auto;
  }
}

/* The cuff and velvet share one fixed baseline at every breakpoint. */
.hill-page .hill-hero-cuff,
.hill-page .hill-hero-velvet {
  bottom: -2px;
}

.hill-page .hill-hero-cuff {
  top: auto;
}

/* Hill hero: preserve one 16:10 composition at every width.  A phone sees a
   smaller complete scene, never a re-cropped artwork panel plus separate copy. */
@media (max-width: 900px) {
  .hill-page .hill-heritage-hero {
    height: auto;
    min-height: 0;
    aspect-ratio: 1584 / 993;
  }

  .hill-page .hill-hero-art,
  .hill-page .hill-hero-school {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hill-page .hill-hero-school {
    transform: none;
  }

  .hill-page .hill-heritage-copy {
    top: 62%;
    right: auto;
    bottom: auto;
    left: clamp(18px, 6.1vw, 68px);
    width: min(48vw, 620px);
  }
}

@media (max-width: 900px) {
  /* A narrow screen uses a new crop of the same approved desktop still life—not a
     miniaturised banner or a separate image panel.  The paper, crest and
     real cufflinks remain one continuous surface while the building sketch
     is placed independently, as it is on desktop. */
  .hill-page .hill-heritage-hero {
    height: clamp(680px, 100svh, 820px);
    aspect-ratio: auto;
    min-height: 0;
  }

  .hill-page .hill-hero-art {
    top: -25%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 125%;
    object-fit: cover;
    object-position: 82% center;
  }

  .hill-page .hill-hero-school {
    inset: auto;
    top: clamp(72px, 10vw, 98px);
    left: -5%;
    width: min(154%, 1120px);
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: left top;
    transform: none;
  }

  .hill-page .hill-heritage-copy {
    top: auto;
    right: clamp(36px, 7vw, 64px);
    bottom: clamp(46px, 8svh, 82px);
    left: clamp(36px, 7vw, 64px);
    width: auto;
  }

  .hill-page .hill-heritage-copy h1 {
    font-size: clamp(2rem, 6.6vw, 3.35rem);
    line-height: .96;
  }

  .hill-page .hill-heritage-kicker {
    margin-top: 15px;
    font-size: clamp(.66rem, 2.1vw, .82rem);
    letter-spacing: .12em;
  }

  .hill-page .hill-heritage-intro {
    max-width: 31rem;
    margin-top: 22px;
    font-size: clamp(1rem, 2.8vw, 1.1rem);
    line-height: 1.46;
  }
}

/* Mobile homepage hero: an editorial cover rather than a compressed desktop scene. */
@media (max-width: 640px) {
  .home-page .showroom-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: clamp(116px, 29vw, 132px) 20px 42px;
    overflow: hidden;
  }

  .home-page .showroom-hero-copy {
    position: relative;
    inset: auto;
    z-index: 3;
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .home-page .showroom-hero-copy .eyebrow {
    max-width: 31ch;
    margin: 0 0 24px;
    font-size: clamp(.68rem, 3vw, .76rem);
    line-height: 1.5;
    letter-spacing: .15em;
  }

  .home-page .showroom-hero-copy h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(2.75rem, 13.7vw, 3.55rem);
    line-height: .96;
    letter-spacing: -.04em;
  }

  .home-page .showroom-hero-copy h1 span {
    display: block;
    white-space: nowrap;
  }

  .home-page .showroom-hero-copy .text-link {
    margin-top: 30px;
    font-size: clamp(.67rem, 2.9vw, .76rem);
    letter-spacing: .14em;
  }

  .home-page .hero-showcase {
    position: relative;
    inset: auto;
    z-index: 2;
    grid-row: 2;
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    height: auto;
    aspect-ratio: 6 / 5;
    margin: 42px 0 0;
    overflow: hidden;
  }

  .home-page .hero-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
  }

  .home-page .hero-sketches {
    display: none;
  }

  .home-page .school-logo-name {
    white-space: nowrap;
  }

  .home-page .school-archive-copy h3 {
    max-width: none;
    font-size: clamp(.9rem, 4.6vw, 1.25rem);
    line-height: 1.08;
    letter-spacing: -.015em;
    white-space: normal;
  }

  .home-page .use-case-media {
    aspect-ratio: 5 / 7;
  }

  .home-page .use-case-image {
    object-fit: cover;
    object-position: center center;
  }
}

/* Collection-page simplification pass — quieter brief, image-led galleries,
   and proof sections without secondary labels. */
.project-brief-inner {
  grid-template-columns: minmax(118px, .32fr) minmax(0, 1.68fr);
  gap: clamp(48px, 7vw, 108px);
}

.project-brief-label {
  position: relative;
  padding-top: 16px;
  border-top: 1px solid rgba(42, 36, 29, .3);
}

.project-brief-label::after {
  content: "";
  display: block;
  width: 42px;
  margin-top: 22px;
  border-top: 1px solid rgba(42, 36, 29, .22);
}

.project-brief-copy h2 {
  max-width: 820px;
  font-size: clamp(1.95rem, 3.05vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.project-brief-copy > p {
  margin-top: clamp(32px, 3.2vw, 46px);
}

.project-brief-facts {
  margin-top: clamp(42px, 4.5vw, 62px);
}

.collection-inspiration-copy h2 + p,
.hewitt-inspiration-copy h2 + p {
  margin-top: clamp(32px, 3.2vw, 48px);
}

.wra-page .wra-product-gallery-heading,
.hill-page .hill-product-gallery .wra-product-gallery-heading {
  margin-bottom: clamp(20px, 2.2vw, 34px);
}

.wra-page .wra-product-gallery-heading h2,
.hill-page .hill-product-gallery .wra-product-gallery-heading h2,
.hewitt-ring-feature-heading h2,
.hewitt-ring-feature-heading > p:not(.eyebrow) {
  display: none;
}

.hewitt-ring-feature-heading {
  display: block;
  margin-bottom: clamp(24px, 3.4vw, 46px);
}

.wra-page .wra-gallery-slide > div p,
.hill-page .hill-product-gallery .wra-gallery-slide > div p {
  display: none;
}

.wra-page .wra-gallery-slide h3,
.hill-page .hill-product-gallery .wra-gallery-slide h3 {
  margin-bottom: 0;
}

.wra-gallery-controls [data-wra-gallery-counter] {
  display: none;
}

.wra-page .wra-gallery-controls,
.hill-page .hill-product-gallery .wra-gallery-controls {
  gap: 32px;
}

@media (max-width: 760px) {
  .project-brief-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .project-brief-label {
    display: block;
    padding-top: 14px;
  }

  .project-brief-label::after {
    margin-top: 18px;
  }

  .project-brief-copy h2 {
    max-width: 15ch;
    font-size: clamp(1.85rem, 8.6vw, 2.75rem);
    line-height: 1.07;
  }

  .project-brief-copy > p {
    margin-top: 28px;
  }

  .collection-inspiration-copy h2 + p,
  .hewitt-inspiration-copy h2 + p {
    margin-top: 30px;
  }

  .wra-page .wra-product-gallery-heading,
  .hill-page .hill-product-gallery .wra-product-gallery-heading,
  .hewitt-ring-feature-heading {
    margin-bottom: 22px;
  }

  .wra-page .wra-gallery-controls,
  .hill-page .hill-product-gallery .wra-gallery-controls {
    gap: 16px;
  }
}

/* Brief refinement — aligned editorial label and school-specific accents. */
.project-brief {
  --brief-accent: #9a7844;
}

.project-brief-label {
  align-self: start;
  padding-top: 8px;
  border-top: 0;
}

.project-brief-label::after {
  display: none;
}

.project-brief .project-brief-label .eyebrow,
.project-brief-facts dt {
  color: var(--brief-accent);
}

.wra-page .project-brief { --brief-accent: #9b7540; }
.hill-page .project-brief { --brief-accent: #70839a; }
.mps-page .project-brief { --brief-accent: #687b62; }
.westminster-page .project-brief { --brief-accent: #9a7a3f; }
.taft-page .project-brief { --brief-accent: #986456; }
.westover-page .project-brief { --brief-accent: #876b80; }
.hewitt-page .project-brief { --brief-accent: #cfb274; }

@media (max-width: 760px) {
  .project-brief-label {
    padding-top: 0;
  }
}

/* Correspondence folio — a tactile, editorial close for collection stories. */
.project-proof.correspondence-folio {
  --proof-accent: #9a7844;
  padding: clamp(84px, 10vw, 150px) clamp(22px, 6vw, 88px) clamp(100px, 12vw, 180px);
  overflow: hidden;
  border-top: 0;
  background: #e7dfd2;
}

.correspondence-folio-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.correspondence-folio-heading {
  margin: 0 0 clamp(34px, 4vw, 58px);
  color: var(--proof-accent);
}

.correspondence-folio-stage {
  position: relative;
  min-height: clamp(570px, 57vw, 790px);
}

.correspondence-folio-image {
  width: min(68%, 850px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #cfc4b4;
  box-shadow: 0 24px 60px rgba(42, 36, 29, .16);
}

.correspondence-folio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.correspondence-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: min(54%, 680px);
  padding: clamp(42px, 5vw, 74px) clamp(38px, 5.5vw, 78px) clamp(40px, 4.8vw, 68px);
  color: #2a241d;
  background-color: #f5eddd;
  background-image: linear-gradient(rgba(250, 245, 235, .82), rgba(250, 245, 235, .82)), url("assets/optimized/loom-linen-texture.webp");
  background-size: auto, 620px auto;
  box-shadow: 0 32px 80px rgba(42, 36, 29, .24);
  transform: translateY(-50%) rotate(-.7deg);
}

.correspondence-note::after {
  content: "";
  position: absolute;
  inset: 13px;
  pointer-events: none;
  border: 1px solid rgba(126, 96, 54, .16);
}

.correspondence-note-label {
  position: relative;
  z-index: 1;
  margin: 0 0 clamp(30px, 3.4vw, 48px);
  color: var(--proof-accent);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.correspondence-note blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.correspondence-note blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.45vw, 4.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.correspondence-note-paraphrase blockquote p,
.correspondence-folio-studio-note .correspondence-note blockquote p {
  font-style: normal;
  font-size: clamp(1.82rem, 3vw, 3.55rem);
  line-height: 1.1;
}

.correspondence-note blockquote footer {
  margin-top: clamp(28px, 3.2vw, 44px);
  color: rgba(42, 36, 29, .68);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .115em;
  text-transform: uppercase;
}

.correspondence-note blockquote footer span {
  display: block;
}

.correspondence-note blockquote footer span + span {
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: .085em;
}

.correspondence-note .project-proof-context {
  position: relative;
  z-index: 1;
  max-width: 50ch;
  margin: clamp(28px, 3.5vw, 46px) 0 0;
  padding-top: 20px;
  color: rgba(42, 36, 29, .67);
  font-size: clamp(.88rem, 1vw, 1rem);
  line-height: 1.62;
  border-top: 1px solid rgba(126, 96, 54, .22);
}

.wra-page .correspondence-folio { --proof-accent: #9b7540; }
.hill-page .correspondence-folio { --proof-accent: #70839a; }
.mps-page .correspondence-folio { --proof-accent: #687b62; }
.westminster-page .correspondence-folio { --proof-accent: #9a7a3f; }
.taft-page .correspondence-folio { --proof-accent: #986456; }
.westover-page .correspondence-folio { --proof-accent: #876b80; }
.hewitt-page .correspondence-folio { --proof-accent: #6c829a; }

@media (max-width: 760px) {
  .project-proof.correspondence-folio {
    padding: 64px 22px 92px;
  }

  .correspondence-folio-heading {
    margin-bottom: 28px;
  }

  .correspondence-folio-stage {
    min-height: 0;
  }

  .correspondence-folio-image {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .correspondence-note {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 18px);
    margin: -44px 0 0 auto;
    padding: 34px 28px 32px;
    transform: rotate(-.45deg);
  }

  .correspondence-note::after {
    inset: 9px;
  }

  .correspondence-note-label {
    margin-bottom: 26px;
    font-size: .61rem;
  }

  .correspondence-note blockquote p,
  .correspondence-note-paraphrase blockquote p,
  .correspondence-folio-studio-note .correspondence-note blockquote p {
    font-size: clamp(1.72rem, 8.5vw, 2.65rem);
    line-height: 1.08;
  }

  .correspondence-note blockquote footer {
    margin-top: 26px;
    font-size: .62rem;
  }

  .correspondence-note .project-proof-context {
    margin-top: 28px;
    padding-top: 18px;
    font-size: .9rem;
  }
}

/* Testimonial-first folio: the product is a quiet object in the margin rather
   than a second gallery image. */
.correspondence-folio-stage {
  min-height: clamp(540px, 49vw, 690px);
}

.correspondence-product {
  position: absolute;
  z-index: 2;
  left: clamp(-22px, 1.5vw, 24px);
  bottom: clamp(6px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(29vw, 370px);
  height: min(35vw, 470px);
  margin: 0;
  pointer-events: none;
}

.correspondence-product img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(42, 36, 29, .18));
}

.correspondence-note {
  top: 48%;
  width: min(73%, 880px);
  padding-right: clamp(42px, 6vw, 88px);
  padding-left: clamp(42px, 6vw, 88px);
}

.wra-page .correspondence-product img {
  transform: rotate(8deg) scale(.88);
}

.mps-page .correspondence-product img {
  transform: rotate(-7deg) scale(.9);
}

.taft-page .correspondence-product img {
  transform: rotate(3deg) scale(1.12);
}

.taft-page .correspondence-product {
  left: clamp(-64px, -2.8vw, -28px);
  bottom: clamp(4px, 1vw, 20px);
  width: min(42vw, 550px);
  height: min(43vw, 560px);
}

.westover-page .correspondence-product img {
  transform: rotate(-7deg) scale(1.02);
}

.westover-page .correspondence-product {
  left: clamp(-18px, 1vw, 14px);
  bottom: clamp(2px, 1vw, 16px);
  width: min(31vw, 400px);
  height: min(43vw, 560px);
}

.westover-page .project-proof.correspondence-folio {
  padding: clamp(72px, 7vw, 104px) clamp(22px, 6vw, 88px);
}

.westover-page .correspondence-folio-stage {
  min-height: clamp(500px, 43vw, 600px);
}

@media (max-width: 760px) {
  .correspondence-folio-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .correspondence-note {
    order: 1;
    width: 100%;
    margin: 0;
  }

  .correspondence-product {
    position: relative;
    left: auto;
    bottom: auto;
    order: 2;
    width: min(48vw, 190px);
    height: min(55vw, 220px);
    margin: -28px 2px -18px auto;
  }

  .correspondence-product img {
    filter: drop-shadow(0 14px 17px rgba(42, 36, 29, .18));
  }

  .westover-page .project-proof.correspondence-folio {
    padding: 64px 22px;
  }

  .westover-page .correspondence-folio-stage {
    min-height: 0;
  }
}

/* WRA refinement — the hero and brief read as one continuous parchment field. */
body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .project-brief {
  background: var(--ivory);
  border-top: 0;
}

/* The brief is a quieter editorial deck, not a second hero headline. */
body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .project-brief-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.65vw, 3.15rem);
  line-height: 1.14;
  letter-spacing: -.018em;
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-product {
  left: clamp(-52px, -2.5vw, -28px);
  width: min(39vw, 500px);
  height: min(46vw, 590px);
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-product img {
  transform: rotate(6deg) scale(1.3);
  filter: brightness(.92) contrast(1.22) saturate(1.12) drop-shadow(0 1px 1px rgba(85, 58, 22, .42)) drop-shadow(0 20px 22px rgba(85, 58, 22, .2));
}

/* A dark, tactile correspondence card gives the response a clear focal point
   while staying within WRA's warm green-and-gold palette. */
body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note {
  width: min(68%, 820px);
  color: var(--ivory);
  background-color: var(--loom-green);
  background-image: linear-gradient(rgba(38, 50, 37, .91), rgba(38, 50, 37, .91)), url("assets/optimized/loom-linen-texture.webp");
  background-size: auto, 620px auto;
  border: 1px solid rgba(213, 184, 117, .72);
  box-shadow: 0 34px 82px rgba(31, 37, 31, .28), 0 0 0 6px rgba(213, 184, 117, .1);
  transform: translateY(-50%) rotate(.12deg);
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note::before {
  position: absolute;
  z-index: 0;
  inset: 11px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(213, 184, 117, .3);
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note::after {
  display: none;
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #d5b875;
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note-label::after {
  width: min(118px, 22%);
  height: 1px;
  content: "";
  background: rgba(213, 184, 117, .55);
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note blockquote p {
  color: var(--ivory);
}

body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note blockquote footer {
  color: rgba(255, 250, 240, .72);
}

@media (max-width: 760px) {
  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .project-proof.correspondence-folio {
    padding: 64px 22px 72px;
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-folio-heading {
    margin-bottom: 0;
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-product {
    left: auto;
    order: 1;
    width: min(64vw, 238px);
    height: min(72vw, 278px);
    margin: 0 auto 30px;
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-product img {
    transform: rotate(5deg) scale(1.12);
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .project-brief-copy h2 {
    max-width: 17ch;
    font-size: clamp(1.8rem, 8vw, 2.55rem);
    line-height: 1.11;
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note {
    order: 2;
    top: auto;
    right: auto;
    width: calc(100% - 8px);
    margin: 0 auto;
    padding: 42px 30px 38px;
    transform: rotate(.08deg);
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note::before {
    inset: 9px;
  }

  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .correspondence-note-label {
    margin-bottom: 28px;
  }
}

/* School correspondence cards — one framed editorial treatment, expressed in
   the established palette of each collection. */
body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-folio {
  --folio-note-bg: #173966;
  --folio-note-wash: rgba(23, 57, 102, .92);
  --folio-note-detail: #9fb5d2;
  --folio-note-detail-rgb: 159, 181, 210;
}

body.mps-page .correspondence-folio {
  --folio-note-bg: #123f2a;
  --folio-note-wash: rgba(18, 63, 42, .92);
  --folio-note-detail: #c9ab6a;
  --folio-note-detail-rgb: 201, 171, 106;
}

body.westminster-page .correspondence-folio {
  --folio-note-bg: #11100f;
  --folio-note-wash: rgba(17, 16, 15, .93);
  --folio-note-detail: #b68f42;
  --folio-note-detail-rgb: 182, 143, 66;
}

body.taft-page .correspondence-folio {
  --folio-note-bg: #641429;
  --folio-note-wash: rgba(100, 20, 41, .92);
  --folio-note-detail: #d7ad63;
  --folio-note-detail-rgb: 215, 173, 99;
}

body.westover-page .correspondence-folio {
  --folio-note-bg: #423244;
  --folio-note-wash: rgba(66, 50, 68, .92);
  --folio-note-detail: #d7bed2;
  --folio-note-detail-rgb: 215, 190, 210;
}

body.hewitt-page .correspondence-folio {
  --folio-note-bg: #132d51;
  --folio-note-wash: rgba(19, 45, 81, .92);
  --folio-note-detail: #a9c3dc;
  --folio-note-detail-rgb: 169, 195, 220;
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note,
body.mps-page .correspondence-note,
body.westminster-page .correspondence-note,
body.taft-page .correspondence-note,
body.westover-page .correspondence-note,
body.hewitt-page .correspondence-note {
  color: var(--ivory);
  background-color: var(--folio-note-bg);
  background-image: linear-gradient(var(--folio-note-wash), var(--folio-note-wash)), url("assets/optimized/loom-linen-texture.webp");
  background-size: auto, 620px auto;
  border: 1px solid rgba(var(--folio-note-detail-rgb), .72);
  box-shadow: 0 34px 82px rgba(31, 29, 31, .27), 0 0 0 6px rgba(var(--folio-note-detail-rgb), .1);
  transform: translateY(-50%) rotate(.12deg);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note::before,
body.mps-page .correspondence-note::before,
body.westminster-page .correspondence-note::before,
body.taft-page .correspondence-note::before,
body.westover-page .correspondence-note::before,
body.hewitt-page .correspondence-note::before {
  position: absolute;
  z-index: 0;
  inset: 11px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(var(--folio-note-detail-rgb), .3);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note::after,
body.mps-page .correspondence-note::after,
body.westminster-page .correspondence-note::after,
body.taft-page .correspondence-note::after,
body.westover-page .correspondence-note::after,
body.hewitt-page .correspondence-note::after {
  display: none;
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note-label,
body.mps-page .correspondence-note-label,
body.westminster-page .correspondence-note-label,
body.taft-page .correspondence-note-label,
body.westover-page .correspondence-note-label,
body.hewitt-page .correspondence-note-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--folio-note-detail);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note-label::after,
body.mps-page .correspondence-note-label::after,
body.westminster-page .correspondence-note-label::after,
body.taft-page .correspondence-note-label::after,
body.westover-page .correspondence-note-label::after,
body.hewitt-page .correspondence-note-label::after {
  width: min(118px, 22%);
  height: 1px;
  content: "";
  background: rgba(var(--folio-note-detail-rgb), .55);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note blockquote p,
body.mps-page .correspondence-note blockquote p,
body.westminster-page .correspondence-note blockquote p,
body.taft-page .correspondence-note blockquote p,
body.westover-page .correspondence-note blockquote p,
body.hewitt-page .correspondence-note blockquote p {
  color: var(--ivory);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note blockquote footer,
body.mps-page .correspondence-note blockquote footer,
body.westminster-page .correspondence-note blockquote footer,
body.taft-page .correspondence-note blockquote footer,
body.westover-page .correspondence-note blockquote footer,
body.hewitt-page .correspondence-note blockquote footer {
  color: rgba(255, 250, 240, .72);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note .project-proof-context,
body.mps-page .correspondence-note .project-proof-context,
body.westminster-page .correspondence-note .project-proof-context,
body.taft-page .correspondence-note .project-proof-context,
body.westover-page .correspondence-note .project-proof-context,
body.hewitt-page .correspondence-note .project-proof-context {
  color: rgba(255, 250, 240, .68);
  border-top-color: rgba(var(--folio-note-detail-rgb), .32);
}

@media (max-width: 760px) {
  .project-proof.correspondence-folio {
    padding-bottom: 72px;
  }

  .correspondence-folio-heading {
    margin-bottom: 0;
  }

  .project-proof.correspondence-folio .correspondence-folio-stage {
    padding-top: 34px;
  }

  .correspondence-product {
    display: none;
  }

  .project-proof.correspondence-folio .correspondence-note-label {
    margin-bottom: 28px;
  }

  body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note,
  body.mps-page .correspondence-note,
  body.westminster-page .correspondence-note,
  body.taft-page .correspondence-note,
  body.westover-page .correspondence-note,
  body.hewitt-page .correspondence-note {
    top: auto;
    right: auto;
    width: calc(100% - 8px);
    margin: 0 auto;
    padding: 42px 30px 38px;
    transform: rotate(.08deg);
  }

  body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-note::before,
  body.mps-page .correspondence-note::before,
  body.westminster-page .correspondence-note::before,
  body.taft-page .correspondence-note::before,
  body.westover-page .correspondence-note::before,
  body.hewitt-page .correspondence-note::before {
    inset: 9px;
  }
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-product {
  left: clamp(-30px, -1vw, -10px);
  bottom: clamp(8px, 2vw, 30px);
  width: min(34vw, 430px);
  height: min(42vw, 540px);
}

body.hill-page:not(.taft-page):not(.westminster-page) .correspondence-product img {
  transform: rotate(-4deg) scale(1.02);
}

@media (min-width: 901px) {
  .hill-page .hill-heritage-copy {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

@media (min-width: 761px) {
  .hill-page .project-proof.correspondence-folio {
    padding-bottom: clamp(62px, 5.5vw, 88px);
  }
}

@media (max-width: 760px) {
  body.hill-page:not(.taft-page):not(.westminster-page) .hill-symbol-studies {
    margin-top: 6px;
  }

  body.hill-page:not(.taft-page):not(.westminster-page) .hill-symbol-study {
    grid-template-rows: minmax(105px, 30vw) auto;
  }

  body.hill-page:not(.taft-page):not(.westminster-page) .hill-symbol-study img {
    height: 80%;
  }

  body.hill-page:not(.taft-page):not(.westminster-page) .hill-symbol-study:nth-child(2) img {
    height: 68%;
  }

  body.hill-page:not(.taft-page):not(.westminster-page) .hill-symbol-study:nth-child(3) img {
    height: 58%;
  }
}

/* School-specific gallery numbering. */
.westminster-page .hill-product-gallery .wra-gallery-slide span {
  color: #dfb76b;
}

.taft-page .hill-product-gallery .wra-gallery-slide span {
  color: #dfb76b;
}

.westminster-page .hill-product-gallery .wra-gallery-controls button:not(:disabled):hover,
.westminster-page .hill-product-gallery .wra-gallery-controls button:focus-visible,
.taft-page .hill-product-gallery .wra-gallery-controls button:not(:disabled):hover,
.taft-page .hill-product-gallery .wra-gallery-controls button:focus-visible {
  color: #dfb76b;
}

@media (max-width: 900px) {
  .hill-page .hill-heritage-copy {
    transform: none;
  }
}

/* Miss Porter's correspondence folio: a tall ceremonial object supporting a
   compact note, with less empty runway before the closing invitation. */
.mps-page .correspondence-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mps-page .correspondence-product {
  left: clamp(-8px, 1vw, 16px);
  bottom: clamp(0px, 1.5vw, 24px);
  width: min(31vw, 390px);
  height: min(41vw, 520px);
}

.mps-page .correspondence-product img {
  transform: rotate(340deg) scale(1.03);
}

.mps-page .collection-inspiration,
.mps-page .project-proof.correspondence-folio {
  padding-top: clamp(62px, 6.1vw, 104px);
}

.mps-page.wra-page .wra-heirloom-section {
  padding-top: clamp(88px, 8.5vw, 128px);
  padding-bottom: clamp(88px, 8.5vw, 128px);
}

@media (min-width: 761px) {
  .mps-page .project-proof.correspondence-folio {
    padding-bottom: clamp(62px, 5.5vw, 88px);
  }

  .mps-page .wra-heirloom-heading {
    transform: translateY(8px);
  }

  .mps-page .wra-heirloom-copy .mps-process-body {
    margin-top: clamp(38px, 3vw, 44px);
  }

  .mps-page .correspondence-folio-stage {
    min-height: clamp(450px, 41vw, 570px);
  }

  .mps-page .correspondence-note {
    width: min(70%, 840px);
    min-height: clamp(340px, 29vw, 420px);
    padding-top: clamp(44px, 4vw, 62px);
    padding-bottom: clamp(42px, 3.8vw, 58px);
  }

  .mps-page .correspondence-note-label {
    margin-bottom: clamp(26px, 2.8vw, 38px);
  }
}

@media (max-width: 760px) {
  .mps-page .collection-inspiration,
  .mps-page .project-proof.correspondence-folio {
    padding-top: 56px;
  }

  .mps-page.wra-page .wra-heirloom-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 900px) {
  .mps-page .mps-hero-artwork {
    object-position: 88% center;
  }
}

/* Westminster's translation section uses one measured inset above and below,
   keeping the parchment field balanced between the two black sections. */
.westminster-page .hill-heirloom-section {
  padding-top: clamp(82px, 7.5vw, 112px);
  padding-bottom: clamp(82px, 7.5vw, 112px);
}

@media (max-width: 760px) {
  .westminster-page .hill-heirloom-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .westminster-page .westminster-art-hero img {
    object-position: center;
  }
}

/* Westminster overrides Hill's sixth-slide crop at the final cascade layer so
   both centered objects remain visible as their cards expand on hover. */
body.westminster-page.hill-page .hill-product-gallery .wra-gallery-slide.westminster-gallery-centered-object > img,
body.westminster-page.hill-page .hill-product-gallery .wra-gallery-slide.westminster-gallery-cutout-opener > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

@media (max-width: 760px) {
  .westover-page .project-proof.correspondence-folio {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Keep the Westover hero title, collection name, and explanatory deck on one
   consistent editorial rhythm after the shared collection-name rules. */
.westover-page .westover-hero-copy .collection-name,
.westover-page .westover-hero-copy .collection-name + p {
  margin: 0;
}

/* Final spacing refinements for the WRA response and Hill process studies. */
@media (min-width: 761px) {
  body.wra-page:not(.mps-page):not(.westminster-page):not(.westover-page) .project-proof.correspondence-folio {
    padding-bottom: clamp(50px, 4.5vw, 72px);
  }

body.hill-page:not(.taft-page):not(.westminster-page) .hill-symbol-studies {
    margin-top: clamp(10px, 1.25vw, 20px);
  }
}

/* Inquiry confirmation: replace the completed form with a clear editorial state. */
.inquiry-form.is-success-state {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
}

.inquiry-form.is-success-state > :not(.form-success-panel):not(.form-status) {
  display: none;
}

.inquiry-form.is-success-state .form-status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-success-panel[hidden] {
  display: none;
}

.form-success-panel {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  align-content: center;
  width: min(100%, 760px);
  min-height: min(62vh, 640px);
  outline: 0;
}

.form-success-panel::before {
  display: none;
}

.form-success-panel .eyebrow {
  margin: 0 0 clamp(22px, 2.3vw, 34px);
  color: var(--gold);
}

.form-success-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.25rem, 5.5vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.035em;
}

.form-success-title-line {
  display: inline;
}

.form-success-panel > p:not(.eyebrow) {
  max-width: 590px;
  margin: clamp(30px, 3vw, 46px) 0 0;
  color: rgba(42, 36, 29, .68);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.58;
}

.form-success-panel .text-link {
  margin-top: clamp(38px, 4vw, 58px);
  color: #173a2c;
}

.form-success-panel .text-link span {
  margin-left: 14px;
  color: var(--gold);
}

@media (max-width: 900px) {
  .inquiry-layout.is-complete {
    grid-template-columns: minmax(0, 1fr);
  }

  .inquiry-layout.is-complete .inquiry-intro {
    display: none;
  }

  .inquiry-layout.is-complete .inquiry-form {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .form-success-panel {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .inquiry-layout.is-complete .inquiry-form {
    padding-right: 24px;
    padding-left: 24px;
  }

  .form-success-panel h2 {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
  }

  .form-success-title-line {
    display: block;
    white-space: nowrap;
  }
}

/* Launch QA: desktop headline locking must not create mobile overflow. */
@media (max-width: 760px) {
  .collections-page .subpage-hero,
  .collections-page .projects-hero-media,
  .collections-page .projects-hero .hero-intro {
    min-width: 0;
    width: 100%;
  }

  .collections-page .subpage-hero-copy h1 span {
    white-space: normal;
  }
}

@media (max-width: 340px) {
  .westover-page .westover-heirloom-section .westover-process-line {
    white-space: normal;
  }
}
