:root {
  --ink: #071018;
  --ink-soft: #0c161e;
  --charcoal: #111b22;
  --charcoal-light: #19252d;
  --gold: #c9a86a;
  --gold-light: #ead6a7;
  --ivory: #f7f1e7;
  --ivory-deep: #e9dfd0;
  --white: #ffffff;
  --muted: #afbac0;
  --line: rgba(234, 214, 167, 0.24);
  --line-light: rgba(247, 241, 231, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: min(100% - 40px, 1240px);
  --wrap-text: min(100% - 40px, 760px);
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--gold-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--ivory);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7.75rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.55rem, 5.2vw, 5.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1.35em;
}

address {
  font-style: normal;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: clip;
}

.wrap {
  width: var(--wrap-text);
  margin-inline: auto;
}

.wrap--wide {
  width: var(--wrap);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  margin: 0;
  overflow: visible;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 800;
  white-space: normal;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 1.4rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.55rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease), transform 240ms var(--ease);
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: rgba(247, 241, 231, 0.48);
  background: rgba(7, 16, 24, 0.14);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

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

.button--dark:hover {
  border-color: var(--charcoal-light);
  background: var(--charcoal-light);
  color: var(--white);
}

.button--compact {
  min-height: 42px;
  padding: 0.7rem 1.05rem;
  font-size: 0.65rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-block: 4px;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 280ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 32px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: height 300ms var(--ease), background-color 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  height: 72px;
  border-color: var(--line-light);
  background: rgba(7, 16, 24, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(140%);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 920px) {
  .no-js .site-header {
    position: relative;
    height: auto;
    background: var(--ink);
  }

  .no-js .site-header__inner {
    min-height: var(--header-height);
    flex-direction: column;
    align-items: flex-start;
    padding-block: 16px;
  }

  .no-js .primary-menu-panel {
    width: 100%;
    margin-top: 16px;
  }
}

.brand,
.brand__link,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand__link,
.footer-brand {
  gap: 12px;
  color: var(--ivory);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1;
}

.brand__copy {
  display: grid;
  line-height: 1;
}

.brand__name {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: 0.025em;
}

.brand__place {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: min(220px, 42vw);
  max-height: 52px;
}

.primary-menu-panel {
  display: flex;
  gap: 26px;
  align-items: center;
}

.menu,
.sub-menu,
.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.primary-menu .menu-item {
  position: relative;
}

.primary-menu .menu-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-menu .menu-link::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transition: right 220ms var(--ease), left 220ms var(--ease);
}

.primary-menu .menu-link:hover,
.primary-menu .menu-link:focus-visible,
.primary-menu .current-menu-item > .menu-link,
.primary-menu .current-menu-ancestor > .menu-link {
  color: var(--gold-light);
}

.primary-menu .menu-link:hover::after,
.primary-menu .menu-link:focus-visible::after,
.primary-menu .current-menu-item > .menu-link::after {
  right: 0;
  left: 0;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  width: 220px;
  padding: 10px;
  border: 1px solid var(--line-light);
  background: rgba(12, 22, 30, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.sub-menu .menu-link {
  width: 100%;
  padding: 8px 10px;
}

.sub-menu .menu-link::after {
  display: none;
}

.menu-item:hover > .sub-menu,
.menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 240ms var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-of-type {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-of-type {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.hero__media--art {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 168, 106, 0.22), transparent 19%),
    linear-gradient(122deg, #071018 0%, #111d25 55%, #283129 100%);
}

.hero__media--art::before {
  position: absolute;
  top: 8%;
  right: 5%;
  width: min(50vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(234, 214, 167, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(201, 168, 106, 0.08), 0 0 120px rgba(201, 168, 106, 0.06);
  content: "";
}

.hero__media--art span {
  position: absolute;
  right: 10%;
  width: clamp(180px, 28vw, 420px);
  border: 1px solid rgba(247, 241, 231, 0.14);
  transform: rotate(-18deg);
}

.hero__media--art span:nth-child(1) { top: 26%; }
.hero__media--art span:nth-child(2) { top: 48%; right: 5%; }
.hero__media--art span:nth-child(3) { top: 70%; right: 13%; }

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 12, 18, 0.94) 0%, rgba(5, 12, 18, 0.78) 42%, rgba(5, 12, 18, 0.18) 76%, rgba(5, 12, 18, 0.38) 100%),
    linear-gradient(0deg, rgba(5, 12, 18, 0.78) 0%, transparent 42%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 64px;
  align-items: end;
  padding-top: calc(var(--header-height) + 8vh);
  padding-bottom: clamp(7rem, 12vh, 10rem);
}

.hero__content {
  max-width: 910px;
}

.hero__content h1 {
  max-width: 890px;
  margin-bottom: 1.6rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.26);
}

.hero__intro {
  max-width: 650px;
  margin-bottom: 2.25rem;
  color: #e9e6df;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.hero__fact {
  align-self: end;
  padding: 22px 0 6px 24px;
  border-left: 1px solid var(--gold);
}

.hero__fact strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.85;
}

.hero__fact span {
  display: block;
  margin-top: 16px;
  color: var(--ivory-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: var(--ivory);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(247, 241, 231, 0.28);
}

.hero__scroll i::after {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--gold-light);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(220%); }
}

