:root {
  --ivory: #fbf7f2;
  --paper: #fffdf9;
  --blush: #f2dfdc;
  --blush-soft: #f8ece8;
  --wine: #641d29;
  --wine-dark: #3e0f18;
  --ink: #211719;
  --muted: #74676a;
  --line: rgba(70, 31, 38, 0.16);
  --white-line: rgba(255, 255, 255, 0.25);
  --header-height: 72px;
  --container: 1240px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(179, 116, 102, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

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

.serif {
  font-family: "Cormorant Garamond", serif;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 0.95;
}

.section-copy {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 56px;
}

.section-heading .section-copy {
  justify-self: end;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  color: white;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header:not(.is-scrolled):not(.menu-active) {
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(31, 12, 17, 0.58), rgba(31, 12, 17, 0.2));
  box-shadow: 0 8px 28px rgba(20, 7, 10, 0.12);
  backdrop-filter: blur(5px);
}

.site-header:not(.is-scrolled):not(.menu-active) .site-brand,
.site-header:not(.is-scrolled):not(.menu-active) .desktop-nav > a:not(.header-cta) {
  text-shadow: 0 1px 12px rgba(18, 5, 8, 0.52);
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(251, 247, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(42, 21, 24, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), calc(100% - 48px));
  height: var(--header-height);
  margin-inline: auto;
}

.site-brand {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a:not(.header-cta) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.header-cta) {
  position: relative;
}

.desktop-nav > a:not(.header-cta):hover::after,
.desktop-nav > a:not(.header-cta):focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-cta {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding-inline: 20px;
  box-shadow: 0 6px 20px rgba(20, 7, 10, 0.16);
}

.site-header.is-scrolled .header-cta,
.site-header.menu-active .header-cta {
  border-color: var(--wine);
  background: var(--wine);
  color: white;
  box-shadow: 0 6px 18px rgba(111, 27, 43, 0.16);
}

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

.button-dark {
  background: var(--ink);
  color: white;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}

.button-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.button-wine {
  background: var(--wine);
  color: white;
}

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

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition:
    top 180ms ease,
    transform 180ms ease;
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 26px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  padding: 14px 24px 24px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu .mobile-menu-cta {
  min-height: 50px;
  justify-content: center;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100svh - 84px));
  align-items: flex-end;
  overflow: hidden;
  background: #b6aaa5;
  color: white;
}

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

.hero-media img {
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 12, 17, 0.9) 0%, rgba(35, 12, 17, 0.55) 43%, rgba(35, 12, 17, 0.08) 76%),
    linear-gradient(0deg, rgba(35, 12, 17, 0.45), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
  padding: 160px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.25rem;
  font-weight: 600;
  line-height: 0.82;
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.08;
}

.hero-subtitle-role::before {
  content: " · ";
}

.hero-territories {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-market {
  position: absolute;
  right: 0;
  bottom: 76px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 148px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

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

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-paper {
  background: var(--paper);
}

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

.selected-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-item {
  min-width: 0;
}

.work-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #d7ceca;
}

.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.work-item:hover .work-media img {
  transform: scale(1.025);
}

.work-index {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.work-copy {
  padding: 24px 4px 0;
}

.work-copy span {
  color: var(--wine);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin: 8px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.work-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.section-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

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

.territory-item {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
}

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

.territory-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30, 14, 17, 0.82), transparent 62%);
}

.territory-item:hover img {
  transform: scale(1.025);
}

.territory-copy {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
}

.territory-copy span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.territory-copy h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 0.95;
}

.dual-role {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: 84px;
}

.dual-role-copy .section-title {
  margin-bottom: 28px;
}

.dual-role-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 0 28px;
  color: var(--muted);
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.role-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
}

.role-list li:nth-child(odd) {
  padding-right: 20px;
}

.role-list li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.dual-role-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 16px;
}

.dual-role-media img {
  width: 100%;
  height: 650px;
  border-radius: 8px;
  object-fit: cover;
}

