/* Velo y Plata global system: ink-night museum editorialism, veil rules, silver details, wax-burgundy actions. */

:root {
  --background: #f5f1e8;
  --foreground: #18202a;
  --card: #fffdf8;
  --card-foreground: #18202a;
  --primary: #7e2436;
  --primary-foreground: #fffdf8;
  --border: #d9d1c4;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--foreground);
  background: var(--background);
  font-size: 15px;
  line-height: 1.6;
}
button,
a {
  font: inherit;
}
button,
a[href] {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  border: 0;
}
.shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.ink {
  background: #101822;
  color: #f5f1e8;
}
.parchment {
  background: #f5f1e8;
}
.section {
  padding: 118px 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
h1 em,
h2 em {
  color: #7e2436;
  font-weight: 500;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #7e2436;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow i {
  display: inline-block;
  width: 21px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.eyebrow i:after {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: -2px;
}
.eyebrow.light {
  color: #d9d1c4;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 19px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.18s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.18s ease,
    color 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: scale(0.97);
}
.button-light {
  background: #f5f1e8;
  color: #101822;
}
.button-light:hover {
  background: #fff;
}
.button-burgundy {
  background: #7e2436;
  color: #fffdf8;
}
.button-burgundy:hover {
  background: #a13a50;
}
.button-ink {
  background: #101822;
  color: #fffdf8;
}
.button-ink:hover {
  background: #243141;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7e2436;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.18s ease;
}
.text-link:hover {
  gap: 11px;
}
.light-link {
  color: #f5f1e8;
}
/* Sale strip flows with the document; only the ink navigation directly under it stays sticky. */
.sale-strip {
  background: #7e2436;
  color: #fffdf8;
}
.sale-strip-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sale-strip p {
  margin: 0;
  display: flex;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.01em;
}
.sale-strip p span {
  color: #f0d9dc;
}
.sale-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #e7a5b2;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #101822;
  color: #f5f1e8;
  box-shadow: 0 10px 28px rgba(16, 24, 34, 0.2);
}
.nav-row {
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fffdf8;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.07em;
}
.brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.brand-dot {
  color: #b9435d;
}
.brand small {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin-left: 1px;
}
.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 32px;
}
.desktop-nav a {
  color: #e5dfd4;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 8px 0;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #b9435d;
  transition: width 0.18s ease;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 3px;
}
.icon-action,
.mobile-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #f5f1e8;
  background: transparent;
  transition: background 0.18s ease;
}
.icon-action:hover,
.mobile-toggle:hover {
  background: #243141;
}
.mobile-toggle,
.mobile-nav {
  display: none;
}
/* Home keeps asymmetric image rooms and archive-like data bands rather than generic card stacking. */
.hero {
  height: min(792px, calc(100vh - 37px));
  min-height: 620px;
  position: relative;
  color: #fffdf8;
  isolation: isolate;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(9, 14, 20, 0.88) 0%,
      rgba(9, 14, 20, 0.62) 38%,
      rgba(9, 14, 20, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(9, 14, 20, 0.34), transparent 52%);
}
.hero-inner {
  padding-top: clamp(122px, 18vh, 220px);
}
.hero h1 {
  font-size: clamp(70px, 8.6vw, 132px);
  margin: 0 0 25px;
}
.hero h1 em {
  color: #f5f1e8;
}
.hero-copy {
  width: min(455px, 100%);
  margin-bottom: 34px;
  color: #ded8ce;
  font-size: 15px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f5f1e8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfc7bd;
}
.hero-seal {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 33px;
  display: flex;
  align-items: end;
  gap: 12px;
  border-left: 1px solid rgba(245, 241, 232, 0.45);
  padding-left: 15px;
}
.hero-seal span {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 0.7;
  color: #b9435d;
}
.hero-seal p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  max-width: 670px;
}
.section-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: #64676c;
}
.section-heading > .text-link {
  margin-bottom: 6px;
  white-space: nowrap;
}
.agenda-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-top: 1px solid #cfc7bb;
}
.image-card {
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.image-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.image-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 17, 24, 0.85), transparent 64%);
}
.image-card-overlay {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 34px;
  right: 34px;
  color: #fffdf8;
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  color: #f5f1e8;
  background: rgba(16, 24, 34, 0.75);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.image-card-overlay h3 {
  margin: 16px 0 10px;
  font-size: clamp(37px, 4vw, 56px);
}
.image-card-overlay p {
  margin: 0 0 18px;
  color: #dfd5c9;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.image-card-overlay a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.agenda-list {
  padding-left: 44px;
}
.agenda-row {
  display: grid;
  grid-template-columns: 37px 1fr 20px;
  gap: 15px;
  align-items: center;
  min-height: 135px;
  border-bottom: 1px solid #d9d1c4;
  transition:
    background 0.18s ease,
    padding 0.18s ease;
}
.agenda-row:hover {
  background: #eee7da;
  padding-left: 12px;
}
.agenda-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  color: #7e2436;
}
.agenda-day,
.agenda-place {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  margin: 0;
  color: #6a6b6d;
  letter-spacing: 0.05em;
}
.agenda-day {
  color: #7e2436;
  font-weight: 800;
  text-transform: uppercase;
}
.agenda-row h3 {
  margin: 6px 0;
  font-size: 29px;
}
.map-promo {
  overflow: hidden;
}
.map-promo-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 630px;
  align-items: center;
  gap: 80px;
}
.map-copy h2 {
  font-size: clamp(52px, 5.7vw, 82px);
  margin: 0 0 28px;
}
.map-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #c5c3bf;
  margin-bottom: 30px;
}
.map-stats {
  display: flex;
  gap: 45px;
  border-top: 1px solid #41505d;
  padding-top: 25px;
  margin-top: 54px;
  color: #b5b7b7;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.map-stats strong {
  display: block;
  color: #f5f1e8;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  line-height: 0.8;
  margin-bottom: 7px;
}
.map-image-wrap {
  height: 550px;
  position: relative;
}
.map-image-wrap > img {
  width: calc(100% + 90px);
  height: 100%;
  object-fit: cover;
}
.map-card {
  position: absolute;
  background: #f5f1e8;
  color: #101822;
  padding: 13px 17px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  font-size: 10px;
  line-height: 1.35;
}
.map-card p {
  margin: 0;
}
.dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: #7e2436;
}
.map-card-one {
  top: 20%;
  left: -43px;
}
.map-card-two {
  right: -34px;
  bottom: 19%;
}
.heritage-section {
  background: #fffdf8;
}
.heritage-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 10vw;
}
.heritage-photo {
  height: 615px;
  position: relative;
}
.heritage-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.heritage-photo span {
  position: absolute;
  left: -1px;
  bottom: 0;
  background: #101822;
  color: #fffdf8;
  padding: 15px 19px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.5;
}
.heritage-copy h2 {
  font-size: clamp(58px, 6vw, 89px);
  margin: 0 0 25px;
}
.heritage-copy > p:not(.eyebrow) {
  max-width: 460px;
  color: #545a60;
}
.heritage-quote {
  border-top: 1px solid #d9d1c4;
  margin-top: 54px;
  padding-top: 21px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: #7e2436;
  max-width: 435px;
}
.heritage-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.15;
  color: #202931;
}
.archive-preview {
  background: #ece5d9;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1px;
  background: #d1c8bc;
}
.story-card {
  background: #f5f1e8;
  padding: 31px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.story-card:hover {
  background: #101822;
  color: #fffdf8;
}
.story-card > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.story-card span {
  color: #7e2436;
  font-weight: 800;
}
.story-card p {
  margin: 0;
  color: #727579;
}
.story-card:hover p {
  color: #c9c5bd;
}
.story-card h3 {
  font-size: 32px;
  margin: 45px 0 15px;
}
.story-card .story-excerpt {
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.story-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.story-card:hover a {
  color: #fffdf8;
}
.newsletter {
  background: #7e2436;
  color: #fffdf8;
  padding: 86px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12vw;
  align-items: end;
}
.newsletter h2 {
  font-size: clamp(48px, 5.5vw, 76px);
  margin: 0;
}
.newsletter-inner > div:last-child > p {
  max-width: 410px;
  color: #efdadd;
  margin-bottom: 25px;
}
/* Shared interior pages. */
.inner-hero {
  height: 500px;
  color: #fffdf8;
  position: relative;
  isolation: isolate;
}
.inner-hero > img,
.inner-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.inner-hero-shade {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(16, 24, 34, 0.9),
    rgba(16, 24, 34, 0.2)
  );
}
.inner-hero-content {
  padding-top: 103px;
}
.inner-hero h1 {
  font-size: clamp(63px, 7vw, 100px);
  margin: 0 0 15px;
}
.inner-hero h1 em {
  color: #f5f1e8;
}
.inner-hero p:not(.eyebrow) {
  max-width: 470px;
  color: #e0dad1;
}
.agenda-controls {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.agenda-controls h2 {
  margin: 0;
  font-size: 55px;
}
.filter-set {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: end;
}
.filter-set button {
  background: transparent;
  border: 1px solid #cfc7bb;
  padding: 8px 12px;
  color: #525b63;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.filter-set button.is-active,
.filter-set button:hover {
  background: #101822;
  border-color: #101822;
  color: #fffdf8;
}
.agenda-table-head {
  display: grid;
  grid-template-columns: 1.05fr 2.1fr 1fr 34px;
  gap: 20px;
  padding: 0 0 12px;
  border-bottom: 1px solid #aaa79f;
  color: #767471;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.agenda-event {
  display: grid;
  grid-template-columns: 1.05fr 2.1fr 1fr 34px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid #d9d1c4;
}
.event-time {
  display: flex;
  align-items: center;
  gap: 15px;
}
.event-time span {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: #7e2436;
}
.event-time p,
.agenda-event > div > p {
  margin: 0;
  font-size: 11px;
  color: #687078;
}
.event-time strong {
  color: #202931;
}
.event-type {
  font-size: 9px !important;
  font-weight: 800 !important;
  color: #7e2436 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.agenda-event h3 {
  font-size: 30px;
  margin: 4px 0 6px;
}
.event-city {
  display: flex;
  gap: 7px;
}
.event-city svg {
  color: #7e2436;
  margin-top: 4px;
}
.event-link {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: #101822;
  color: #fffdf8;
  transition: transform 0.18s ease;
}
.event-link:hover {
  transform: translate(3px, -3px);
}
.agenda-note {
  margin-top: 45px;
  border-left: 3px solid #7e2436;
  padding: 16px 20px;
  display: flex;
  gap: 13px;
  background: #eee7da;
  max-width: 780px;
}
.agenda-note > svg {
  color: #7e2436;
  flex: 0 0 auto;
}
.agenda-note p,
.agenda-note strong {
  margin: 0;
  font-size: 12px;
}
.agenda-note p {
  color: #666d72;
  margin-top: 4px;
}
/* Map stage. */
.map-page-hero {
  padding: 96px 0 84px;
}
.map-page-hero h1 {
  font-size: clamp(70px, 8vw, 110px);
  margin: 0 0 18px;
}
.map-page-hero h1 em {
  color: #f5f1e8;
}
.map-page-hero > div > p:not(.eyebrow) {
  color: #c3c2bf;
  max-width: 440px;
}
.map-stage {
  position: relative;
  min-height: 700px;
  background: #172330;
  overflow: hidden;
}
.map-background,
.map-background img,
.map-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-background img {
  object-fit: cover;
  opacity: 0.52;
}
.map-wash {
  background: linear-gradient(
    90deg,
    rgba(12, 20, 29, 0.88),
    rgba(12, 20, 29, 0.36) 68%,
    rgba(12, 20, 29, 0.74)
  );
}
.meridian {
  position: absolute;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 50%;
  width: 360px;
  height: 720px;
  transform: rotate(28deg);
}
.meridian-a {
  left: 26%;
  top: -150px;
}
.meridian-b {
  left: 43%;
  top: 160px;
  transform: rotate(-38deg);
}
.meridian-c {
  right: -12%;
  top: -290px;
  transform: rotate(12deg);
}
.map-stage-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding-top: 74px;
  padding-bottom: 74px;
  min-height: 700px;
}
.map-sidebar {
  background: #f5f1e8;
  padding: 26px;
}
.place-selector {
  border-top: 1px solid #d0c8bd;
}
.place-selector button {
  width: 100%;
  display: grid;
  grid-template-columns: 31px 1fr 18px;
  align-items: center;
  gap: 7px;
  text-align: left;
  background: transparent;
  border-bottom: 1px solid #d9d1c4;
  padding: 15px 0;
  color: #18202a;
}
.place-selector button > span {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #7e2436;
}
.place-selector button strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 0.95;
  font-weight: 500;
}
.place-selector button small {
  display: block;
  margin-top: 3px;
  color: #687078;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.place-selector button.selected {
  padding-left: 8px;
  background: #e9e1d5;
}
.place-detail {
  align-self: center;
  justify-self: end;
  background: rgba(245, 241, 232, 0.96);
  max-width: 400px;
  padding: 39px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.detail-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: transparent;
  color: #7e2436;
}
.place-detail h2 {
  font-size: 70px;
  margin: 19px 0 13px;
}
.place-detail > p {
  color: #596066;
}
.place-detail dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid #d3ccc1;
  border-bottom: 1px solid #d3ccc1;
  padding: 15px 0;
  margin: 25px 0;
}
.place-detail dt {
  font-size: 8px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6b6d6e;
}
.place-detail dd {
  margin: 3px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.05;
}
.route-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d7cfc3;
}
.route-notes > div {
  background: #f5f1e8;
  padding: 28px;
}
.route-notes svg {
  color: #7e2436;
}
.route-notes h3 {
  font-size: 28px;
  margin: 29px 0 9px;
}
.route-notes p {
  color: #666d72;
  font-size: 12px;
  margin: 0;
}
/* Directory. */
.directory-hero {
  padding: 100px 0 87px;
  background: #ece5d9;
}
.directory-hero h1 {
  font-size: clamp(68px, 8vw, 112px);
  margin: 0 0 24px;
  max-width: 760px;
}
.directory-hero > div > p:not(.eyebrow) {
  max-width: 490px;
  color: #596066;
}
.directory-stat {
  margin-top: 61px;
  border-top: 1px solid #bcb4a9;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.directory-stat strong {
  font-family: "Cormorant Garamond", serif;
  color: #7e2436;
  font-size: 49px;
  line-height: 0.9;
}
.directory-stat span {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.directory-top {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 12vw;
  align-items: end;
  margin-bottom: 52px;
}
.directory-top h2 {
  font-size: 61px;
  margin: 0;
}
.directory-top > p {
  color: #62696e;
  margin: 0;
}
.brotherhood-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #d4ccbf;
}
.brotherhood-card {
  background: #fffdf8;
  padding: 31px;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.2s ease;
}
.brotherhood-card:hover {
  background: #ede5d8;
}
.brotherhood-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.brotherhood-top > span {
  font-family: "Cormorant Garamond", serif;
  color: #7e2436;
  font-size: 28px;
}
.brotherhood-top p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-size: 10px;
  color: #666d72;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.brotherhood-card h3 {
  font-size: 37px;
  margin: 35px 0 15px;
  max-width: 470px;
}
.brotherhood-summary {
  color: #697076;
  font-size: 12px;
  margin: 0;
}
.brotherhood-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  border-top: 1px solid #d8d0c4;
  padding-top: 15px;
  margin: 23px 0 22px;
  width: 100%;
}
.brotherhood-card dt {
  font-size: 8px;
  color: #73777a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.brotherhood-card dd {
  margin: 4px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.05;
}
.brotherhood-card > a {
  margin-top: auto;
  color: #7e2436;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  gap: 5px;
  align-items: center;
}
.directory-callout {
  margin-top: 38px;
  background: #7e2436;
  color: #fffdf8;
  padding: 31px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 20px;
  align-items: center;
}
.directory-callout h3 {
  font-size: 33px;
  margin: 0 0 7px;
}
.directory-callout p {
  margin: 0;
  color: #efdadd;
  font-size: 12px;
}
.directory-image-section {
  padding: 76px 0;
}
.directory-image-section .shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.directory-image-section img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}
.directory-image-section h2 {
  font-size: 66px;
  margin: 0 0 16px;
}
.directory-image-section p:not(.eyebrow) {
  max-width: 480px;
  color: #c5c4c1;
}
/* Guides, archive and long read. */
.guides-hero {
  background: #fffdf8;
  min-height: 595px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.guides-hero-image {
  position: absolute;
  inset: 0 0 0 52%;
}
.guides-hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fffdf8 0%,
    rgba(255, 253, 248, 0) 34%,
    rgba(16, 24, 34, 0.18)
  );
}
.guides-hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.guides-hero-content {
  position: relative;
  z-index: 2;
  padding: 65px 0;
}
.guides-hero h1 {
  font-size: clamp(72px, 8vw, 111px);
  margin: 0 0 20px;
}
.guides-hero-content > p:not(.eyebrow) {
  max-width: 440px;
  color: #5f676c;
  margin-bottom: 28px;
}
.guide-feature {
  background: #101822;
  color: #fffdf8;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 46px;
}
.guide-feature > div > span {
  color: #ba6b7b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.guide-feature h2 {
  font-size: 58px;
  margin: 24px 0 16px;
  max-width: 590px;
}
.guide-feature > div > p {
  color: #c9c9c4;
  max-width: 480px;
}
.guide-feature .text-link {
  color: #f5f1e8;
}
.guide-feature-notes {
  border-left: 1px solid #41505d;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.guide-feature-notes p {
  margin: 0 !important;
  font-size: 12px !important;
}
.guide-feature-notes strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 29px;
  display: block;
  color: #fffdf8;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d7cfc3;
}
.guide-grid article {
  background: #f5f1e8;
  padding: 31px;
  min-height: 295px;
}
.guide-grid svg {
  color: #7e2436;
}
.guide-grid span {
  display: block;
  margin: 25px 0 13px;
  color: #7e2436;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.guide-grid h3 {
  font-size: 32px;
  margin: 0 0 13px;
}
.guide-grid p {
  color: #676d72;
  font-size: 12px;
}
.guide-grid a {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 27px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7e2436;
}
.timeline-section h2 {
  font-size: 69px;
  margin: 0 0 52px;
}
.timeline {
  border-top: 1px solid #41505d;
}
.timeline article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  border-bottom: 1px solid #41505d;
  padding: 25px 0;
}
.timeline span {
  color: #bb6c7c;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
}
.timeline h3 {
  font-size: 31px;
  margin: 0 0 7px;
}
.timeline p {
  margin: 0;
  color: #bfc1c1;
  max-width: 600px;
  font-size: 12px;
}
.archive-hero {
  padding: 103px 0 74px;
  background: #ece5d9;
}
.archive-hero h1 {
  font-size: clamp(70px, 8.2vw, 116px);
  margin: 0 0 18px;
}
.archive-hero > div > p:not(.eyebrow) {
  max-width: 495px;
  color: #5d666d;
}
.archive-search {
  margin-top: 44px;
  background: #fffdf8;
  max-width: 460px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #73787b;
  font-size: 11px;
}
.archive-search kbd {
  margin-left: auto;
  background: #ece5d9;
  font-size: 9px;
  padding: 2px 5px;
}
.archive-lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 398px;
  background: #101822;
  color: #fffdf8;
}
.archive-lead img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-lead > div {
  padding: 43px;
}
.archive-lead span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ba6b7b;
  font-weight: 800;
}
.archive-lead h2 {
  font-size: 54px;
  margin: 34px 0 15px;
}
.archive-lead p {
  color: #c6c4be;
}
.archive-lead .text-link {
  color: #fffdf8;
}
.archive-meta {
  display: flex;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid #d0c8bb;
}
.archive-meta p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #686e73;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.archive-meta svg {
  color: #7e2436;
}
.archive-list article {
  display: grid;
  grid-template-columns: 65px 1fr 32px;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid #d9d1c4;
  padding: 30px 0;
}
.archive-list article > span {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #7e2436;
}
.archive-tag {
  margin: 0;
  color: #7e2436 !important;
  font-size: 9px !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.archive-list h3 {
  font-size: 37px;
  margin: 9px 0;
}
.archive-list p {
  margin: 0;
  color: #697077;
  font-size: 12px;
  max-width: 690px;
}
.archive-list a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #101822;
  color: #fffdf8;
}
.article-head {
  padding: 93px 0 47px;
  background: #fffdf8;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 52px;
  color: #7e2436;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-head h1 {
  font-size: clamp(58px, 7vw, 100px);
  margin: 0 0 24px;
}
.article-deck {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.15;
  max-width: 790px;
  color: #3a434a;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 39px;
  color: #74787a;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-meta span,
.article-meta button {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta button {
  margin-left: auto;
  background: transparent;
  color: #7e2436;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-image {
  margin: 0;
  position: relative;
  background: #101822;
}
.article-image img {
  width: min(1000px, 100%);
  height: 560px;
  object-fit: cover;
  margin: 0 auto;
}
.article-image figcaption {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 9px 0;
  color: #bfc0bd;
  font-size: 10px;
}
.article-body {
  width: min(1000px, calc(100% - 48px));
  margin: 93px auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 90px;
}
.article-rail {
  border-top: 1px solid #d1c9bd;
  padding-top: 12px;
}
.article-rail p {
  font-size: 9px;
  color: #7e2436;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-rail a {
  display: block;
  padding: 6px 0;
  color: #6b7175;
  font-size: 10px;
}
.article-body article {
  max-width: 680px;
}
.article-lede {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  line-height: 1.15;
  color: #303a42;
}
.article-body h2 {
  font-size: 48px;
  margin: 54px 0 15px;
}
.article-body article > p:not(.article-lede) {
  font-size: 15px;
  color: #485159;
}
.margin-note {
  margin: 30px -100px 34px 35px;
  padding: 22px 26px;
  border-left: 3px solid #7e2436;
  background: #eee6da;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  line-height: 1.12;
  color: #313a42;
}
.article-end {
  border-top: 1px solid #d8d0c4;
  padding-top: 22px;
  margin-top: 43px;
}
.article-end p {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6c7072;
}
.related-reading {
  padding: 75px 0;
}
.related-reading h2 {
  font-size: 60px;
  margin: 0 0 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #d1c8bc;
}
.related-grid article {
  background: #f5f1e8;
  padding: 28px;
}
.related-grid span {
  color: #7e2436;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.related-grid h3 {
  font-size: 33px;
  margin: 24px 0;
}
.related-grid a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7e2436;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* Profile and sale experience. */
.profile-hero {
  height: 580px;
  position: relative;
  color: #fffdf8;
  isolation: isolate;
}
.profile-hero > img,
.profile-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.profile-shade {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(12, 20, 29, 0.93),
    rgba(12, 20, 29, 0.35)
  );
}
.profile-content {
  padding-top: 74px;
}
.profile-content .back-link {
  color: #f5f1e8;
  margin-bottom: 45px;
}
.profile-content h1 {
  font-size: clamp(48px, 6vw, 83px);
  max-width: 910px;
  margin: 0 0 18px;
}
.profile-content h1 em {
  color: #f5f1e8;
}
.profile-content > p:not(.eyebrow) {
  max-width: 590px;
  color: #ddd7ce;
}
.profile-meta {
  border-bottom: 1px solid #d8d0c4;
}
.profile-meta > .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.profile-meta .shell > div {
  display: flex;
  gap: 12px;
  padding: 27px 0;
}
.profile-meta svg {
  color: #7e2436;
  flex: 0 0 auto;
  margin-top: 3px;
}
.profile-meta p {
  font-size: 11px;
  color: #667078;
  margin: 0;
}
.profile-meta strong {
  color: #202932;
}
.profile-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 120px;
  align-items: start;
}
.profile-layout article h2 {
  font-size: 63px;
  margin: 0 0 21px;
}
.profile-layout article > p:not(.eyebrow) {
  font-size: 15px;
  color: #535c63;
  max-width: 620px;
}
.profile-layout aside {
  border-top: 1px solid #c9c2b6;
  padding-top: 15px;
}
.profile-layout aside img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}
.profile-layout aside p {
  font-size: 12px;
  color: #5b6369;
}
.profile-facts {
  padding: 57px 0;
}
.profile-facts .shell > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #41505d;
}
.profile-facts span {
  background: #101822;
  padding: 18px;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8c7c3;
}
.profile-facts strong {
  font-family: "Cormorant Garamond", serif;
  color: #ba6b7b;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}
.sale-hero {
  background: #101822;
  color: #fffdf8;
  padding: 112px 0 102px;
}
.sale-hero h1 {
  font-size: clamp(59px, 7.7vw, 108px);
  margin: 0 0 22px;
}
.sale-hero h1 em {
  color: #f5f1e8;
}
.sale-hero > div > p:not(.eyebrow):not(.sale-contact) {
  max-width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1.15;
  color: #d0cdc6;
  margin-bottom: 31px;
}
.sale-contact {
  font-size: 11px;
  color: #c4c5c3;
  margin-top: 20px;
}
.sale-contact a {
  color: #f2d4d9;
  border-bottom: 1px solid currentColor;
}
.sale-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11vw;
}
.sale-case h2 {
  font-size: 63px;
  margin: 0 0 20px;
}
.sale-case p:not(.eyebrow) {
  max-width: 490px;
  color: #596168;
}
.advantage-list {
  border-top: 1px solid #cfc7bb;
}
.advantage-list > div {
  display: grid;
  grid-template-columns: 38px 1fr 20px;
  gap: 13px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #cfc7bb;
}
.advantage-list span {
  font-family: "Cormorant Garamond", serif;
  color: #7e2436;
  font-size: 27px;
}
.advantage-list p {
  margin: 0 !important;
  font-size: 12px;
  color: #3d454c !important;
}
.advantage-list svg {
  color: #7e2436;
}
.sale-modules {
  padding: 100px 0;
}
.sale-modules h2 {
  font-size: 72px;
  margin: 0 0 45px;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #41505d;
}
.module-grid article {
  background: #101822;
  padding: 26px;
  min-height: 235px;
}
.module-grid svg {
  color: #ba6b7b;
}
.module-grid h3 {
  font-size: 31px;
  margin: 29px 0 10px;
}
.module-grid p {
  font-size: 12px;
  color: #bec0bf;
}
.sale-cta {
  background: #ece5d9;
  text-align: center;
}
.sale-cta h2 {
  font-size: clamp(62px, 7vw, 99px);
  margin: 0 0 18px;
}
.sale-cta p:not(.eyebrow) {
  max-width: 550px;
  margin: 0 auto 28px;
  color: #5b646b;
}
.sale-cta .eyebrow {
  justify-content: center;
}
.not-found {
  min-height: 66vh;
  padding: 130px 0;
}
.not-found h1 {
  font-size: clamp(60px, 8vw, 110px);
  margin: 0 0 20px;
}
.not-found h1 em {
  color: #f5f1e8;
}
.not-found p:not(.eyebrow) {
  color: #c3c4c1;
  max-width: 470px;
  margin-bottom: 30px;
}
/* Footer. */
.footer {
  background: #101822;
  color: #f5f1e8;
  padding: 67px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}