/* Shared sections */
.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-header h2 {
  margin-bottom: 0;
}

.section-header--row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.section-header--row > p,
.section-header--row > .text-link {
  margin: 0 0 0.5rem;
}

.section-header--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(48px, 10vw, 150px);
}

.section--welcome {
  background: var(--ivory);
  color: #263139;
}

.section--welcome::after {
  position: absolute;
  right: -8vw;
  bottom: -16vw;
  width: 42vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 16, 24, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section--welcome h2 {
  color: var(--ink);
}

.section--welcome .eyebrow {
  color: #806534;
}

.prose--lead {
  align-self: center;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.prose--lead .text-link {
  color: var(--ink);
}

.section--rooms {
  background: #d8c5a4;
  color: #1d272d;
}

.section--rooms h2,
.section--rooms h3 {
  color: var(--ink);
}

.section--rooms .eyebrow {
  color: #684f23;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 16, 24, 0.25);
  border-bottom: 1px solid rgba(7, 16, 24, 0.25);
}

.room-card {
  position: relative;
  min-height: 390px;
  padding: 34px 26px;
  border-right: 1px solid rgba(7, 16, 24, 0.2);
  overflow: hidden;
  transition: background-color 320ms var(--ease), color 320ms var(--ease), transform 320ms var(--ease);
}

.room-card:last-child {
  border-right: 0;
}

.room-card::after {
  position: absolute;
  right: -50px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.14;
  transition: transform 500ms var(--ease);
}

.room-card:hover,
.room-card:focus-within {
  background: var(--ink);
  color: var(--ivory-deep);
  transform: translateY(-8px);
}

.room-card:hover h3,
.room-card:focus-within h3 {
  color: var(--ivory);
}

.room-card:hover::after,
.room-card:focus-within::after {
  transform: scale(1.2);
}

.room-card__number {
  color: currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.room-card__line {
  width: 52px;
  height: 1px;
  margin: 42px 0 72px;
  background: currentColor;
  opacity: 0.5;
}

.room-card h3 {
  margin-bottom: 0.7rem;
}

.room-card p {
  min-height: 3.4em;
  font-size: 0.92rem;
}

.room-card__feature {
  display: inline-block;
  color: currentColor;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.section--events {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 8%, rgba(201, 168, 106, 0.13), transparent 26%),
    var(--ink-soft);
}

.section--events::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 52%;
  width: min(70vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 106, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.events-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.events-intro p:not(.eyebrow) {
  max-width: 530px;
  color: var(--muted);
  font-size: 1.05rem;
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-list__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.event-list__item > span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.event-list__item h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  transition: color 220ms ease, transform 220ms var(--ease);
}

.event-list__item:hover h3 {
  color: var(--gold-light);
  transform: translateX(8px);
}

.section--amenities {
  background: var(--ivory);
  color: var(--ink);
}

.section--amenities h2 {
  color: var(--ink);
}

.section--amenities .eyebrow {
  color: #725a2b;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(7, 16, 24, 0.14);
}

.amenity-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid rgba(7, 16, 24, 0.14);
  text-align: center;
}

.amenity-card:last-child {
  border-right: 0;
}

.amenity-card strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.amenity-card span {
  max-width: 150px;
  margin-top: 18px;
  color: #49545b;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Editorial pillars */
.section--journal-first {
  border-top: 1px solid #d4c8b7;
}

.journal-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.journal-grid--home .journal-card__title {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.section--pillars {
  overflow: hidden;
  background: #d8c5a4;
  color: #1d282f;
}

.section--pillars::after {
  position: absolute;
  top: -18vw;
  right: -12vw;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section--pillars h2,
.section--pillars h3 {
  color: var(--ink);
}

.section--pillars .eyebrow {
  color: #654b1f;
}

.pillar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 16, 24, 0.24);
  border-bottom: 1px solid rgba(7, 16, 24, 0.24);
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  border-right: 1px solid rgba(7, 16, 24, 0.2);
  overflow: hidden;
  transition: background-color 320ms var(--ease), color 320ms var(--ease), transform 320ms var(--ease);
}

.pillar-card:last-child {
  border-right: 0;
}

.pillar-card::after {
  position: absolute;
  right: -64px;
  bottom: -92px;
  width: 190px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
  transition: transform 500ms var(--ease);
}

.pillar-card:hover,
.pillar-card:focus-within {
  background: var(--ink);
  color: var(--ivory-deep);
  transform: translateY(-8px);
}

.pillar-card:hover h3,
.pillar-card:focus-within h3,
.pillar-card:hover .text-link,
.pillar-card:focus-within .text-link {
  color: var(--ivory);
}

.pillar-card:hover::after,
.pillar-card:focus-within::after {
  transform: scale(1.25);
}

.pillar-card__number {
  margin-bottom: clamp(58px, 8vw, 100px);
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pillar-card h3 {
  min-height: 2.1em;
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.pillar-card p {
  font-size: 0.9rem;
}

.pillar-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--ink);
}

/* Restrained featured-property pathway */
.section--property {
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 168, 106, 0.15), transparent 28%),
    var(--ink-soft);
}

.property-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(201, 168, 106, 0.035));
  box-shadow: var(--shadow);
}