.dual-role-media img:last-child {
  height: 520px;
}

.market-section {
  padding: 110px 0;
  background: var(--wine-dark);
  color: white;
}

.market-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 96px;
}

.market-layout .section-title {
  max-width: 600px;
}

.market-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  align-self: end;
}

.market-copy article {
  border-top: 1px solid var(--white-line);
  padding-top: 20px;
}

.market-copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-copy h3 {
  margin: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
}

.market-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.ways-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 56px;
}

.ways-list-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 32px;
}

.ways-list-compact .way-item {
  grid-template-columns: 38px 1fr;
  gap: 14px;
}

.way-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.way-item > span {
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.way-item h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1;
}

.way-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.community-link-section {
  padding: 72px 0;
  background: var(--blush);
}

.acting-note {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.acting-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.acting-note a {
  color: var(--wine);
  font-weight: 800;
}

.community-link-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.community-link-layout h2 {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.25rem;
  font-weight: 600;
  line-height: 0.95;
}

.community-link-layout > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.community-link-layout .button {
  white-space: nowrap;
}

.representation {
  padding: 72px 0;
  background: var(--blush);
}

.representation-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.representation h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 0.95;
}

.representation-contact {
  min-width: 280px;
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.representation-contact strong,
.representation-contact span {
  display: block;
}

.representation-contact strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.representation-contact span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.representation-contact a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

.world-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
}

.world-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease;
}

.world-link:hover {
  color: var(--wine);
}

.world-link small,
.world-link strong {
  display: block;
}

