/* RHO: burgundy opening, comfortable type and content-led responsive rhythm. */
:root {
  color-scheme: light;
  --wine: #3b0b18;
  --wine-950: var(--wine);
  --wine-900: var(--wine);
  --wine-800: var(--wine);
  --wine-700: var(--wine);
  --wine-600: var(--wine);
  --gold-500: #a77b2f;
  --gold-400: #d5b36a;
  --gold-300: #ecd997;
  --film-controls-surface: #181818;
  --ink: #281e21;
  --ink-soft: #6a5e60;
  --paper: #f6f2e9;
  --paper-deep: #eee8dd;
  --surface: #fffdf9;
  --line: #ddd3c8;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --shell: min(1240px, calc(100% - 4rem));
  --header-height: 5rem;
  --section-space: clamp(2.5rem, 4.5vw, 4rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.65 var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img,
svg {
  display: block;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
a,
button {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 5px;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface);
  color: var(--wine-800);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--wine-800);
  color: var(--surface);
  border-bottom: 1px solid #76505e;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}
.brand {
  display: block;
  flex: none;
}
.brand img {
  width: 4.2rem;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}
.site-nav a {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  font-weight: 550;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--gold-300);
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-header .header-cta {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--wine-800);
}
.site-header .header-cta:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
}
.site-header .icon-button {
  border-color: #a58b84;
  color: var(--surface);
}
.nav-toggle {
  display: none;
}
.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--wine-800);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.icon-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.nav-close {
  display: none;
}
[aria-expanded="true"] .nav-open {
  display: none;
}
[aria-expanded="true"] .nav-close {
  display: block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  background: var(--wine-800);
  border: 1px solid var(--wine-800);
  border-radius: 3px;
  color: var(--surface);
  font: 600 0.85rem/1.4 var(--sans);
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--wine-600);
  border-color: var(--wine-600);
  transform: translateY(-2px);
}
.button-small {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
}
.button-light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--wine-800);
}
.button-light:hover {
  background: #fff;
  border-color: #fff;
}
.button-outline {
  background: transparent;
  border-color: var(--wine-800);
  color: var(--wine-800);
}
.button-outline:hover {
  color: white;
}
.button-ghost-light {
  background: transparent;
  border-color: #a58b84;
  color: var(--surface);
}
.button-ghost-light:hover {
  background: var(--wine-700);
  border-color: #a58b84;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  min-height: 44px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 0.35em;
}
.text-link:hover {
  text-decoration: underline;
}
.text-link span,
.button span {
  font-family: var(--sans);
  font-size: 1.2rem;
}
.eyebrow,
.role-label,
.links-kicker {
  display: block;
  margin: 0 0 1rem;
  font: 650 0.7rem/1.5 var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--wine-700);
}
.hero {
  position: relative;
  background: var(--wine-800);
  color: var(--surface);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas: "intro film" "copy film";
  gap: 1.25rem 3rem;
  align-items: start;
  align-content: center;
  min-height: min(40rem, calc(100svh - var(--header-height)));
  padding-block: clamp(2rem, 5vh, 3.5rem);
}
.hero-intro {
  grid-area: intro;
  min-width: 0;
}
.hero h1 {
  font-size: clamp(2.25rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 22ch;
}
.hero h1 em {
  display: block;
  color: var(--gold-300);
  font-weight: 400;
  font-style: italic;
}
.keep-together {
  white-space: nowrap;
}
.hero-heading-main {
  display: block;
}
.hero-copy {
  grid-area: copy;
  min-width: 0;
}
.hero-copy .button-row {
  gap: 0.6rem 1.2rem;
}
.hero .eyebrow {
  color: var(--gold-400);
}
.hero-copy .button {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--wine-800);
}
.hero-copy .button:hover {
  background: var(--gold-300);
  border-color: var(--gold-300);
}
.hero :focus-visible,
.site-header :focus-visible {
  outline-color: var(--gold-300);
}
.hero-lead {
  margin: 1.4rem 0 0;
  max-width: 45ch;
  color: #e1d1cb;
  font-size: 0.95rem;
}
.hero-facts {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #76505e;
}
.hero-facts div {
  flex: 1;
  min-width: 0;
}
.hero-facts dt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #e1d1cb;
}
.hero-facts dd {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  font-weight: 550;
  line-height: 1.5;
}
.hero-film {
  grid-area: film;
  align-self: center;
  min-width: 0;
  position: relative;
}
.hero-film::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border: 1px solid var(--gold-400);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}
.hero-film-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--wine-950);
}
.hero-film video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
}
.hero-film-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.1rem 0.6rem;
  background: var(--film-controls-surface);
}
.hero-film-controls[hidden] {
  display: none;
}
.js .hero-film-frame {
  padding-bottom: calc(44px + 0.2rem);
}
.js .hero-film-controls {
  position: absolute;
  inset: auto 0 0;
  height: calc(44px + 0.2rem);
}
.hero-film-controls button {
  min-height: 44px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #fff3df;
  font: 550 0.78rem/1.3 var(--sans);
  cursor: pointer;
}
.hero-film-controls button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.hero-film-controls button:disabled {
  cursor: wait;
}
.video-status {
  margin-top: 0.8rem;
  font-size: 0.85rem;
}
.video-status[hidden] {
  display: none;
}
.section {
  padding-block: var(--section-space);
}
.section-heading {
  margin-bottom: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}