.property-panel__copy h2 {
  max-width: 740px;
}

.property-panel__copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

.property-panel__facts {
  border-top: 1px solid var(--line);
}

.property-panel__facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.property-panel__facts strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.property-panel__facts span {
  color: var(--ivory-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

/* Lead-generation paths */
.section--work {
  background: var(--ivory);
  color: #29343b;
}

.section--work h2,
.section--work h3 {
  color: var(--ink);
}

.section--work .eyebrow {
  color: #6d531f;
}

.anchor-target {
  position: absolute;
  top: calc(-1 * var(--header-height));
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #b9ad9b;
}

.lead-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(26px, 4vw, 44px);
  border-right: 1px solid #b9ad9b;
  color: #29343b;
  text-decoration: none;
  transition: background-color 300ms var(--ease), color 300ms var(--ease), transform 300ms var(--ease);
}

.lead-card:last-child {
  border-right: 0;
}

.lead-card > span {
  margin-bottom: auto;
  color: #72591f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.lead-card h3 {
  margin-top: 60px;
  margin-bottom: 0.5rem;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.lead-card p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.lead-card i {
  color: #72591f;
  font-size: 1.35rem;
  font-style: normal;
}

.lead-card:hover,
.lead-card:focus-visible {
  background: var(--ink);
  color: var(--ivory-deep);
  transform: translateY(-7px);
}

.lead-card:hover h3,
.lead-card:focus-visible h3,
.lead-card:hover > span,
.lead-card:focus-visible > span,
.lead-card:hover i,
.lead-card:focus-visible i {
  color: var(--gold-light);
}

.work-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: end;
  margin-top: 48px;
}

.section--work .contact-detail {
  min-width: min(100%, 260px);
  border-color: #c6baa8;
  color: var(--ink);
}

.section--work .contact-detail span {
  color: #6d531f;
}

.section--work .text-link {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .journal-grid--home,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card:nth-child(2) {
    border-right: 0;
  }

  .pillar-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 16, 24, 0.2);
  }
}