.world-link small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-link strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.world-link > span {
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.world-link:hover > span {
  transform: translateX(4px);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.social-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.social-row a:hover {
  background: var(--ink);
  color: white;
}

.final-cta {
  padding: 112px 0;
  background: var(--wine);
  color: white;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 0.9;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .button-row {
  justify-content: center;
}

.site-footer {
  background: #1c1516;
  color: white;
  padding: 76px 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) repeat(3, minmax(140px, 0.45fr));
  gap: 52px;
  padding-bottom: 64px;
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.footer-intro p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-column h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: white;
}

.footer-column a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  background: var(--blush-soft);
}

.error-content {
  width: min(720px, 100%);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 600;
  line-height: 0.8;
}

.error-content h1 {
  margin: 24px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 0.95;
}

.error-content > p:not(.error-code) {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.reveal-ready [data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition:
    transform 600ms ease,
    opacity 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 5.8rem;
  }

  .section-title {
    font-size: 3.7rem;
  }

  .proof-item {
    padding: 28px 20px;
  }

  .dual-role {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 54px;
  }

  .dual-role-media img {
    height: 560px;
  }

  .dual-role-media img:last-child {
    height: 460px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .hero-content {
    width: min(100% - 40px, var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    color: var(--ink);
  }

  .site-header:not(.is-scrolled):not(.menu-active) {
    background: rgba(251, 247, 242, 0.9);
    box-shadow: none;
    backdrop-filter: blur(14px);
  }

  .site-header:not(.is-scrolled):not(.menu-active) .site-brand {
    text-shadow: none;
  }

  .hero {
    min-height: 780px;
    padding-top: var(--header-height);
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(35, 12, 17, 0.82), rgba(35, 12, 17, 0.2) 72%),
      linear-gradient(0deg, rgba(35, 12, 17, 0.65), transparent 62%);
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-market {
    display: none;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading .section-copy {
    justify-self: start;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .selected-work-grid {
    gap: 18px;
  }

  .territory-item {
    min-height: 460px;
  }

  .dual-role {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .dual-role-copy {
    max-width: 680px;
  }

  .dual-role-media img {
    height: 650px;
  }

  .dual-role-media img:last-child {
    height: 520px;
  }

  .market-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .representation-layout {
    grid-template-columns: 1fr;
  }

  .representation-contact {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 28px;
    padding-left: 0;
  }

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

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

@media (max-width: 720px) {
  .container,
  .hero-content {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 57% 25%;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(35, 12, 17, 0.88) 0%, rgba(35, 12, 17, 0.52) 50%, rgba(35, 12, 17, 0.08) 84%),
      linear-gradient(90deg, rgba(35, 12, 17, 0.2), transparent);
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    max-width: 360px;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .hero-territories {
    font-size: 0.62rem;
    line-height: 1.8;
  }

  .section-title {
    font-size: 3.25rem;
  }

  .selected-work-grid,
  .territory-grid {
    grid-template-columns: 1fr;
  }

  .work-media {
    aspect-ratio: 4 / 4.6;
  }

  .territory-item {
    min-height: 520px;
  }

  .dual-role-media img {
    height: 520px;
  }

  .dual-role-media img:last-child {
    height: 430px;
  }

  .market-copy,
  .ways-list,
  .world-links {
    grid-template-columns: 1fr;
  }

  .community-link-layout {
    grid-template-columns: 1fr auto;
    gap: 24px 36px;
  }

  .community-link-layout > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .community-link-layout .button {
    grid-column: 2;
    grid-row: 1;
  }

  .ways-list {
    column-gap: 0;
  }

  .representation h2 {
    font-size: 2.9rem;
  }

  .final-cta h2 {
    font-size: 4rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }

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

@media (max-width: 480px) {
  .button-row {
    flex-direction: column;
  }

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

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    max-width: 310px;
    margin-top: 18px;
    font-size: 1.34rem;
  }

  .hero-subtitle-role {
    display: block;
  }

  .hero-subtitle-role::before {
    content: "";
  }

  .hero-territories {
    margin: 16px 0 24px;
  }

  .proof-item {
    min-height: 108px;
    padding: 18px 14px;
  }

  .proof-item strong {
    margin-bottom: 6px;
    font-size: 1.72rem;
  }

  .proof-item span {
    font-size: 0.57rem;
    letter-spacing: 0.055em;
    line-height: 1.4;
  }

  .section {
    padding: 76px 0;
  }

  .section-title {
    font-size: 2.85rem;
  }

  .section-copy {
    font-size: 0.92rem;
  }

  .work-copy h3 {
    font-size: 1.8rem;
  }

  .territory-item {
    min-height: 450px;
  }

  .territory-copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .territory-copy h3 {
    font-size: 2.3rem;
  }

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

  .role-list li {
    padding: 13px 0;
  }

  .role-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .dual-role-media {
    gap: 10px;
  }

  .dual-role-media img {
    height: 390px;
  }

  .dual-role-media img:last-child {
    height: 320px;
  }

  .market-section {
    padding: 78px 0;
  }

  .market-copy {
    gap: 30px;
  }

  .way-item {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .community-link-section {
    padding: 58px 0;
  }

  .community-link-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .community-link-layout h2 {
    font-size: 2.7rem;
  }

  .community-link-layout > p,
  .community-link-layout .button {
    grid-column: auto;
    grid-row: auto;
  }

  .community-link-layout .button {
    width: 100%;
  }

  .representation {
    padding: 62px 0;
  }

  .representation h2 {
    font-size: 2.55rem;
  }

  .world-link {
    min-height: 92px;
  }

  .final-cta {
    padding: 84px 0;
  }

  .final-cta h2 {
    font-size: 3.35rem;
  }

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

  .footer-intro {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .error-code {
    font-size: 6rem;
  }

  .error-content h1 {
    font-size: 2.8rem;
  }
}

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

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

  .reveal-ready [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
.site-managed-generated {
  border-top: 1px solid var(--line);
}

.site-managed-generated-inner {
  display: grid;
  gap: 1.25rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.site-managed-generated-inner > p:not(.eyebrow) {
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.75;
}

.site-managed-generated-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1rem;
}

.site-managed-generated-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