.brand-footer {
  margin-bottom: 20px;
}
.footer-intro > p {
  color: #bfc1c0;
  font-size: 12px;
  max-width: 315px;
}
.footer-mail {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f0d4d8;
  font-size: 11px;
  font-weight: 700;
}
.footer h3 {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ba6b7b;
  margin: 7px 0 16px;
}
.footer-grid > div:not(.footer-intro):not(.footer-note) > a {
  display: block;
  color: #cbc9c4;
  margin: 0 0 9px;
  font-size: 11px;
}
.footer-grid > div:not(.footer-intro):not(.footer-note) > a:hover {
  color: #fffdf8;
}
.footer-note {
  border-left: 1px solid #41505d;
  padding-left: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-note svg {
  color: #ba6b7b;
  flex: 0 0 auto;
}
.footer-note p {
  font-size: 11px;
  color: #c3c3c0;
  line-height: 1.5;
}
.footer-note strong {
  color: #fffdf8;
}
.footer-base {
  padding-top: 18px;
  border-top: 1px solid #30404d;
  display: flex;
  justify-content: space-between;
  color: #818b93;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 850px) {
  .shell {
    width: min(100% - 32px, 1240px);
  }
  .section {
    padding: 75px 0;
  }
  .sale-strip-inner {
    padding: 7px 0;
    min-height: 0;
  }
  .sale-strip p span {
    display: none;
  }
  .sale-strip p,
  .sale-link {
    font-size: 9px;
  }
  .desktop-nav,
  .hidden-sm {
    display: none;
  }
  .mobile-toggle {
    display: grid;
  }
  .mobile-nav {
    display: grid;
    background: #152130;
    border-top: 1px solid #3a4652;
    padding: 10px 16px 18px;
  }
  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #344351;
    padding: 15px 0;
    color: #f5f1e8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .mobile-nav .mobile-sale {
    color: #e6a2b0;
  }
  .hero {
    min-height: 580px;
    height: calc(100vh - 38px);
  }
  .hero-inner {
    padding-top: 110px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero-copy {
    font-size: 13px;
    width: 330px;
  }
  .hero-scroll,
  .hero-seal {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 51px;
  }
  .section-heading > .text-link {
    margin-top: 22px;
  }
  .agenda-layout,
  .map-promo-layout,
  .heritage-layout,
  .newsletter-inner,
  .directory-top,
  .directory-image-section .shell,
  .guides-hero,
  .guide-feature,
  .archive-lead,
  .sale-case-grid {
    grid-template-columns: 1fr;
  }
  .agenda-list {
    padding-left: 0;
  }
  .image-card {
    min-height: 415px;
  }
  .agenda-row {
    min-height: 112px;
  }
  .map-promo-layout {
    padding: 0;
    gap: 42px;
    min-height: 0;
  }
  .map-copy {
    padding-top: 10px;
  }
  .map-image-wrap {
    height: 400px;
  }
  .map-image-wrap > img {
    width: 100%;
  }
  .map-card-one {
    left: 10px;
  }
  .map-card-two {
    right: 10px;
  }
  .heritage-photo {
    height: 440px;
  }
  .heritage-copy {
    padding-top: 6px;
  }
  .heritage-copy h2 {
    font-size: 63px;
  }
  .story-grid,
  .guide-grid,
  .route-notes,
  .module-grid {
    grid-template-columns: 1fr;
  }
  .story-card {
    min-height: 250px;
  }
  .newsletter {
    padding: 62px 0;
  }
  .newsletter-inner {
    gap: 25px;
  }
  .inner-hero {
    height: 445px;
  }
  .inner-hero-content {
    padding-top: 75px;
  }
  .inner-hero h1 {
    font-size: 67px;
  }
  .agenda-controls {
    display: block;
  }
  .agenda-controls h2 {
    font-size: 49px;
  }
  .filter-set {
    justify-content: start;
    margin-top: 22px;
  }
  .agenda-table-head {
    display: none;
  }
  .agenda-event {
    grid-template-columns: 1fr 30px;
    gap: 10px;
  }
  .event-time {
    grid-column: 1/-1;
  }
  .event-city {
    grid-column: 1;
  }
  .event-link {
    grid-column: 2;
    grid-row: 2;
  }
  .agenda-event > div:nth-child(2) {
    grid-column: 1/-1;
  }
  .map-stage {
    min-height: auto;
  }
  .map-stage-grid {
    grid-template-columns: 1fr;
    padding-top: 37px;
    padding-bottom: 37px;
    gap: 25px;
  }
  .map-sidebar {
    padding: 20px;
  }
  .place-detail {
    justify-self: start;
    max-width: 390px;
  }
  .directory-hero {
    padding: 75px 0;
  }
  .directory-hero h1 {
    font-size: 69px;
  }
  .brotherhood-grid {
    grid-template-columns: 1fr;
  }
  .directory-callout {
    grid-template-columns: 25px 1fr;
    padding: 25px;
  }
  .directory-callout .button {
    grid-column: 1/-1;
  }
  .directory-image-section .shell {
    gap: 35px;
  }
  .directory-image-section h2 {
    font-size: 59px;
  }
  .guides-hero {
    display: block;
    min-height: 640px;
  }
  .guides-hero-image {
    inset: 0;
    opacity: 0.38;
  }
  .guides-hero-image:after {
    background: linear-gradient(
      90deg,
      rgba(255, 253, 248, 0.92),
      rgba(255, 253, 248, 0.2)
    );
  }
  .guides-hero-content {
    padding: 80px 0;
  }
  .guides-hero h1 {
    font-size: 74px;
  }
  .guide-feature {
    gap: 35px;
    padding: 30px;
  }
  .guide-feature h2 {
    font-size: 51px;
  }
  .guide-feature-notes {
    border-left: 0;
    border-top: 1px solid #41505d;
    padding-left: 0;
    padding-top: 16px;
  }
  .timeline article {
    grid-template-columns: 105px 1fr;
  }
  .archive-hero {
    padding: 76px 0 65px;
  }
  .archive-hero h1 {
    font-size: 73px;
  }
  .archive-lead > div {
    padding: 28px;
  }
  .archive-lead h2 {
    font-size: 44px;
    margin-top: 22px;
  }
  .archive-list article {
    grid-template-columns: 43px 1fr 28px;
    gap: 14px;
  }
  .archive-list h3 {
    font-size: 29px;
  }
  .article-head {
    padding: 67px 0 38px;
  }
  .article-head h1 {
    font-size: 58px;
  }
  .article-deck {
    font-size: 25px;
  }
  .article-meta {
    flex-wrap: wrap;
  }
  .article-meta button {
    margin-left: 0;
  }
  .article-image img {
    height: 420px;
  }
  .article-body {
    display: block;
    margin: 62px auto;
  }
  .article-rail {
    display: none;
  }
  .article-body h2 {
    font-size: 42px;
  }
  .margin-note {
    margin: 27px 0;
    padding: 18px;
    font-size: 21px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .profile-hero {
    height: 560px;
  }
  .profile-content h1 {
    font-size: 51px;
  }
  .profile-meta > .shell,
  .profile-facts .shell > div {
    grid-template-columns: repeat(2, 1fr);
  }
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .sale-hero {
    padding: 80px 0;
  }
  .sale-hero h1 {
    font-size: 63px;
  }
  .sale-case h2 {
    font-size: 53px;
  }
  .sale-modules h2 {
    font-size: 61px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-note {
    grid-column: 1/-1;
  }
  .footer-base {
    display: block;
  }
  .footer-base span {
    display: block;
    margin: 5px 0;
  }
}
@media (max-width: 480px) {
  .brand {
    font-size: 27px;
  }
  .nav-row {
    height: 64px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-actions {
    display: block;
  }
  .hero-text-link {
    margin-top: 18px;
  }
  .map-stats {
    gap: 20px;
  }
  .map-stats strong {
    font-size: 37px;
  }
  .image-card-overlay {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .agenda-row h3 {
    font-size: 25px;
  }
  .place-detail {
    padding: 29px;
  }
  .place-detail h2 {
    font-size: 58px;
  }
  .place-detail dl {
    grid-template-columns: 1fr 1fr;
  }
  .profile-meta > .shell {
    grid-template-columns: 1fr 1fr;
  }
  .profile-meta .shell > div {
    padding: 17px 0;
  }
  .profile-facts .shell > div {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-intro,
  .footer-note {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  a,
  button,
  .story-card,
  .brotherhood-card {
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
}

/* Velo y Plata refinements: more visible folded-veil emblem, silver archival material and cross-page route logic. */
:root {
  --old-silver: #a8afb0;
  --old-silver-dim: rgba(168, 175, 176, 0.55);
}

/* The acquisition message remains present but reads as an archival availability notice. */
.sale-strip {
  background: #4f2932;
  border-bottom: 1px solid rgba(218, 193, 197, 0.32);
}
.sale-strip-inner {
  min-height: 30px;
}
.sale-strip p,
.sale-link {
  font-size: 9px;
}
.sale-strip p span {
  color: #d4c0c4;
}
.sale-link {
  color: #f2e9e7;
  border-bottom-color: rgba(242, 233, 231, 0.55);
}

/* Make the generated symbol a legible seal before the wordmark is read. */
.brand img {
  width: 38px;
  height: 38px;
  padding: 5px;
  background: #f5f1e8;
  border: 1px solid #a8afb0;
  filter: none;
  box-shadow: 0 0 0 3px rgba(185, 67, 93, 0.22);
}
.brand-footer img {
  width: 34px;
  height: 34px;
}
/* The domain is the project’s primary asset: use the unused header room for a 150% wordmark and seal. */
.site-header .brand {
  gap: 15px;
  font-size: 45px;
}
.site-header .brand img {
  width: 57px;
  height: 57px;
  padding: 7.5px;
  box-shadow: 0 0 0 4.5px rgba(185, 67, 93, 0.22);
}
.site-header .brand small {
  font-size: 15px;
}

/* The line of veil folds through every major page: route, divider and archival frame. */
.section-heading,
.inner-hero-content,
.map-page-hero .shell,
.directory-hero .shell,
.guides-hero-content,
.archive-hero .shell,
.article-head .shell,
.profile-content,
.sale-hero .shell {
  position: relative;
}
.section-heading::after,
.inner-hero-content::after,
.map-page-hero .shell::after,
.directory-hero .shell::after,
.guides-hero-content::after,
.archive-hero .shell::after,
.article-head .shell::after,
.profile-content::after,
.sale-hero .shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 118px;
  height: 34px;
  right: 0;
  top: 3px;
  border-top: 1px solid var(--old-silver-dim);
  border-right: 1px solid var(--old-silver-dim);
  border-radius: 0 54px 0 0;
  opacity: 0.9;
}
.inner-hero-content::after,
.map-page-hero .shell::after,
.profile-content::after,
.sale-hero .shell::after {
  border-color: rgba(235, 238, 235, 0.45);
}
.agenda-preview .section-heading::before,
.archive-preview .section-heading::before,
.related-reading .shell::before,
.sale-case .shell::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    #7e2436 0 13%,
    #a8afb0 13% 58%,
    transparent 58%
  );
  margin-bottom: 21px;
}
.map-promo {
  position: relative;
}
.map-promo::before {
  content: "";
  position: absolute;
  inset: 52px 10% auto 36%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 175, 176, 0.7) 20%,
    rgba(168, 175, 176, 0.12)
  );
  transform: rotate(-8deg);
}

/* Silver becomes a frame and instrument rather than a neutral border. */
.image-card,
.heritage-photo,
.map-sidebar,
.place-detail,
.article-image,
.archive-lead,
.brotherhood-card,
.guide-feature {
  box-shadow: inset 0 0 0 1px rgba(168, 175, 176, 0.7);
}
.location-pill {
  border: 1px solid rgba(207, 215, 214, 0.8);
  background: linear-gradient(
    110deg,
    rgba(19, 31, 43, 0.89),
    rgba(69, 80, 89, 0.74)
  );
}
.map-card {
  border: 1px solid #a8afb0;
}
.article-image figcaption {
  color: #d8ddda;
  border-top: 1px solid rgba(168, 175, 176, 0.48);
}
.footer-note {
  border-left-color: var(--old-silver-dim);
}

/* Agenda becomes a quiet processional route; map adds constellation-like archival traces. */
.agenda-table {
  position: relative;
}
.agenda-table::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 30px;
  bottom: 31px;
  border-left: 1px solid rgba(126, 36, 54, 0.36);
}
.event-time {
  position: relative;
  z-index: 1;
}
.event-time span {
  background: #f5f1e8;
  padding-right: 5px;
}
.agenda-event {
  position: relative;
}
.agenda-event::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 47%;
  width: 7px;
  height: 7px;
  border: 1px solid #7e2436;
  border-radius: 50%;
  background: #f5f1e8;
  transform: translateY(-50%);
}
.map-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 48vw;
  height: 28vw;
  right: -8vw;
  top: 9vw;
  border: 1px solid rgba(185, 198, 201, 0.35);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50% 0 0 0;
  transform: rotate(-18deg);
  pointer-events: none;
}
.map-stage-grid::after {
  content: "ruta del velo · archivo territorial";
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 38px;
  writing-mode: vertical-rl;
  color: rgba(231, 235, 231, 0.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.place-selector button.selected {
  box-shadow: inset 3px 0 0 #7e2436;
}

@media (max-width: 850px) {
  .sale-strip-inner {
    min-height: 29px;
  }
  .sale-strip p span {
    display: none;
  }
  .sale-strip p strong {
    font-size: 0;
  }
  .sale-strip p strong::after {
    content: "Proyecto en venta";
    font-size: 9px;
    letter-spacing: 0.01em;
  }
  .section-heading::after,
  .inner-hero-content::after,
  .map-page-hero .shell::after,
  .directory-hero .shell::after,
  .guides-hero-content::after,
  .archive-hero .shell::after,
  .article-head .shell::after,
  .profile-content::after,
  .sale-hero .shell::after {
    width: 64px;
    height: 19px;
  }
  .agenda-table::before,
  .agenda-event::after {
    display: none;
  }
  .map-stage-grid::after {
    right: 4%;
    bottom: 15px;
  }
  .site-header .brand {
    font-size: 40.5px;
  }
}

.mobile-nav[hidden] {
  display: none !important;
}
.static-hidden {
  display: none !important;
}
@media (max-width: 850px) {
  .mobile-nav:not([hidden]) {
    display: grid !important;
  }
}