@media (max-width: 920px) {
  .property-panel {
    grid-template-columns: 1fr;
  }

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

  .lead-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid #b9ad9b;
  }

  .lead-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .journal-grid--home,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-card:nth-child(2) {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 16, 24, 0.2);
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .property-panel {
    padding: 32px 22px;
  }

  .property-panel__facts > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-panel__facts span {
    text-align: left;
  }
}

.section--gallery {
  background: var(--charcoal);
}

.section--gallery .section-header--row > p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.gallery-item--1,
.gallery-item--5 {
  min-height: 540px;
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item--2,
.gallery-item--6 {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
  transition: filter 500ms ease, transform 800ms var(--ease);
}

.gallery-item:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.gallery-facts {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-fact {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(201, 168, 106, 0.09), transparent);
}

.gallery-fact--large {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 106, 0.2), transparent 32%),
    linear-gradient(145deg, #19262d, #071018);
}

.gallery-fact span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.85;
}

.gallery-fact p {
  margin: 26px 0 0;
  color: var(--ivory-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section--journal {
  background: var(--ivory);
  color: var(--ink);
}

.section--journal h2,
.section--journal h3,
.section--journal .text-link {
  color: var(--ink);
}

.section--journal .eyebrow {
  color: #725a2b;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.journal-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(7, 16, 24, 0.14);
  background: #eee5d8;
  color: #29343b;
  transition: box-shadow 320ms var(--ease), transform 320ms var(--ease);
}

.journal-card:hover,
.journal-card:focus-within {
  box-shadow: 0 24px 55px rgba(7, 16, 24, 0.16);
  transform: translateY(-7px);
}

.journal-card__media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(234, 214, 167, 0.26), transparent 23%),
    linear-gradient(145deg, var(--charcoal-light), var(--ink));
  text-decoration: none;
}

.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.journal-card:hover .journal-card__media img {
  transform: scale(1.04);
}

.journal-card__monogram {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 7rem;
  opacity: 0.82;
}

.journal-card__body {
  padding: clamp(24px, 3vw, 34px);
}

.journal-card__meta {
  margin-bottom: 14px;
  color: #59636a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card__meta a {
  color: #5c481f;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.journal-card__meta a:hover,
.journal-card__meta a:focus-visible {
  color: var(--ink);
}

.journal-card__title {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.journal-card__title a {
  color: inherit;
  text-decoration: none;
}

.journal-card__excerpt {
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.journal-card__excerpt p {
  margin: 0;
}

.journal-card .text-link {
  color: var(--ink);
}

/* Governed article evidence and conversion blocks */
.rihuum-cg-sources-disclosure {
  margin: clamp(40px, 7vw, 72px) 0 0;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(7, 16, 24, 0.18);
  background: rgba(238, 229, 216, 0.55);
}

.prose .rihuum-cg-sources-disclosure h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.rihuum-cg-sources-disclosure ul {
  padding-left: 1.25rem;
}

.rihuum-cg-sources-disclosure li + li {
  margin-top: 0.65rem;
}

.rihuum-cg-sources-disclosure > :last-child {
  margin-bottom: 0;
}

.rihuum-cg-editorial-cta {
  display: flex;
  margin: 24px 0 clamp(40px, 7vw, 72px);
}

.prose .rihuum-cg-editorial-cta__link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}

.prose .rihuum-cg-editorial-cta__link:hover,
.prose .rihuum-cg-editorial-cta__link:focus-visible {
  background: transparent;
  color: var(--ink);
}

.section--contact {
  overflow: hidden;
  background: var(--ink);
}

.section--contact::before {
  position: absolute;
  top: 50%;
  right: -15vw;
  width: 65vw;
  min-width: 700px;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 106, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(201, 168, 106, 0.07);
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(50px, 10vw, 140px);
  align-items: end;
}

.contact-panel__copy h2 {
  max-width: 780px;
}

.contact-panel__copy > p:last-child {
  color: var(--muted);
}

.contact-panel__actions {
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  text-decoration: none;
}

.contact-detail span {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0 26px;
  border-top: 1px solid var(--line-light);
  background: #050b10;
}

.site-footer__glow {
  position: absolute;
  top: -260px;
  left: 18%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.07);
  filter: blur(90px);
  pointer-events: none;
}

.site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.9fr;
  gap: clamp(40px, 7vw, 100px);
}