.section-heading .eyebrow {
  margin-bottom: 0.75rem;
}
.section-areas {
  background: var(--paper-deep);
}
.area-grid {
  display: grid;
  position: relative;
  isolation: isolate;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.area-card {
  min-width: 0;
  padding: 1.4rem 1.25rem 1.5rem;
  background: var(--surface);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.75rem;
  transition: background-color 180ms ease, color 180ms ease;
}
.area-number {
  font: 500 0.7rem/1.4 var(--sans);
  color: var(--ink-soft);
}
.area-card svg {
  width: 38px;
  height: 38px;
  margin: 0.5rem 0 0.4rem;
  stroke: var(--gold-500);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.area-card h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  line-height: 1.18;
}
.area-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.area-card:focus-visible {
  outline-offset: -5px;
  z-index: 2;
}
.area-card.is-active {
  background: var(--wine-800);
  color: var(--surface);
}
.area-card.is-active p,
.area-card.is-active .area-number {
  color: #f5e9df;
}
.area-card.is-active svg {
  stroke: var(--gold-400);
}
.section-method {
  background: var(--wine-900);
  color: var(--surface);
}
.method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.method-intro h2 {
  max-width: 18ch;
}
.method-intro .eyebrow,
.section-presence .eyebrow,
.section-interviews .eyebrow {
  color: var(--gold-400);
}
.method-intro > p:last-child {
  margin-top: 1.5rem;
  max-width: 43ch;
  color: #e1d1cb;
  font-size: 0.95rem;
}
.method-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  align-content: center;
}
.method-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #63434e;
}
.method-list li:first-child {
  padding-top: 0;
}
.method-list > li > span {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-400);
}
.method-list h3 {
  font-size: 1.6rem;
}
.method-list p {
  color: #e1d1cb;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.section-story {
  background: var(--paper);
}
.story-heading {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}
.timeline article {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-500);
}
.timeline-year {
  font: 400 clamp(2.2rem, 3vw, 3rem) / 1 var(--serif);
  color: var(--wine-700);
  letter-spacing: -0.05em;
}
.timeline h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.4rem;
}
.timeline p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.section-principles {
  background: var(--wine-900);
  color: var(--surface);
}
.section-principles .eyebrow-dark,
.section-principles .role-label {
  color: var(--gold-300);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.principles-grid article {
  padding: 1.5rem;
  border: 1px solid #76505e;
  border-radius: 4px;
  min-width: 0;
}
.principles-grid h3 {
  font-size: 1.65rem;
  max-width: 22ch;
}
.principles-grid p:last-child,
.principles-grid li {
  font-size: 0.9rem;
  color: #e1d1cb;
}
.principles-grid p:last-child {
  margin-top: 1rem;
}
.principles-grid ul {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}
.section-team {
  background: var(--paper);
}
.person-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper-deep);
  box-shadow: none;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.person-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
}
.person-copy {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
}
.person-copy .role-label {
  font-size: 0.65rem;
  margin-bottom: 0.6rem;
}
.person-copy h3 {
  font-size: 1.7rem;
}
.person-copy .oab {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin: 0.7rem 0 1rem;
}
.person-copy .oab + p,
.person-unit {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.person-unit {
  margin-top: 0.7rem;
}
.person-card details {
  padding-top: 1.1rem;
  margin-top: auto;
}
.person-card summary {
  min-height: 44px;
  padding: 0.6rem 0;
  cursor: pointer;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--wine-700);
}
.person-card details p {
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.founder-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  padding: 0;
  margin-bottom: 2.5rem;
}
.founder-profile img {
  max-height: 30rem;
  height: 100%;
  min-height: 25rem;
  object-position: center 22%;
}
.founder-profile .person-copy {
  justify-content: center;
  padding: 2rem;
  max-width: 34rem;
}
.founder-profile h3 {
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  max-width: 16ch;
}
.founder-profile .oab + p {
  font-size: 1rem;
}
.founder-profile details {
  margin-top: 1.5rem;
}
.team-grid {
  display: grid;
  gap: 2rem;
}
.team-priority {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 3rem;
}
.team-alphabetical {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.team-priority img {
  aspect-ratio: 4/4.5;
}
.team-grid .person-copy {
  min-height: 16rem;
}
.team-alphabetical h3 {
  font-size: 1.45rem;
}
.support-team {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.support-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 2rem;
}
.support-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.support-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.support-emanuel img {
  object-position: 50% 20%;
}
.support-joao img {
  object-position: 50% 0%;
}
.support-paula img {
  object-position: 50% 68%;
}
.support-vitoria img {
  object-position: 50% 12%;
}
.support-copy {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.support-copy h4 {
  font-size: 1.35rem;
  line-height: 1.25;
}
.support-copy p {
  font-size: 0.8rem;
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--ink-soft);
}
.section-presence {
  background: var(--wine-900);
  color: var(--surface);
}
.presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 5rem;
}
.presence-intro h2 {
  max-width: 15ch;
}
.presence-list > a,
.presence-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #63434e;
  text-decoration: none;
}
.presence-list > :first-child {
  padding-top: 0;
}
.presence-list > a > span,
.presence-item > span {
  color: var(--gold-400);
  font-size: 0.8rem;
}
.presence-list h3 {
  font-size: 1.55rem;
}
.presence-list p {
  color: #e1d1cb;
  font-size: 0.85rem;
  margin-top: 0.65rem;
}
.presence-list b {
  font-weight: 400;
}
.presence-list a:hover h3 {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}
.gallery-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.gallery-card figcaption {
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gallery-card figcaption > strong {
  display: block;
  font: 400 1.4rem/1.2 var(--serif);
}
.gallery-card figcaption > span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}
.gallery-source {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
}
.gallery-source:hover {
  text-decoration: underline;
}
.section-interviews {
  background: var(--wine-900);
  color: var(--surface);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 2.5rem;
}
.section-interviews .media-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.media-card {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.media-card h3 {
  font-size: 1.65rem;
  max-width: 28ch;
}
.media-card > p:not(.role-label) {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 1rem 0;
}
.media-card .text-link {
  align-self: start;
  margin-top: auto;
}
.section-interviews .media-card {
  border-color: #63434e;
}
.section-interviews .role-label {
  color: var(--gold-400);
}
.section-interviews .media-card > p:not(.role-label) {
  color: #e1d1cb;
}
.section-units {
  background: var(--paper-deep);
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.unit-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface);
  border: 0;
}
.unit-photo {
  margin: 0;
}
.unit-photo img {
  width: 100%;
  height: clamp(12rem, 20vw, 15rem);
  aspect-ratio: auto;
  object-fit: cover;
}
.unit-photo-sm img {
  object-position: center 50%;
}
.unit-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.unit-main .unit-content {
  background: var(--wine-800);
  color: var(--surface);
}
.unit-card h3 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.unit-card address {
  font-style: normal;
  font-size: 0.95rem;
}
.unit-main .role-label {
  color: var(--gold-400);
}
.unit-card dl {
  margin: 1.25rem 0;
}
.unit-card dl > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}
.unit-main dl > div {
  border-color: #76505e;
}
.unit-card dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.unit-card dd {
  margin: 0;
  font-size: 0.85rem;
}
.unit-card dd a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: -0.7rem;
  margin-bottom: -0.7rem;
  text-underline-offset: 0.2em;
}
.unit-card .button-row {
  gap: 0.5rem 1rem;
  padding-top: 0.5rem;
  margin-top: auto;
}
.unit-main .button {
  background: var(--paper);
  color: var(--wine-800);
  border-color: var(--paper);
}
.unit-main .button:hover {
  background: #fff;
}
.unit-card:not(.unit-main) .unit-content {
  padding: 1.5rem;
}
.unit-card:not(.unit-main) h3 {
  font-size: 2rem;
}
.contact-band {
  padding: 4rem 0;
  background: var(--wine-800);
  color: var(--surface);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4rem;
  align-items: center;
}
.contact-band .eyebrow {
  color: var(--gold-400);
}
.contact-band h2 {
  margin-bottom: 1rem;
}
.contact-band p:last-child {
  max-width: 45ch;
  color: #e1d1cb;
  font-size: 0.95rem;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: start;
}
.contact-email {
  min-height: 44px;
  display: flex;
  align-items: center;
  text-underline-offset: 0.3em;
  font-size: 0.9rem;
}
.site-footer {
  background: var(--wine-950);
  color: #e1d1cb;
}
.footer-main {
  display: grid;
  grid-template-columns: 8rem 1fr auto auto;
  align-items: start;
  gap: 2.5rem;
  padding-block: 3rem;
}
.footer-brand img {
  width: 6rem;
  height: auto;
}
.footer-copy p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.footer-copy small {
  font-size: 0.73rem;
  line-height: 1.65;
  display: block;
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  font-size: 0.8rem;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-links a:hover {
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 0.5rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #63434e;
  border-radius: 50%;
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid #63434e;
  padding-block: 0.5rem;
  font-size: 0.75rem;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.floating-contact {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #167c4a;
  color: white;
  box-shadow: 0 6px 20px #16312126;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.floating-contact.is-visible {
  opacity: 1;
  visibility: visible;
}
.floating-contact.is-hidden-for-footer {
  opacity: 0;
  visibility: hidden;
}
.floating-contact svg {
  width: 29px;
  height: 29px;
}
.whatsapp-brand-icon {
  fill: currentColor;
  stroke: none;
}
/* The official hub keeps its established order and destinations. */
.official-links {
  background: var(--paper);
}
.hub-page {
  padding: 2.5rem 0 0;
}
.hub-shell {
  width: min(680px, calc(100% - 2rem));
  margin: auto;
}
.hub-intro {
  text-align: center;
}
.hub-logo {
  display: block;
  width: 150px;
  margin: 0 auto 1rem;
}
.hub-logo img {
  width: 100%;
  height: auto;
}
.hub-intro h1 {
  font-size: 1.7rem;
  color: var(--wine-800);
}
.hub-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.2rem 0 2.5rem;
}
.hub-social-link {
  display: flex;
  border-radius: 50%;
  color: var(--wine-800);
}
.hub-social-link:hover {
  background: var(--paper-deep);
}
.hub-social-link .whatsapp-brand-icon {
  fill: currentColor;
  stroke: none;
  width: 21px;
  height: 21px;
}
.hub-section-heading,
.branch-card-heading {
  margin-bottom: 1.2rem;
}
.hub-section-heading .eyebrow,
.branch-card-heading .eyebrow {
  margin: 0 0 0.2rem;
}
.hub-section-heading h2 {
  font-size: 2.5rem;
}
.hub-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 80px;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
.hub-link:hover {
  border-color: var(--gold-500);
  transform: translateY(-1px);
}
.hub-site-link {
  min-height: 64px;
  margin: 2rem 0 0;
  background: var(--paper-deep);
  border-color: var(--gold-500);
  color: var(--wine-800);
}
#cta-links-whatsapp {
  background: var(--wine-800);
  border-color: var(--wine-800);
  color: var(--surface);
  margin-bottom: 1.2rem;
}
.hub-icon {
  flex: none;
}
.hub-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hub-icon .whatsapp-brand-icon {
  fill: currentColor;
  stroke: none;
}
.hub-link-copy {
  min-width: 0;
  flex: 1;
}
.hub-link-copy strong,
.hub-link-copy > span {
  display: block;
}
.hub-link-copy strong {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}
.hub-link-copy > span {
  font-size: 0.8rem;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}
#cta-links-whatsapp .hub-link-copy > span {
  color: #f5e9df;
}
.hub-arrow {
  font-size: 1.7rem;
  color: var(--gold-500);
  font-weight: 400;
}
.branch-card {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.branch-card h2 {
  font-size: 2rem;
}
.review-card {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--wine-800);
  color: var(--surface);
  border-radius: 4px;
}
.review-card .eyebrow {
  color: var(--gold-400);
}
.review-card h2 {
  font-size: 2.1rem;
  max-width: 24ch;
}
.review-card p {
  margin-top: 1rem;
  color: #f5e9df;
  font-size: 0.9rem;
}
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.review-actions .button {
  flex: 1;
  font-size: 0.78rem;
  min-width: 200px;
}
.review-qrs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #76505e;
}
.review-qr {
  text-align: center;
}
.review-qr img {
  width: 160px;
  height: 160px;
  margin: auto;
  background: white;
  padding: 8px;
  border-radius: 3px;
}
.review-qr figcaption {
  margin-top: 1rem;
}
.review-qr strong,
.review-qr small {
  display: block;
}
.review-qr strong {
  font-size: 0.85rem;
}
.review-qr small {
  font-size: 0.72rem;
  color: #e1d1cb;
  margin-top: 0.3rem;
}
.hub-footer {
  text-align: center;
  color: var(--ink-soft);
  padding: 1.75rem 0 0.25rem;
  font-size: 0.68rem;
  line-height: 1.6;
}
.hub-footer p {
  margin-bottom: 0.7rem;
}
.hub-footer p:last-child {
  margin-bottom: 0;
}
.footer-credit {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-credit:hover {
  text-decoration: underline;
}
.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.error-shell {
  max-width: 40rem;
  text-align: center;
}
.error-shell img {
  width: 140px;
  margin: 0 auto 2rem;
}
.error-shell h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
}
.error-shell p {
  margin: 1.5rem 0;
  color: var(--ink-soft);
}
.error-shell .button-row {
  justify-content: center;
}
.error-shell footer {
  margin-top: 2rem;
  font-size: 0.8rem;
}
@media (max-width: 68rem) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--wine-900);
    border-bottom: 1px solid #76505e;
    padding: 1rem 2rem 2rem;
    max-height: calc(100svh - 5rem);
    overflow: auto;
  }
  .site-nav[data-open="true"] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav a {
    font-size: 1rem;
    min-height: 48px;
  }
  .nav-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .site-header {
    height: 5rem;
  }
  .hero-layout {
    gap: 1.5rem 2rem;
    padding-block: 2.5rem;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  }
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-alphabetical {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline {
    gap: 1rem;
  }
  .timeline p {
    font-size: 0.8rem;
  }
  .method-layout,
  .presence-layout {
    gap: 3rem;
  }
  .footer-main {
    grid-template-columns: 6rem 1fr auto;
  }
  .footer-links {
    display: none;
  }
  .founder-profile {
    gap: 0;
  }
}
@media (max-width: 52rem) {
  :root {
    --shell: calc(100% - 3rem);
  }
  .section {
    padding-block: 3rem;
  }
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "intro" "film" "copy";
    gap: 1.25rem;
    padding: 2rem 0 2.5rem;
    min-height: 0;
  }
  .hero h1 {
    max-width: 24ch;
    font-size: clamp(2rem, 4.5vw, 2.5rem);
    line-height: 1.1;
  }
  .hero h1 em {
    display: inline;
  }
  .hero-heading-main {
    display: inline;
  }
  .hero-film {
    width: 100%;
    max-width: 42rem;
    justify-self: center;
  }
  .hero-film::before {
    inset: -0.5rem -0.5rem 0.5rem 0.5rem;
  }
  .hero-intro .eyebrow {
    margin-bottom: 0.6rem;
  }
  .hero-copy .button-row {
    gap: 0.5rem 1rem;
  }
  .hero-copy .button {
    min-height: 48px;
  }
  .hero-copy .text-link {
    font-size: 0.78rem;
  }
  .hero-lead {
    margin-top: 1rem;
    max-width: 52ch;
  }
  .hero-facts {
    margin-top: 1.4rem;
    gap: 1rem;
  }
  .method-layout,
  .presence-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .method-intro h2 {
    max-width: 25ch;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .timeline article:last-child {
    grid-column: 1/-1;
  }
  .timeline-year {
    font-size: 3rem;
  }
  .timeline p {
    font-size: 0.9rem;
  }
  .timeline h3 {
    margin-top: 1rem;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .principles-grid article {
    display: block;
    max-width: 45rem;
  }
  .principles-grid h3 {
    max-width: 30ch;
  }
  .founder-profile {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0;
  }
  .founder-profile h3 {
    font-size: 2rem;
  }
  .founder-profile img {
    min-height: 33rem;
    max-height: none;
  }
  .founder-profile .person-copy {
    padding: 1.5rem;
  }
  .team-priority {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-priority .person-card:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 1rem);
  }
  .team-grid {
    gap: 2rem;
  }
  .team-grid .person-copy {
    min-height: 16rem;
  }
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
  .media-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .section-interviews .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .units-grid {
    gap: 1.5rem;
  }
  .unit-card:not(.unit-main) {
    display: flex;
  }
  .unit-card:not(.unit-main) .unit-photo img {
    height: clamp(12rem, 20vw, 15rem);
    object-fit: cover;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-actions {
    align-items: start;
  }
  .footer-main {
    gap: 1.5rem;
    grid-template-columns: 5rem 1fr;
  }
  .social-links {
    grid-column: 2;
  }
  .footer-main {
    padding-block: 2rem;
  }
}
@media (max-width: 38rem) {
  :root {
    --shell: calc(100% - 2rem);
    --header-height: 4.6rem;
  }
  .site-header {
    height: 4.6rem;
  }
  .brand img {
    width: 3.8rem;
  }
  .hero-layout {
    padding-top: 1.25rem;
    gap: 1rem;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 6.8vw, 2.35rem);
    letter-spacing: -0.035em;
  }
  .hero-film::before {
    display: none;
  }
  .hero-copy .button {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
  .hero-copy .text-link {
    font-size: 0.72rem;
  }
  .hero-lead {
    font-size: 0.9rem;
  }
  .hero-facts {
    gap: 0.7rem;
  }
  .hero-facts dd {
    font-size: 0.72rem;
  }
  .hero-facts dt {
    font-size: 0.6rem;
  }
  .area-grid {
    grid-template-columns: 1fr;
  }
  .area-card {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 0.75rem 1.25rem;
  }
  .area-number {
    grid-column: 1;
    grid-row: 1;
  }
  .area-card svg {
    grid-column: 1;
    grid-row: 2/4;
    margin: 0;
    width: 32px;
    height: 32px;
  }
  .area-card h3 {
    grid-column: 2;
    grid-row: 1/3;
    font-size: 1.45rem;
    align-self: center;
  }
  .area-card p {
    grid-column: 2;
    font-size: 0.9rem;
  }
  .section-heading {
    margin-bottom: 1.5rem;
  }
  .method-list li {
    gap: 1rem;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline article,
  .timeline article:last-child {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.6rem 1rem;
    grid-column: auto;
    padding: 1.25rem 0;
    border-color: var(--line);
  }
  .timeline-year {
    grid-column: 1;
    grid-row: 1/3;
    font-size: 2rem;
    line-height: 1.2;
  }
  .timeline h3 {
    grid-column: 2;
    margin: 0;
    font-size: 1.25rem;
  }
  .timeline p {
    grid-column: 2;
    font-size: 0.875rem;
  }
  .principles-grid article {
    padding: 1.25rem;
  }
  .principles-grid h3 {
    font-size: 1.4rem;
  }
  .founder-profile {
    display: block;
    margin-bottom: 2.5rem;
    padding-bottom: 0;
  }
  .founder-profile img {
    min-height: 0;
    height: auto;
    max-height: none;
    aspect-ratio: 4/5.5;
  }
  .founder-profile .person-copy {
    padding: 1.5rem;
  }
  .founder-profile h3 {
    font-size: 2rem;
  }
  .team-priority,
  .team-alphabetical {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .team-grid .person-card {
    display: grid;
    grid-template-columns: clamp(6.25rem, 30vw, 7.5rem) minmax(0, 1fr);
    align-items: start;
  }
  .team-priority .person-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .team-grid .person-copy {
    min-height: 0;
  }
  .team-grid .person-card img {
    aspect-ratio: auto;
    height: 15.5rem;
    max-height: none;
    border-radius: 3px 0 0 0;
  }
  .team-grid h3 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }
  .team-grid .person-copy {
    padding: 1rem;
  }
  .team-grid .person-copy .oab + p,
  .team-grid .person-unit,
  .team-grid .person-card details p {
    font-size: 0.875rem;
  }
  .person-card details {
    margin-top: 1rem;
  }
  .support-grid {
    gap: 1.2rem;
  }
  .support-copy h4 {
    font-size: 1.2rem;
  }
  .support-copy p {
    font-size: 0.75rem;
  }
  .support-heading {
    font-size: 1.8rem;
  }
  .gallery-grid {
    gap: 2rem 1rem;
  }
  .gallery-card figcaption > strong {
    font-size: 1.2rem;
  }
  .section-interviews .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .presence-list > a,
  .presence-item {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 0.75rem;
  }
  .presence-list h3 {
    font-size: 1.45rem;
  }
  .units-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 1.5rem;
  }
  .unit-photo img,
  .unit-card:not(.unit-main) .unit-photo img {
    aspect-ratio: 3/2;
    height: auto;
  }
  .unit-content {
    padding: 1.5rem;
  }
  .unit-card h3 {
    font-size: 2rem;
  }
  .unit-card .button-row {
    align-items: start;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand img {
    width: 5rem;
  }
  .social-links {
    grid-column: auto;
  }
  .footer-copy small {
    font-size: 0.7rem;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding-top: 1rem;
  }
  .footer-bottom a {
    min-height: 44px;
  }
  .hub-page {
    padding-top: 1.75rem;
  }
  .hub-logo {
    width: 140px;
  }
  .hub-link {
    padding: 1rem;
    gap: 0.75rem;
  }
  .hub-link-copy strong {
    font-size: 0.83rem;
  }
  .hub-link-copy > span {
    font-size: 0.75rem;
  }
  .hub-icon svg {
    width: 21px;
    height: 21px;
  }
  .review-card {
    padding: 1.5rem;
  }
  .review-card h2 {
    font-size: 1.85rem;
  }
  .review-qrs {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .review-qr img {
    width: 176px;
    height: 176px;
  }
  .hub-footer {
    padding-top: 1.5rem;
  }
  .review-actions .button {
    min-width: 0;
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  html {
    scroll-behavior: auto;
  }
  body,
  .hero,
  .section,
  .section-method,
  .section-presence,
  .section-interviews,
  .section-principles,
  .contact-band,
  .site-footer,
  .unit-main .unit-content {
    background: white !important;
    color: #222 !important;
  }
  .site-header,
  .floating-contact,
  .hero-film-controls,
  .skip-link {
    display: none !important;
  }
  .shell {
    width: 100%;
  }
  .section {
    padding: 1rem 0;
  }
  .hero-layout {
    display: block;
    padding: 0;
    min-height: 0;
  }
  .hero-film {
    max-width: 28rem;
    margin: 1rem 0;
  }
  .js .hero-film-frame {
    padding: 0;
  }
  .hero-copy {
    margin-bottom: 2rem;
  }
  .hero h1 em,
  .hero .eyebrow,
  .hero-lead,
  .hero-facts dt {
    color: #333 !important;
  }
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .area-card {
    background: white !important;
    color: #222 !important;
  }
  .area-card p,
  .area-card .area-number {
    color: #333 !important;
  }
  .section p,
  .role-label,
  .eyebrow,
  .unit-card address,
  .site-footer p {
    color: #333 !important;
  }
  .person-card,
  .unit-card,
  .media-card {
    break-inside: avoid;
  }
  .person-card img {
    max-height: 12rem;
    object-fit: contain;
  }
  .footer-main {
    display: block;
  }
  .review-card {
    background: white;
    color: #222;
  }
  .review-card p,
  .review-card .eyebrow,
  .review-qr small {
    color: #333;
  }
  .review-actions {
    display: none;
  }
  .review-qrs {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-credit {
    color: #222;
  }
}