.site-footer__identity p {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.5rem;
}

.site-footer h2,
.footer-widget__title {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-menu {
  display: grid;
  gap: 9px;
}

.footer-menu a,
.site-footer__contact a {
  color: var(--ivory-deep);
  text-decoration: none;
}

.footer-menu a:hover,
.site-footer__contact a:hover {
  color: var(--gold-light);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__contact address {
  max-width: 300px;
  margin-bottom: 12px;
  color: var(--muted);
}

.site-footer__contact .text-link {
  margin-top: 18px;
  color: var(--gold-light);
}

.site-footer__widgets {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: #88949b;
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__legal p {
  margin: 0;
}

/* Interior and editorial templates */
.interior-main,
.listing-main,
.error-main {
  min-height: 72vh;
  background: var(--ivory);
  color: #29343b;
}

.interior-hero,
.article-hero,
.listing-hero {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  background:
    radial-gradient(circle at 86% 20%, rgba(201, 168, 106, 0.17), transparent 27%),
    var(--ink-soft);
  color: var(--ivory);
}

.article-hero {
  min-height: min(780px, 88svh);
}

.interior-hero.interior-hero--compact {
  min-height: 350px;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
}

.interior-hero__media,
.article-hero__media,
.interior-hero__veil,
.article-hero__veil {
  position: absolute;
  inset: 0;
}

.interior-hero__media img,
.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
}

.interior-hero__veil,
.article-hero__veil {
  background: linear-gradient(0deg, rgba(5, 12, 18, 0.94), rgba(5, 12, 18, 0.18) 75%);
}

.interior-hero__inner,
.article-hero__inner {
  position: relative;
  z-index: 1;
}

.interior-hero h1,
.article-hero h1,
.listing-hero h1 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(3.3rem, 7vw, 7rem);
}

.interior-hero__intro,
.listing-hero__description {
  max-width: 680px;
  margin: 1.6rem 0 0;
  color: #c5cdd1;
  font-size: 1.12rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 3rem;
  color: #c4cdd2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold-light);
  text-decoration: none;
}

.entry--page,
.entry-layout {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.entry__content {
  color: #273239;
}

.prose {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.85;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose > *:last-child {
  margin-bottom: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 1.8em;
  color: var(--ink);
}

.prose h2 { font-size: clamp(2.2rem, 4.5vw, 3.7rem); }
.prose h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.prose a {
  color: #6c531f;
  text-decoration-thickness: 1px;
}

.prose blockquote {
  margin: 2.5rem 0;
  padding: 12px 0 12px 30px;
  border-left: 2px solid #967237;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.35;
}

.prose blockquote p {
  margin: 0;
}

.prose img,
.prose .wp-block-image {
  margin-block: 2.5rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
}

.prose th,
.prose td {
  padding: 12px;
  border: 1px solid #c9c1b6;
  text-align: left;
}

.prose th {
  background: #e8ded0;
  color: var(--ink);
}

.alignwide {
  width: min(1240px, calc(100vw - 40px));
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.article-hero__category a {
  color: inherit;
  text-decoration: none;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
  color: #d3d9dc;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.byline::before {
  margin-right: 16px;
  color: var(--gold);
  content: "·";
}

.entry-meta a {
  color: var(--gold-light);
  text-decoration: none;
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d6cdc0;
}

.entry-tags a {
  padding: 6px 10px;
  border: 1px solid #b9a98c;
  color: #4e3c19;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 2.5rem;
}

.page-links > * {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #b9a98c;
  text-decoration: none;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.post-navigation__item {
  padding: 24px;
  border-top: 1px solid #c8beb0;
}

.post-navigation__item--next {
  text-align: right;
}

.post-navigation__item > span {
  display: block;
  margin-bottom: 8px;
  color: #625334;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-navigation__item a {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-decoration: none;
}

.listing-hero {
  min-height: 470px;
}

.listing-search {
  max-width: 620px;
  margin-top: 2rem;
}

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

.journal-grid--archive .journal-card__title {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.navigation.pagination {
  margin-top: 56px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.page-numbers {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid #b8aa91;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.empty-state {
  max-width: 700px;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid #cbbfae;
  background: #ede4d7;
  color: #29343b;
}

.empty-state h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.empty-state .eyebrow {
  color: #725a2b;
}

.error-panel {
  position: relative;
  display: grid;
  min-height: 86svh;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 168, 106, 0.13), transparent 32%),
    var(--ink);
}

.error-panel__orb {
  position: absolute;
  top: 48%;
  left: 50%;
  color: rgba(234, 214, 167, 0.06);
  font-family: var(--display);
  font-size: min(42vw, 38rem);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.error-panel__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.error-panel__content .eyebrow {
  justify-content: center;
}

.error-panel__content h1 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.error-panel__content > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.error-panel__content .button-row {
  justify-content: center;
}

.error-panel__search {
  max-width: 560px;
  margin: 2.5rem auto 0;
}

/* Forms and comments */
.search-form {
  display: flex;
  width: 100%;
}

.search-form__label {
  flex: 1 1 auto;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #9d927f;
  border-radius: 0;
  background: #fffdf9;
  color: var(--ink);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.listing-hero .search-field,
.error-panel .search-field {
  border-color: rgba(247, 241, 231, 0.35);
  background: rgba(247, 241, 231, 0.09);
  color: var(--ivory);
}

.listing-hero .search-field::placeholder,
.error-panel .search-field::placeholder {
  color: #bec7cc;
}

.search-submit {
  flex: 0 0 auto;
}

.comments-wrap {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.comments-area {
  padding-top: 3rem;
  border-top: 1px solid #cec4b5;
}

.comments-title,
.comment-reply-title {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-list .children {
  padding-left: clamp(16px, 5vw, 48px);
  list-style: none;
}

.comment-body {
  margin-block: 24px;
  padding: 24px;
  border: 1px solid #cec4b5;
  background: #eee6da;
}

.comment-meta {
  font-size: 0.78rem;
}

.comment-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.comment-author img {
  border-radius: 50%;
}

.comment-author a,
.comment-metadata a,
.reply a {
  color: #5c481f;
}

.sticky {
  border-color: #8d6e34;
}

.bypostauthor > .comment-body {
  border-left: 3px solid #8d6e34;
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
  color: #59636a;
  font-size: 0.82rem;
}

.wp-caption-text {
  margin-top: 8px;
}

/* Progressive motion */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

/* Responsive */
@media (max-width: 1120px) {
  :root { --header-height: 78px; }

  .primary-menu-panel { gap: 14px; }
  .primary-menu { gap: 14px; }
  .primary-menu .menu-link { font-size: 0.68rem; }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

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

  .room-card:nth-child(2) {
    border-right: 0;
  }

  .room-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 16, 24, 0.2);
  }

}

@media (max-width: 920px) {
  .admin-bar .site-header { top: 46px; }

  .header-cta { display: none; }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .no-js .menu-toggle { display: none; }

  .primary-menu-panel {
    display: grid;
  }

  .js .primary-menu-panel {
    position: fixed;
    z-index: 1001;
    inset: 0;
    align-content: center;
    padding: calc(var(--header-height) + 28px) max(24px, 8vw) 42px;
    background:
      radial-gradient(circle at 85% 10%, rgba(201, 168, 106, 0.16), transparent 27%),
      rgba(7, 16, 24, 0.985);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 260ms ease, transform 260ms var(--ease);
  }

  .js .primary-menu-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-menu {
    display: grid;
    gap: 0;
  }

  .primary-menu .menu-item {
    border-bottom: 1px solid var(--line-light);
  }

  .primary-menu .menu-link {
    min-height: 60px;
    font-family: var(--display);
    font-size: clamp(1.65rem, 6vw, 2.7rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .primary-menu .menu-link::after { display: none; }

  .sub-menu {
    position: static;
    width: auto;
    padding: 0 0 10px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sub-menu .menu-item { border: 0; }
  .sub-menu .menu-link { min-height: 44px; font-family: var(--sans); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .primary-menu-panel .header-cta { display: inline-flex; justify-self: start; margin-top: 24px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__fact {
    display: none;
  }

  .section-header--row,
  .split,
  .events-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .events-layout { gap: 56px; }
  .section-header--row { gap: 26px; }
  .section-header--row > p { max-width: 620px; }

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

  .amenity-card:nth-child(2) { border-right: 0; }
  .amenity-card:nth-child(-n + 2) { border-bottom: 1px solid rgba(7, 16, 24, 0.14); }

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

  .journal-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__identity {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --wrap: min(100% - 32px, 1240px);
    --wrap-text: min(100% - 32px, 760px);
    --section-space: clamp(4.5rem, 18vw, 7rem);
  }

  .admin-bar .site-header { top: 46px; }

  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  h2 { font-size: clamp(2.5rem, 11vw, 4rem); }

  .hero__inner {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 7rem);
    padding-bottom: 7.5rem;
  }

  .hero__veil {
    background: linear-gradient(0deg, rgba(5, 12, 18, 0.93) 0%, rgba(5, 12, 18, 0.62) 62%, rgba(5, 12, 18, 0.48) 100%);
  }

  .hero__content h1 { margin-bottom: 1.2rem; }
  .hero__intro { font-size: 1rem; }
  .hero__scroll { left: auto; right: 18px; transform: none; }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    flex: 1 1 180px;
  }

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

  .room-card {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 16, 24, 0.2);
  }

  .room-card:nth-child(3) { border-bottom: 1px solid rgba(7, 16, 24, 0.2); }
  .room-card:last-child { border-bottom: 0; }
  .room-card__line { margin: 30px 0 46px; }

  .events-layout { grid-template-columns: minmax(0, 1fr); }
  .event-list__item { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .event-list__item h3 { font-size: 1.7rem; overflow-wrap: anywhere; }

  .amenity-card { min-height: 175px; padding: 20px 12px; }
  .amenity-card strong { font-size: clamp(1.85rem, 9vw, 3rem); }

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

  .gallery-item,
  .gallery-item--1,
  .gallery-item--2,
  .gallery-item--5,
  .gallery-item--6 {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item--1 { min-height: 430px; }

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

  .gallery-fact { min-height: 250px; }

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

  .journal-card:last-child:nth-child(odd) { grid-column: auto; }

  .contact-panel { gap: 42px; }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__identity { grid-column: auto; }

  .site-footer__legal {
    flex-direction: column;
    gap: 10px;
  }

  .interior-hero,
  .article-hero,
  .listing-hero {
    min-height: 500px;
    padding-bottom: 3.5rem;
  }

  .interior-hero.interior-hero--compact {
    min-height: 330px;
    padding-bottom: 2.5rem;
  }

  .interior-hero h1,
  .article-hero h1,
  .listing-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .breadcrumbs { margin-bottom: 2rem; }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-navigation__item--next { text-align: left; }

  .search-form {
    display: grid;
    gap: 8px;
  }

  .search-submit { width: 100%; }

  .alignwide,
  .alignfull {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    transform: none;
  }
}

@media (max-width: 480px) {
  .brand__place { display: none; }
  .brand__name { max-width: 180px; font-size: 1rem; }
  .custom-logo { max-width: 180px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-card,
  .amenity-card:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(7, 16, 24, 0.14); }
  .amenity-card:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root {
    --gold: #f2d28f;
    --gold-light: #ffe6ae;
    --muted: #d8dfe2;
    --line: rgba(255, 230, 174, 0.55);
    --line-light: rgba(255, 255, 255, 0.42);
  }
  .button--ghost { background: var(--ink); }
}

@media print {
  .site-header,
  .site-footer,
  .hero__scroll,
  .button-row,
  .post-navigation,
  .comments-area { display: none !important; }
  body,
  .interior-main,
  .listing-main { background: #fff; color: #111; }
  .interior-hero,
  .article-hero,
  .listing-hero { min-height: 0; padding: 2rem 0; background: #fff; color: #111; }
  h1, h2, h3, h4 { color: #111 !important; }
  a { color: #111; }
}
