/*
Theme Name: Hotel Amalfi Child
Theme URI: https://hotelamalfiroma.it/
Description: Custom child theme for Hotel Amalfi Roma, based on Kadence.
Author: Hotel Amalfi Roma
Template: kadence
Version: 3.5.9
Text Domain: hotel-amalfi-child
*/

:root {
  --ha-ink: #15130f;
  --ha-ink-soft: #26211c;
  --ha-ivory: #f4efe6;
  --ha-paper: #faf8f3;
  --ha-wine: #5a2228;
  --ha-wine-dark: #3f171c;
  --ha-gold: #b49a78;
  --ha-stone: #9c9489;
  --ha-white: #fffdf8;
  --ha-line: rgba(21,19,15,.14);
  --ha-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ha-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ha-max: 1460px;
  --ha-ease: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }
body.ha-home {
  margin: 0;
  background: var(--ha-paper);
  color: var(--ha-ink);
  font-family: var(--ha-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.ha-home * { box-sizing: border-box; }
body.ha-home a { color: inherit; text-decoration: none; }
body.ha-home img { display: block; width: 100%; max-width: 100%; }
body.ha-home button { font: inherit; }

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

.ha-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.ha-kicker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.ha-display {
  margin: 0;
  font-family: var(--ha-serif);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .94;
}

.ha-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .35s var(--ha-ease), color .35s var(--ha-ease), border-color .35s var(--ha-ease), transform .35s var(--ha-ease);
}
.ha-btn:hover { transform: translateY(-2px); }
.ha-btn--dark { color: var(--ha-ink); }
.ha-btn--dark:hover { color: var(--ha-white); background: var(--ha-ink); border-color: var(--ha-ink); }
.ha-btn--light { color: var(--ha-white); }
.ha-btn--light:hover { color: var(--ha-ink); background: var(--ha-white); border-color: var(--ha-white); }
.ha-btn--wine { color: var(--ha-white); background: var(--ha-wine); border-color: var(--ha-wine); }
.ha-btn--wine:hover { background: var(--ha-wine-dark); border-color: var(--ha-wine-dark); }

.ha-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ha-link::after { content: "↗"; font-size: 13px; transition: transform .3s var(--ha-ease); }
.ha-link:hover::after { transform: translate(3px,-3px); }

/* Solid luxury header: no contrast failures over imagery */
.ha-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(250,248,243,.97);
  color: var(--ha-ink);
  border-bottom: 1px solid rgba(21,19,15,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.ha-header__inner {
  width: min(calc(100% - 64px), var(--ha-max));
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.ha-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); }
.ha-nav a,
.ha-lang {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.ha-nav a { opacity: .8; transition: opacity .25s ease; }
.ha-nav a:hover { opacity: .45; }
.ha-brand { justify-self: center; text-align: center; line-height: 1; }
.ha-brand__name {
  display: block;
  font-family: var(--ha-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .12em;
}
.ha-brand__city {
  display: block;
  margin-top: 5px;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .4em;
  text-transform: uppercase;
  opacity: .7;
}
.ha-header__right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.ha-header__book { min-height: 42px; padding-inline: 17px; }
.ha-menu-toggle {
  display: none;
  border: 0;
  padding: 9px 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* Hero: image first, text on a controlled dark editorial panel */
.ha-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  background: #1d1a17;
  overflow: hidden;
}
.ha-hero__media,
.ha-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ha-hero__media img {
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.012);
  animation: haHero 13s ease-out both;
}
@keyframes haHero { from { transform: scale(1.05); } to { transform: scale(1.012); } }
.ha-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,7,.18), transparent 52%);
  pointer-events: none;
}
.ha-hero__layout {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(38px, 6vh, 72px);
}
.ha-hero__panel {
  width: min(690px, 62vw);
  padding: clamp(34px, 4.7vw, 68px);
  color: var(--ha-white);
  background: rgba(18,16,14,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}
.ha-hero__panel h1 {
  margin-top: 18px;
  font-size: clamp(62px, 6.6vw, 108px);
  text-wrap: balance;
}
.ha-hero__panel p {
  max-width: 560px;
  margin: 25px 0 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}
.ha-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.ha-hero__signature {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 34px;
  display: grid;
  gap: 8px;
  text-align: right;
  color: var(--ha-white);
}
.ha-hero__signature span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,.75);
}

/* Brand manifesto */
.ha-manifesto {
  padding: clamp(110px, 12vw, 185px) 0;
  background: var(--ha-paper);
}
.ha-manifesto__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(54px, 8vw, 130px);
  align-items: center;
}
.ha-manifesto__image {
  aspect-ratio: 4 / 4.1;
  overflow: hidden;
  background: #ddd4c6;
}
.ha-manifesto__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ha-manifesto__copy h2 {
  max-width: 760px;
  margin-top: 19px;
  font-size: clamp(58px, 5.8vw, 94px);
}
.ha-manifesto__copy p {
  max-width: 580px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(21,19,15,.68);
}
.ha-manifesto__quote {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--ha-line);
  font-family: var(--ha-serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--ha-wine);
}

/* General section heading */
.ha-section-head {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}
.ha-section-head h2 { margin-top: 18px; font-size: clamp(54px, 5.2vw, 86px); }
.ha-section-head p {
  max-width: 580px;
  margin: 0 0 5px auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(21,19,15,.64);
}

/* Rooms: strict alignment, no text on photos */
.ha-rooms {
  padding: 0 0 clamp(120px, 12vw, 185px);
  background: var(--ha-paper);
}
.ha-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.ha-room-card {
  min-width: 0;
  background: transparent;
}
.ha-room-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ha-paper);
}
.ha-room-card__media img { object-position: center; }
.ha-room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ha-ease);
}
.ha-room-card--balcony .ha-room-card__media img { object-position: center 38%; }
.ha-room-card:hover .ha-room-card__media img { transform: scale(1.025); }
.ha-room-card__body {
  padding: 10px 2px 0;
  border-top: 0;
}
.ha-room-card__eyebrow {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(21,19,15,.45);
}
.ha-room-card h3 {
  margin: 0;
  font-family: var(--ha-serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
}
.ha-room-card p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(21,19,15,.58);
}
.ha-rooms__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--ha-line);
}
.ha-rooms__footer p { margin: 0; max-width: 700px; font-size: 13px; line-height: 1.7; color: rgba(21,19,15,.56); }

/* Location: image + solid panel, no overlay */
.ha-location {
  background: var(--ha-ink);
  color: var(--ha-white);
}
.ha-location__grid {
  width: min(100%, 1800px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  min-height: 760px;
}
.ha-location__media { min-height: 760px; overflow: hidden; }
.ha-location__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ha-location__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 88px);
  background: var(--ha-ink);
}
.ha-location__copy h2 { margin-top: 18px; font-size: clamp(54px, 5vw, 82px); }
.ha-location__copy > p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
}
.ha-location__facts {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.ha-location__fact {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ha-location__fact strong { font-family: var(--ha-serif); font-size: 25px; font-weight: 500; }
.ha-location__fact span { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* Suites: luxury editorial feature */
.ha-suites {
  padding: clamp(120px, 12vw, 185px) 0;
  background: var(--ha-ivory);
}
.ha-suite-feature {
  background: var(--ha-white);
  border: 1px solid rgba(21,19,15,.08);
}
.ha-suite-feature__media {
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
  background: #dad2c8;
}
.ha-suite-feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.ha-suite-feature__body {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 70px;
  padding: clamp(34px, 4vw, 58px);
}
.ha-suite-feature__title h3 {
  margin: 14px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 500;
  line-height: .96;
}
.ha-suite-feature__details p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(21,19,15,.64);
}
.ha-suite-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 24px;
  margin: 30px 0 34px;
  padding-top: 22px;
  border-top: 1px solid var(--ha-line);
}
.ha-suite-meta span { font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: rgba(21,19,15,.56); }
.ha-coming {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  margin-top: 18px;
  min-height: 320px;
  background: var(--ha-wine);
  color: var(--ha-white);
}
.ha-coming__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4vw, 56px); }
.ha-coming__copy h3 {
  margin: 12px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 500;
  line-height: 1;
}
.ha-coming__copy p { margin: 16px 0 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.ha-coming__media { overflow: hidden; min-height: 320px; }
.ha-coming__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(.96); }

/* Terrace: image + color panel */
.ha-terrace { background: var(--ha-wine); color: var(--ha-white); }
.ha-terrace__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 700px;
}
.ha-terrace__media { min-height: 700px; overflow: hidden; }
.ha-terrace__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ha-terrace__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
  background: var(--ha-wine);
}
.ha-terrace__copy h2 { margin-top: 18px; font-size: clamp(58px, 5.4vw, 88px); }
.ha-terrace__copy p { margin: 25px 0 0; max-width: 480px; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.72); }

/* Breakfast & bar: aligned modules, text below */
.ha-experience {
  padding: clamp(120px, 12vw, 185px) 0;
  background: var(--ha-paper);
}
.ha-experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ha-experience-card { min-width: 0; }
.ha-experience-card__media { aspect-ratio: 3 / 2; overflow: hidden; background: #ddd5ca; }
.ha-experience-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ha-experience-card__body { padding: 24px 2px 0; }
.ha-experience-card__body h3 { margin: 9px 0 0; font-family: var(--ha-serif); font-size: clamp(40px, 4vw, 62px); font-weight: 500; line-height: .98; }
.ha-experience-card__body p { max-width: 520px; margin: 14px 0 0; font-size: 14px; line-height: 1.7; color: rgba(21,19,15,.6); }

/* Heritage */
.ha-heritage {
  padding: clamp(120px, 12vw, 185px) 0;
  background: var(--ha-ink-soft);
  color: var(--ha-white);
}
.ha-heritage .ha-section-head p { color: rgba(255,255,255,.65); }
.ha-heritage__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 20px;
  align-items: stretch;
}
.ha-heritage__figure { margin: 0; overflow: hidden; background: #171412; }
.ha-heritage__figure--portrait { aspect-ratio: 4 / 5; }
.ha-heritage__figure--wide { aspect-ratio: 16 / 10; align-self: center; }
.ha-heritage__figure img { width: 100%; height: 100%; object-fit: cover; }
.ha-heritage__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ha-heritage__footer p { margin: 0; max-width: 760px; font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.68); }
.ha-heritage__badge { width: 92px; }
.ha-heritage__badge img { width: 100%; height: auto; }

/* Personal service */
.ha-service {
  padding: clamp(110px, 11vw, 170px) 0;
  background: var(--ha-ivory);
}
.ha-service__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.ha-service h2 { margin-top: 18px; max-width: 860px; font-size: clamp(58px, 5.6vw, 92px); }
.ha-service__copy { padding-top: 44px; }
.ha-service__copy p { margin: 0; font-size: 17px; line-height: 1.75; color: rgba(21,19,15,.64); }
.ha-service__list { list-style: none; padding: 0; margin: 34px 0 0; border-top: 1px solid var(--ha-line); }
.ha-service__list li { padding: 15px 0; border-bottom: 1px solid var(--ha-line); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }

/* Final: no image overlay, pure luxury close */
.ha-final {
  padding: clamp(105px, 10vw, 155px) 0;
  background: var(--ha-wine-dark);
  color: var(--ha-white);
  text-align: center;
}
.ha-final__copy { max-width: 980px; margin-inline: auto; }
.ha-final__copy h2 { margin-top: 16px; font-size: clamp(66px, 7vw, 112px); }
.ha-final__copy p { max-width: 620px; margin: 26px auto 34px; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.74); }

/* Footer */
.ha-footer { padding: 66px 0 32px; background: #11100e; color: rgba(255,255,255,.84); }
.ha-footer__top { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 70px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.12); }
.ha-footer__brand { font-family: var(--ha-serif); font-size: 36px; letter-spacing: .06em; }
.ha-footer__label { margin-bottom: 16px; font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.ha-footer p,
.ha-footer a { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,.68); }
.ha-footer a:hover { color: var(--ha-white); }
.ha-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; font-size: 9px; line-height: 1.5; color: rgba(255,255,255,.38); }

/* Mobile */
.ha-mobile-book {
  display: none;
  position: fixed;
  z-index: 88;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  background: var(--ha-wine);
  color: var(--ha-white);
  box-shadow: 0 14px 40px rgba(0,0,0,.24);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ha-drawer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  background: var(--ha-ink);
  color: var(--ha-white);
}
.ha-drawer.is-open { display: flex; }
.ha-drawer__inner { width: 100%; min-height: 100%; padding: 28px; display: flex; flex-direction: column; }
.ha-drawer__top { display: flex; justify-content: space-between; align-items: center; }
.ha-drawer__close { border: 0; background: transparent; color: var(--ha-white); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }
.ha-drawer nav { margin: auto 0; display: grid; }
.ha-drawer nav a { padding: 7px 0; font-family: var(--ha-serif); font-size: clamp(46px, 13vw, 74px); line-height: 1; }
.ha-drawer__book { margin-top: auto; }

/* Reveal */
[data-ha-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s var(--ha-ease), transform .85s var(--ha-ease);
}
[data-ha-reveal].is-visible { opacity: 1; transform: none; }
[data-ha-reveal="image"] { transform: translateY(16px) scale(.992); }
[data-ha-reveal="image"].is-visible { transform: none; }

@media (max-width: 1180px) {
  .ha-nav { display: none; }
  .ha-menu-toggle { display: inline-block; }
  .ha-hero__panel { width: min(720px, 72vw); }
  .ha-location__grid { grid-template-columns: 1.15fr .85fr; }
  .ha-suite-feature__body { gap: 44px; }
}

@media (max-width: 840px) {
  .ha-shell { width: min(calc(100% - 32px), var(--ha-max)); }
  .ha-header__inner { width: calc(100% - 32px); height: 72px; gap: 12px; }
  .ha-brand__name { font-size: 19px; }
  .ha-brand__city { font-size: 6px; }
  .ha-header__right .ha-lang,
  .ha-header__right .ha-header__book { display: none; }
  .ha-mobile-book { display: flex; }

  .ha-hero { min-height: calc(100svh - 72px); }
  .ha-hero__layout { min-height: calc(100svh - 72px); align-items: flex-end; padding-bottom: 18px; }
  .ha-hero__media img { object-position: 58% center; }
  .ha-hero__panel { width: calc(100% - 16px); margin-left: 8px; padding: 28px 24px 30px; background: rgba(18,16,14,.93); }
  .ha-hero__panel h1 { font-size: clamp(56px, 16vw, 82px); }
  .ha-hero__signature { display: none; }
  .ha-hero__actions { display: grid; grid-template-columns: 1fr; }

  .ha-manifesto__grid,
  .ha-section-head,
  .ha-suite-feature__body,
  .ha-service__grid,
  .ha-footer__top { grid-template-columns: 1fr; }
  .ha-manifesto__image { order: -1; }
  .ha-manifesto__copy h2,
  .ha-section-head h2,
  .ha-service h2 { font-size: clamp(52px, 14vw, 76px); }
  .ha-section-head p { margin-left: 0; }

  .ha-room-grid { grid-template-columns: 1fr; gap: 42px; }
  .ha-room-card__media { aspect-ratio: 4 / 4.8; }
  .ha-rooms__footer { align-items: flex-start; flex-direction: column; }

  .ha-location__grid,
  .ha-terrace__grid,
  .ha-coming { grid-template-columns: 1fr; min-height: 0; }
  .ha-location__media,
  .ha-terrace__media { min-height: 72vw; }
  .ha-location__copy,
  .ha-terrace__copy { padding: 46px 24px 54px; }
  .ha-location__copy h2,
  .ha-terrace__copy h2 { font-size: clamp(52px, 14vw, 76px); }

  .ha-suite-feature__media { aspect-ratio: 4 / 3; }
  .ha-suite-feature__body { padding: 28px 22px 32px; }
  .ha-suite-feature__title h3 { font-size: clamp(44px, 12vw, 64px); }
  .ha-coming__media { min-height: 64vw; order: -1; }

  .ha-experience__grid,
  .ha-heritage__grid { grid-template-columns: 1fr; gap: 44px; }
  .ha-experience-card__media { aspect-ratio: 4 / 3; }
  .ha-heritage__figure--portrait,
  .ha-heritage__figure--wide { aspect-ratio: 4 / 3; }
  .ha-heritage__footer { grid-template-columns: 1fr; }
  .ha-heritage__badge { width: 76px; }

  .ha-service__copy { padding-top: 0; }
  .ha-footer__top { gap: 30px; }
  .ha-footer__bottom { flex-direction: column; }
  .ha-footer { padding-bottom: 92px; }
}

@media (max-width: 460px) {
  .ha-hero__panel p { font-size: 14px; }
  .ha-suite-meta { grid-template-columns: 1fr; }
  .ha-location__fact { grid-template-columns: 82px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ha-hero__media img { animation: none; }
  [data-ha-reveal] { opacity: 1; transform: none; transition: none; }
  .ha-room-card__media img { transition: none; }
}


/* =========================================================
   V3 CINEMATIC MOTION SYSTEM — luxury opening & transitions
   ========================================================= */

/* No-JS safety: cinematic layer never blocks the site unless JS is active. */
.ha-cinematic-intro { display: none; }

html.ha-js:not(.ha-intro-seen) .ha-cinematic-intro {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #11100e;
  color: var(--ha-white);
  transform: translate3d(0,0,0);
  transition: transform 1.05s cubic-bezier(.76,0,.24,1), box-shadow 1.05s ease;
  will-change: transform;
}

.ha-cinematic-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    radial-gradient(circle at 50% 42%, rgba(180,154,120,.18), transparent 34%),
    linear-gradient(115deg, rgba(255,255,255,.025), transparent 34%, rgba(255,255,255,.018) 62%, transparent);
  pointer-events: none;
}

.ha-cinematic-intro::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(180,154,120,.34), transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 1.15s cubic-bezier(.22,.8,.2,1) .25s;
}

.ha-cinematic-intro.is-active::after { transform: scaleY(1); }
.ha-cinematic-intro.is-leaving {
  transform: translate3d(0,-100%,0);
  box-shadow: 0 38px 90px rgba(0,0,0,.3);
}

.ha-cinematic-intro__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 980px);
  text-align: center;
}

.ha-cinematic-intro__eyebrow {
  margin-bottom: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease .22s, transform .8s var(--ha-ease) .22s;
}

.ha-cinematic-intro__brand {
  font-family: var(--ha-serif);
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: .11em;
  opacity: 0;
  transform: translateY(24px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity .5s ease .34s,
    transform 1s cubic-bezier(.2,.72,.2,1) .34s,
    clip-path 1s cubic-bezier(.2,.72,.2,1) .34s;
}

.ha-cinematic-intro__brand span { color: var(--ha-gold); }

.ha-cinematic-intro__rule {
  width: min(390px, 62vw);
  height: 1px;
  margin: 27px auto 18px;
  overflow: hidden;
  background: rgba(255,255,255,.11);
}

.ha-cinematic-intro__rule i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ha-gold);
  transform: translateX(-102%);
  transition: transform 1.05s cubic-bezier(.2,.72,.2,1) .65s;
}

.ha-cinematic-intro__city {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .7s ease .86s, transform .7s var(--ha-ease) .86s;
}

.ha-cinematic-intro.is-active .ha-cinematic-intro__eyebrow,
.ha-cinematic-intro.is-active .ha-cinematic-intro__brand,
.ha-cinematic-intro.is-active .ha-cinematic-intro__city {
  opacity: 1;
  transform: none;
}

.ha-cinematic-intro.is-active .ha-cinematic-intro__brand { clip-path: inset(0 0 0 0); }
.ha-cinematic-intro.is-active .ha-cinematic-intro__rule i { transform: translateX(0); }

.ha-cinematic-intro__skip {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 24px;
  border: 0;
  padding: 10px 0;
  background: transparent;
  color: rgba(255,255,255,.52);
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.ha-cinematic-intro__skip:hover,
.ha-cinematic-intro__skip:focus-visible { color: var(--ha-white); }

body.ha-intro-lock { overflow: hidden; }

/* Coordinated hero reveal behind the opening curtain. */
html.ha-js:not(.ha-intro-seen) .ha-header,
html.ha-js:not(.ha-intro-seen) .ha-hero__panel,
html.ha-js:not(.ha-intro-seen) .ha-hero__signature {
  opacity: 0;
}

html.ha-js:not(.ha-intro-seen) .ha-header { transform: translateY(-16px); }
html.ha-js:not(.ha-intro-seen) .ha-hero__panel { transform: translateY(38px); }
html.ha-js:not(.ha-intro-seen) .ha-hero__signature { transform: translateY(14px); }

.ha-hero__media {
  will-change: transform;
  transform: translate3d(0,0,0);
}

.ha-hero__media img {
  animation: none !important;
  transform: scale(1.012);
  transition: transform 2.2s cubic-bezier(.2,.72,.2,1);
}

html.ha-js:not(.ha-intro-seen) .ha-hero__media img { transform: scale(1.085); }

html.ha-js.ha-intro-revealing .ha-header,
html.ha-js.ha-intro-complete .ha-header,
html.ha-js.ha-intro-revealing .ha-hero__panel,
html.ha-js.ha-intro-complete .ha-hero__panel,
html.ha-js.ha-intro-revealing .ha-hero__signature,
html.ha-js.ha-intro-complete .ha-hero__signature {
  opacity: 1;
  transform: none;
}

html.ha-js.ha-intro-revealing .ha-header,
html.ha-js.ha-intro-complete .ha-header {
  transition: opacity .8s ease .18s, transform .9s var(--ha-ease) .18s,
              background .35s ease, border-color .35s ease;
}

html.ha-js.ha-intro-revealing .ha-hero__panel,
html.ha-js.ha-intro-complete .ha-hero__panel {
  transition: opacity 1s ease .28s, transform 1.1s var(--ha-ease) .28s;
}

html.ha-js.ha-intro-revealing .ha-hero__signature,
html.ha-js.ha-intro-complete .ha-hero__signature {
  transition: opacity .9s ease .68s, transform 1s var(--ha-ease) .68s;
}

html.ha-js.ha-intro-revealing .ha-hero__media img,
html.ha-js.ha-intro-complete .ha-hero__media img { transform: scale(1.012); }

/* More editorial scroll motion: soft, not theatrical. */
[data-ha-reveal] {
  transition-duration: 1.05s;
  transition-timing-function: cubic-bezier(.2,.72,.2,1);
  transition-delay: var(--ha-delay, 0ms);
}

.ha-room-grid .ha-room-card:nth-child(2) { --ha-delay: 90ms; }
.ha-room-grid .ha-room-card:nth-child(3) { --ha-delay: 180ms; }
.ha-experience__grid .ha-experience-card:nth-child(2) { --ha-delay: 110ms; }
.ha-heritage__grid .ha-heritage__figure:nth-child(2) { --ha-delay: 120ms; }

/* Drawer now moves like a premium full-screen navigation instead of popping in. */
.ha-drawer {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .42s ease, transform .52s var(--ha-ease), visibility .52s;
}
.ha-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.ha-drawer nav a {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .65s var(--ha-ease);
}
.ha-drawer.is-open nav a { opacity: 1; transform: none; }
.ha-drawer.is-open nav a:nth-child(1) { transition-delay: .08s; }
.ha-drawer.is-open nav a:nth-child(2) { transition-delay: .13s; }
.ha-drawer.is-open nav a:nth-child(3) { transition-delay: .18s; }
.ha-drawer.is-open nav a:nth-child(4) { transition-delay: .23s; }
.ha-drawer.is-open nav a:nth-child(5) { transition-delay: .28s; }

@media (max-width: 820px) {
  .ha-cinematic-intro__brand {
    font-size: clamp(42px, 13vw, 66px);
    letter-spacing: .08em;
  }
  .ha-cinematic-intro__eyebrow { font-size: 8px; letter-spacing: .22em; }
  .ha-cinematic-intro__skip { right: 20px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .ha-cinematic-intro { display: none !important; }
  html.ha-js .ha-header,
  html.ha-js .ha-hero__panel,
  html.ha-js .ha-hero__signature { opacity: 1 !important; transform: none !important; }
  .ha-hero__media,
  .ha-hero__media img { transform: none !important; transition: none !important; }
}


/* =========================================================
   V4 — INTERNATIONAL HERITAGE / ROMAN EXPERIENCE REFINEMENT
   ========================================================= */

/* Kadence can set heading colors directly. The custom homepage must inherit
   the color of its editorial section so contrast is always intentional. */
body.ha-home .ha-display,
body.ha-home .ha-hero__panel h1,
body.ha-home .ha-location h2,
body.ha-home .ha-terrace h2,
body.ha-home .ha-heritage h2,
body.ha-home .ha-final h2,
body.ha-home .ha-coming h3,
body.ha-home .ha-drawer a {
  color: inherit !important;
}

body.ha-home .ha-hero__panel,
body.ha-home .ha-hero__panel .ha-kicker,
body.ha-home .ha-hero__panel h1,
body.ha-home .ha-hero__panel p,
body.ha-home .ha-hero__panel a {
  color: var(--ha-white) !important;
}

.ha-hero__panel {
  background:
    linear-gradient(145deg, rgba(18,16,14,.965), rgba(31,25,21,.94));
  border-left: 1px solid rgba(180,154,120,.55);
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
}
.ha-hero__panel h1 {
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.ha-hero__panel .ha-kicker { color: rgba(255,255,255,.9) !important; }
.ha-hero__panel p { color: rgba(255,255,255,.82) !important; }

/* Five-room editorial grid: three aligned cards, then two aligned wide cards. */
.ha-room-grid--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 52px 20px;
}
.ha-room-grid--five .ha-room-card { grid-column: span 2; }
.ha-room-grid--five .ha-room-card--wide { grid-column: span 3; }
.ha-room-grid--five .ha-room-card--wide .ha-room-card__media { aspect-ratio: 16 / 10; }
.ha-room-grid--five .ha-room-card:nth-child(4) { --ha-delay: 90ms; }
.ha-room-grid--five .ha-room-card:nth-child(5) { --ha-delay: 180ms; }

/* Roman rhythm — a luxury editorial pause, no decorative photography required. */
.ha-roman-rhythm {
  padding: clamp(115px, 11vw, 170px) 0;
  background: #ede5d9;
  color: var(--ha-ink);
}
.ha-roman-rhythm__head {
  display: grid;
  grid-template-columns: 1.05fr .72fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 66px;
}
.ha-roman-rhythm__head h2 {
  max-width: 930px;
  margin-top: 18px;
  font-size: clamp(58px, 5.8vw, 94px);
}
.ha-roman-rhythm__head > p {
  max-width: 520px;
  margin: 0 0 7px auto;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(21,19,15,.64);
}
.ha-roman-rhythm__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-top: 1px solid rgba(21,19,15,.22);
}
.ha-roman-rhythm__item {
  min-height: 260px;
  padding: 28px 30px 12px 0;
  border-right: 1px solid rgba(21,19,15,.14);
}
.ha-roman-rhythm__item + .ha-roman-rhythm__item { padding-left: 30px; }
.ha-roman-rhythm__item:last-child { border-right: 0; }
.ha-roman-rhythm__time {
  font-family: var(--ha-serif);
  font-size: clamp(42px, 4vw, 62px);
  line-height: .9;
  color: var(--ha-wine);
}
.ha-roman-rhythm__label {
  margin-top: 21px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ha-roman-rhythm__item p {
  margin: 22px 0 0;
  max-width: 285px;
  font-size: 13px;
  line-height: 1.72;
  color: rgba(21,19,15,.62);
}

/* Heritage V4 — images are no longer forced into mismatched portrait/wide boxes. */
.ha-heritage--v4 {
  padding: clamp(120px, 12vw, 190px) 0;
  overflow: hidden;
  background: #1b1815;
}
.ha-heritage-v4__intro {
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: end;
  margin-bottom: 60px;
}
.ha-heritage-v4__intro h2 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(60px, 6vw, 100px);
}
.ha-heritage-v4__copy {
  max-width: 590px;
  justify-self: end;
}
.ha-heritage-v4__copy > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,.72);
}
.ha-heritage-v4__statement {
  margin-top: 34px !important;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-family: var(--ha-serif);
  font-size: clamp(28px, 2.5vw, 40px) !important;
  line-height: 1.15 !important;
  color: var(--ha-white) !important;
}
.ha-heritage-v4__hero {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: #0e0d0c;
}
.ha-heritage-v4__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 1.4s var(--ha-ease);
}
.ha-heritage-v4__hero:hover img { transform: scale(1.018); }
.ha-heritage-v4__hero figcaption {
  position: absolute;
  left: 24px;
  bottom: 21px;
  padding: 9px 12px;
  background: rgba(14,13,12,.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

.ha-master-line {
  width: 100%;
  margin: 72px 0;
  padding: 20px 0 18px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: var(--ha-white);
}
.ha-master-line__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: haMasterLine 34s linear infinite;
}
.ha-master-line__track span {
  font-family: var(--ha-serif);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: .035em;
  color: rgba(255,255,255,.78);
}
.ha-master-line__track i {
  font-style: normal;
  font-size: 18px;
  color: var(--ha-gold);
}
@keyframes haMasterLine {
  to { transform: translateX(-50%); }
}
.ha-master-line:hover .ha-master-line__track { animation-play-state: paused; }

.ha-heritage-v4__gallery {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  grid-template-rows: auto auto;
  gap: 18px 20px;
  align-items: stretch;
}
.ha-heritage-v4__gallery figure {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ha-heritage-v4__gallery figure:nth-child(1) { grid-column: 1; grid-row: 1; }
.ha-heritage-v4__gallery figure:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.ha-heritage-v4__gallery figure:nth-child(3) { grid-column: 1; grid-row: 2; }
.ha-heritage-v4__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: transparent;
}
.ha-heritage-v4__gallery figure:nth-child(2) .ha-heritage-v4__media { aspect-ratio: 4 / 5.25; }
.ha-heritage-v4__gallery figure:nth-child(3) .ha-heritage-v4__media { aspect-ratio: 16 / 10; }
.ha-heritage-v4__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .9s var(--ha-ease);
}
.ha-heritage-v4__gallery figure:nth-child(1) .ha-heritage-v4__media img { object-position: center 42%; }
.ha-heritage-v4__gallery figure:nth-child(2) .ha-heritage-v4__media img { object-position: center 22%; }
.ha-heritage-v4__gallery figure:nth-child(3) .ha-heritage-v4__media img { object-position: center; }
.ha-heritage-v4__gallery figure:hover img { transform: scale(1.025); }
.ha-heritage-v4__gallery figcaption {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-top: 16px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.ha-heritage-v4__gallery figcaption span {
  color: var(--ha-gold);
}
.ha-heritage-v4__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ha-heritage-v4__footer p {
  margin: 0;
  max-width: 840px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.66);
}
.ha-heritage--v4 .ha-heritage__badge { width: 82px; opacity: .9; }

/* Dark sections: guarantee all editorial headings remain legible. */
.ha-location,
.ha-terrace,
.ha-heritage,
.ha-final,
.ha-coming { color: var(--ha-white); }
.ha-location .ha-kicker,
.ha-terrace .ha-kicker,
.ha-heritage .ha-kicker,
.ha-final .ha-kicker,
.ha-coming .ha-kicker { color: rgba(255,255,255,.84); }

/* Top-brand finishing details */
.ha-manifesto__quote {
  font-size: clamp(24px, 2.5vw, 34px);
}
.ha-service__list li::before {
  content: "—";
  margin-right: 11px;
  color: var(--ha-gold);
}
.ha-final {
  background:
    radial-gradient(circle at 50% -40%, rgba(180,154,120,.18), transparent 42%),
    var(--ha-wine-dark);
}
.ha-final__copy h2 { max-width: 1100px; margin-inline: auto; }

@media (max-width: 980px) {
  .ha-room-grid--five { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ha-room-grid--five .ha-room-card,
  .ha-room-grid--five .ha-room-card--wide { grid-column: auto; }
  .ha-room-grid--five .ha-room-card--wide .ha-room-card__media { aspect-ratio: 4 / 5; }
  .ha-room-grid--five .ha-room-card:last-child { grid-column: 1 / -1; }
  .ha-room-grid--five .ha-room-card:last-child .ha-room-card__media { aspect-ratio: 16 / 9; }

  .ha-roman-rhythm__head,
  .ha-heritage-v4__intro { grid-template-columns: 1fr; gap: 34px; }
  .ha-roman-rhythm__head > p,
  .ha-heritage-v4__copy { margin-left: 0; justify-self: start; }
  .ha-roman-rhythm__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ha-roman-rhythm__item:nth-child(2) { border-right: 0; }
  .ha-roman-rhythm__item:nth-child(3),
  .ha-roman-rhythm__item:nth-child(4) { border-top: 1px solid rgba(21,19,15,.14); }
  .ha-heritage-v4__gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ha-heritage-v4__gallery figure:nth-child(1),
  .ha-heritage-v4__gallery figure:nth-child(2),
  .ha-heritage-v4__gallery figure:nth-child(3) { grid-column: auto; grid-row: auto; }
  .ha-heritage-v4__gallery figure:nth-child(2) .ha-heritage-v4__media,
  .ha-heritage-v4__gallery figure:nth-child(3) .ha-heritage-v4__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .ha-room-grid--five { grid-template-columns: 1fr; gap: 42px; }
  .ha-room-grid--five .ha-room-card:last-child { grid-column: auto; }
  .ha-room-grid--five .ha-room-card:last-child .ha-room-card__media,
  .ha-room-grid--five .ha-room-card--wide .ha-room-card__media { aspect-ratio: 4 / 4.8; }

  .ha-roman-rhythm__head h2,
  .ha-heritage-v4__intro h2 { font-size: clamp(52px, 14vw, 76px); }
  .ha-roman-rhythm__grid { grid-template-columns: 1fr; }
  .ha-roman-rhythm__item,
  .ha-roman-rhythm__item + .ha-roman-rhythm__item {
    min-height: 0;
    padding: 25px 0 28px;
    border-right: 0;
    border-top: 1px solid rgba(21,19,15,.14);
  }
  .ha-roman-rhythm__grid { border-top: 0; }
  .ha-heritage-v4__hero { aspect-ratio: 4 / 5; }
  .ha-heritage-v4__hero img { object-position: center; }
  .ha-master-line { margin: 54px 0; }
  .ha-master-line__track { animation-duration: 28s; }
  .ha-heritage-v4__gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 38px; }
  .ha-heritage-v4__gallery figure:nth-child(1),
  .ha-heritage-v4__gallery figure:nth-child(2),
  .ha-heritage-v4__gallery figure:nth-child(3) { grid-column: auto; grid-row: auto; }
  .ha-heritage-v4__gallery figure:nth-child(2) .ha-heritage-v4__media,
  .ha-heritage-v4__gallery figure:nth-child(3) .ha-heritage-v4__media,
  .ha-heritage-v4__media { aspect-ratio: 4 / 3; }
  .ha-heritage-v4__footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ha-master-line__track { animation: none; }
}


/* =========================================================
   V6 — STAY PAGE
   Unified Rooms + Signature Stays architecture
   ========================================================= */

.ha-stay-page {
  background: var(--ha-paper);
  color: var(--ha-ink);
}

.ha-stay-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ha-white);
  background: #171411;
}
.ha-stay-hero__media,
.ha-stay-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ha-stay-hero__media img {
  object-fit: cover;
  object-position: center 50%;
}
.ha-stay-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,9,.12) 10%, rgba(12,11,9,.68) 100%);
}
.ha-stay-hero__copy {
  position: relative;
  z-index: 2;
  padding: 150px 0 72px;
  max-width: 980px;
}
.ha-stay-hero h1 {
  margin-top: 18px;
  font-size: clamp(68px, 8.5vw, 136px);
}
.ha-stay-hero p {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.84);
}

.ha-stay-intro {
  padding: clamp(100px, 11vw, 165px) 0 clamp(80px, 9vw, 135px);
}
.ha-stay-intro__grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
}
.ha-stay-intro h2 {
  margin-top: 18px;
  font-size: clamp(58px, 6vw, 96px);
}
.ha-stay-intro p {
  max-width: 540px;
  margin: 0 0 7px auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(21,19,15,.64);
}

.ha-stay-section {
  padding: 0 0 clamp(120px, 12vw, 185px);
}
.ha-stay-section__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--ha-line);
  margin-bottom: 44px;
}
.ha-stay-section__head h2 {
  margin-top: 14px;
  font-size: clamp(50px, 5vw, 82px);
}
.ha-stay-section__head p {
  max-width: 560px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(21,19,15,.6);
}

.ha-stay-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 52px 20px;
}
.ha-stay-card {
  grid-column: span 4;
}
.ha-stay-card--wide {
  grid-column: span 6;
}
.ha-stay-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ha-paper);
}
.ha-stay-card--wide .ha-stay-card__media {
  aspect-ratio: 16 / 10;
}
.ha-stay-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ha-ease);
}
.ha-stay-card--balcony .ha-stay-card__media img {
  object-position: center 38%;
}
.ha-stay-card:hover img {
  transform: scale(1.025);
}
.ha-stay-card__body {
  padding-top: 20px;
}
.ha-stay-card__body h3 {
  margin: 7px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
}
.ha-stay-card__body p {
  max-width: 500px;
  margin: 13px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(21,19,15,.58);
}

.ha-signature {
  padding: clamp(120px, 12vw, 185px) 0;
  background: var(--ha-ink);
  color: var(--ha-white);
}
.ha-signature__intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.ha-signature__intro h2 {
  margin-top: 18px;
  font-size: clamp(58px, 6vw, 98px);
}
.ha-signature__intro p {
  max-width: 530px;
  margin: 0 0 6px auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.68);
}
.ha-signature__feature {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  min-height: 730px;
  background: #211d19;
}
.ha-signature__media {
  min-height: 730px;
  overflow: hidden;
}
.ha-signature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ha-signature__copy {
  padding: clamp(42px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ha-signature__copy h3 {
  margin: 12px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(46px, 4.6vw, 76px);
  font-weight: 500;
  line-height: .98;
}
.ha-signature__copy p {
  margin: 22px 0 0;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
}
.ha-signature__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 34px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.ha-signature__meta span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.ha-stay-coming {
  margin-top: 18px;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  color: var(--ha-white);
}
.ha-stay-coming img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) brightness(.6);
}
.ha-stay-coming::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,14,12,.82), rgba(18,14,12,.18));
}
.ha-stay-coming__copy {
  position: relative;
  z-index: 2;
  padding: 58px;
  max-width: 720px;
}
.ha-stay-coming__copy h3 {
  margin: 12px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(42px, 4.6vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.ha-stay-final {
  padding: clamp(105px, 10vw, 155px) 0;
  text-align: center;
  background: var(--ha-wine-dark);
  color: var(--ha-white);
}
.ha-stay-final h2 {
  max-width: 950px;
  margin: 16px auto 0;
  font-size: clamp(58px, 7vw, 110px);
}
.ha-stay-final p {
  max-width: 580px;
  margin: 25px auto 32px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
}

@media (max-width: 980px) {
  .ha-stay-intro__grid,
  .ha-signature__intro,
  .ha-signature__feature {
    grid-template-columns: 1fr;
  }
  .ha-stay-intro p,
  .ha-signature__intro p {
    margin-left: 0;
  }
  .ha-stay-card { grid-column: span 6; }
  .ha-stay-card--wide { grid-column: span 6; }
  .ha-signature__media { min-height: 68vw; }
}
@media (max-width: 640px) {
  .ha-stay-hero { min-height: 82svh; }
  .ha-stay-hero__copy { padding-bottom: 58px; }
  .ha-stay-section__head {
    display: block;
  }
  .ha-stay-section__head p {
    margin-top: 18px;
  }
  .ha-stay-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .ha-stay-card,
  .ha-stay-card--wide {
    grid-column: auto;
  }
  .ha-stay-card__media,
  .ha-stay-card--wide .ha-stay-card__media {
    aspect-ratio: 4 / 4.8;
  }
  .ha-signature__copy {
    padding: 34px 24px;
  }
  .ha-signature__meta {
    grid-template-columns: 1fr;
  }
  .ha-stay-coming__copy {
    padding: 38px 24px;
  }
}


/* V6.1 polish */
.ha-manifesto__image img{object-position:center top;}
.ha-room-card__body{padding-top:10px;}

/* V6.2 — definitive image-frame fix.
   The previous global height:auto rule was overriding media-frame heights,
   producing the beige/grey strip and the large gap before room titles. */
body.ha-home .ha-manifesto__image > img,
body.ha-home .ha-room-card__media > img,
body.ha-home .ha-location__media > img,
body.ha-home .ha-suite-feature__media > img,
body.ha-home .ha-coming__media > img,
body.ha-home .ha-terrace__media > img,
body.ha-home .ha-experience-card__media > img,
body.ha-home .ha-heritage-v4__hero > img,
body.ha-home .ha-heritage-v4__media > img,
body.ha-home .ha-stay-hero__media > img,
body.ha-home .ha-stay-card__media > img,
body.ha-home .ha-signature__media > img,
body.ha-home .ha-stay-coming > img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

body.ha-home .ha-room-card__body {
  padding-top: 12px !important;
}


/* =========================================================
   V7 / 2.6.0 — INTERNATIONAL EDITORIAL ARCHITECTURE
   ========================================================= */
.ha-nav a.is-current { opacity: 1; }
.ha-nav a.is-current::after { content:""; display:block; width:100%; height:1px; margin-top:5px; background:currentColor; opacity:.35; }
.ha-header--inner { position: sticky; }

/* Safer, quieter homepage finishing */
.ha-suites .ha-section-head h2 { max-width: 760px; }
.ha-rooms__footer { justify-content: flex-end; }
.ha-service__copy p { max-width: 690px; }

/* Internal-page hero */
.ha-inner-hero { position:relative; min-height:82svh; display:flex; align-items:flex-end; overflow:hidden; background:#171411; color:var(--ha-white); }
.ha-inner-hero__media, .ha-inner-hero__media img { position:absolute; inset:0; width:100%; height:100%; }
body.ha-home .ha-inner-hero__media img { height:100%!important; object-fit:cover; object-position:center; transform:scale(1.015); }
.ha-inner-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(12,10,8,.08) 20%,rgba(12,10,8,.72) 100%); }
.ha-inner-hero__copy { position:relative; z-index:2; padding:clamp(120px,12vw,180px) 0 clamp(52px,7vw,90px); }
.ha-inner-hero__copy h1 { max-width:1200px; margin-top:18px; font-size:clamp(72px,8.5vw,142px); }
.ha-inner-hero__copy p { max-width:700px; margin:28px 0 0; font-size:clamp(16px,1.3vw,20px); line-height:1.75; color:rgba(255,255,255,.8); }
.ha-inner-hero--heritage .ha-inner-hero__media img { object-position:center 42%; }
.ha-inner-hero--rome .ha-inner-hero__media img { object-position:center 58%; }

.ha-inner-intro { padding:clamp(105px,11vw,165px) 0; background:var(--ha-paper); }
.ha-inner-intro__grid { display:grid; grid-template-columns:1fr .8fr; gap:clamp(55px,8vw,120px); align-items:end; }
.ha-inner-intro h2 { margin-top:18px; font-size:clamp(58px,6vw,96px); }
.ha-inner-intro p { max-width:600px; margin:0 0 6px auto; font-size:17px; line-height:1.82; color:rgba(21,19,15,.64); }
.ha-inner-intro--dark { background:var(--ha-ink-soft); color:var(--ha-white); }
.ha-inner-intro--dark p { color:rgba(255,255,255,.7); }
.ha-editorial-quote { margin-top:36px!important; padding-top:25px; border-top:1px solid rgba(255,255,255,.16); font-family:var(--ha-serif); font-size:clamp(29px,2.7vw,42px)!important; line-height:1.15!important; color:var(--ha-white)!important; }

/* Stay */
.ha-stay-catalog { padding:0 0 clamp(120px,12vw,185px); background:var(--ha-paper); }
.ha-signature--inner { padding-top:clamp(115px,11vw,175px); }
.ha-signature__secondary { display:grid; grid-template-columns:.8fr 1.2fr; gap:35px; align-items:end; margin:28px 0 70px; padding-bottom:42px; border-bottom:1px solid rgba(255,255,255,.14); }
.ha-signature__secondary img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.ha-signature__secondary p { max-width:540px; margin:10px 0 6px; font-family:var(--ha-serif); font-size:clamp(28px,2.7vw,42px); line-height:1.2; color:rgba(255,255,255,.84); }

/* Heritage page */
.ha-heritage-page { background:var(--ha-ink-soft); color:var(--ha-white); }
.ha-art-lead { padding:0 0 20px; background:var(--ha-ink-soft); }
.ha-art-lead figure { position:relative; margin:0; aspect-ratio:16/8.1; overflow:hidden; }
.ha-art-lead img { width:100%; height:100%!important; object-fit:cover; object-position:center 45%; }
.ha-art-lead figcaption { position:absolute; left:22px; bottom:20px; padding:9px 12px; background:rgba(10,9,8,.72); font-size:8px; font-weight:800; letter-spacing:.17em; }
.ha-art-gallery { padding:0 0 clamp(120px,12vw,180px); background:var(--ha-ink-soft); }
.ha-art-gallery__grid { display:grid; grid-template-columns:.8fr 1.2fr; grid-template-rows:auto auto; gap:20px; }
.ha-art-gallery figure { margin:0; min-width:0; }
.ha-art-gallery figure img { width:100%; height:100%!important; object-fit:cover; }
.ha-art-gallery__a { grid-column:1; grid-row:1; }
.ha-art-gallery__b { grid-column:2; grid-row:1 / span 2; }
.ha-art-gallery__c { grid-column:1; grid-row:2; }
.ha-art-gallery__d { grid-column:1 / -1; margin-top:40px!important; aspect-ratio:16/6.3; }
.ha-art-gallery__a img, .ha-art-gallery__c img { aspect-ratio:4/3; }
.ha-art-gallery__b img { aspect-ratio:4/5.2; }
.ha-art-gallery__d img { aspect-ratio:16/6.3; object-position:center 42%; }
.ha-art-gallery figcaption { padding-top:14px; font-size:9px; font-weight:750; letter-spacing:.14em; color:rgba(255,255,255,.58); }
.ha-craft { padding:clamp(110px,11vw,170px) 0; background:#ede4d8; color:var(--ha-ink); }
.ha-craft__grid { display:grid; grid-template-columns:1fr .9fr; gap:clamp(55px,8vw,120px); align-items:center; }
.ha-craft__media { aspect-ratio:4/3; overflow:hidden; }
.ha-craft__media img { width:100%; height:100%!important; object-fit:cover; }
.ha-craft__copy h2 { margin-top:18px; font-size:clamp(58px,5.5vw,90px); }
.ha-craft__copy p { max-width:560px; margin:28px 0 0; font-size:16px; line-height:1.8; color:rgba(21,19,15,.64); }
.ha-historical { padding:clamp(110px,10vw,155px) 0; background:var(--ha-paper); color:var(--ha-ink); }
.ha-historical__grid { display:grid; grid-template-columns:1fr auto; gap:80px; align-items:center; }
.ha-historical h2 { margin-top:18px; font-size:clamp(58px,5.5vw,90px); }
.ha-historical p { max-width:670px; margin:26px 0 0; font-size:16px; line-height:1.8; color:rgba(21,19,15,.62); }
.ha-historical__badge { width:210px; }
.ha-historical__badge img { width:100%; height:auto!important; }

/* Experience */
.ha-experience-feature { padding:0 0 clamp(120px,12vw,180px); background:var(--ha-paper); }
.ha-experience-feature__grid { display:grid; grid-template-columns:1.2fr .8fr; min-height:690px; }
.ha-experience-feature__grid--reverse { grid-template-columns:.8fr 1.2fr; }
.ha-experience-feature__grid--reverse .ha-experience-feature__media { order:2; }
.ha-experience-feature__media { overflow:hidden; min-height:690px; }
.ha-experience-feature__media img { width:100%; height:100%!important; object-fit:cover; }
.ha-experience-feature__copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(45px,6vw,88px); background:#ece3d7; }
.ha-experience-feature__copy h2 { margin-top:18px; font-size:clamp(54px,5vw,82px); }
.ha-experience-feature__copy p { margin:26px 0 0; font-size:16px; line-height:1.8; color:rgba(21,19,15,.64); }
.ha-experience-duo { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:20px; }
.ha-experience-duo img { width:100%; aspect-ratio:16/9; height:auto!important; object-fit:cover; }
.ha-experience-feature--wine { padding-top:clamp(20px,2vw,40px); background:var(--ha-wine-dark); }
.ha-experience-feature--wine .ha-experience-feature__copy { background:var(--ha-wine); color:var(--ha-white); }
.ha-experience-feature--wine .ha-experience-feature__copy p { color:rgba(255,255,255,.72); }
.ha-rhythm { padding:clamp(115px,11vw,170px) 0; background:#ede5d9; }
.ha-rhythm__head { max-width:930px; }
.ha-rhythm__head h2 { margin-top:18px; font-size:clamp(58px,5.8vw,94px); }
.ha-rhythm__grid { display:grid; grid-template-columns:repeat(4,1fr); margin-top:65px; border-top:1px solid rgba(21,19,15,.2); }
.ha-rhythm article { min-height:260px; padding:30px 24px 10px 0; border-right:1px solid rgba(21,19,15,.14); }
.ha-rhythm article+article { padding-left:24px; }
.ha-rhythm article:last-child { border-right:0; }
.ha-rhythm strong { display:block; font-family:var(--ha-serif); font-size:40px; font-weight:500; }
.ha-rhythm span { display:block; margin-top:30px; font-size:10px; font-weight:800; letter-spacing:.15em; text-transform:uppercase; }
.ha-rhythm p { margin:12px 0 0; font-size:13px; line-height:1.65; color:rgba(21,19,15,.58); }
.ha-service-page { padding:clamp(110px,11vw,170px) 0; background:var(--ha-ink); color:var(--ha-white); }
.ha-service-page__grid { display:grid; grid-template-columns:1fr .8fr; gap:80px; }
.ha-service-page h2 { margin-top:18px; font-size:clamp(58px,5.5vw,90px); }
.ha-service-page p { margin:0; font-size:17px; line-height:1.8; color:rgba(255,255,255,.68); }
.ha-service-page ul { list-style:none; margin:35px 0 0; padding:0; border-top:1px solid rgba(255,255,255,.16); }
.ha-service-page li { padding:15px 0; border-bottom:1px solid rgba(255,255,255,.12); font-size:10px; font-weight:750; letter-spacing:.12em; text-transform:uppercase; }

/* Rome */
.ha-location-facts { padding:34px 0; background:var(--ha-ink); color:var(--ha-white); }
.ha-location-facts__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.ha-location-facts article { padding:10px 28px; border-right:1px solid rgba(255,255,255,.15); }
.ha-location-facts article:first-child { padding-left:0; }
.ha-location-facts article:last-child { border-right:0; }
.ha-location-facts strong { display:block; font-family:var(--ha-serif); font-size:32px; font-weight:500; }
.ha-location-facts span { display:block; margin-top:6px; font-size:9px; font-weight:750; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.58); }
.ha-rome-story { padding:0 0 clamp(120px,12vw,185px); background:var(--ha-paper); }
.ha-rome-story__grid { display:grid; grid-template-columns:1.15fr .85fr; min-height:650px; margin-bottom:22px; }
.ha-rome-story__grid--reverse { grid-template-columns:.85fr 1.15fr; }
.ha-rome-story__grid--reverse figure { order:2; }
.ha-rome-story figure { position:relative; margin:0; overflow:hidden; min-height:650px; }
.ha-rome-story figure img { width:100%; height:100%!important; object-fit:cover; }
.ha-rome-story figcaption { position:absolute; left:20px; bottom:18px; padding:8px 10px; background:rgba(10,9,8,.7); color:white; font-size:8px; font-weight:800; letter-spacing:.16em; }
.ha-rome-story__copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(45px,6vw,88px); background:#ece3d7; }
.ha-rome-story__copy h2 { margin-top:18px; font-size:clamp(54px,5vw,82px); }
.ha-rome-story__copy p { margin:24px 0 0; font-size:16px; line-height:1.8; color:rgba(21,19,15,.62); }
.ha-rome-view { position:relative; min-height:75svh; overflow:hidden; color:var(--ha-white); }
.ha-rome-view>img { position:absolute; inset:0; width:100%; height:100%!important; object-fit:cover; }
.ha-rome-view::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 30%,rgba(10,9,8,.72)); }
.ha-rome-view__copy { position:absolute; z-index:2; left:max(32px,calc((100vw - min(calc(100% - 64px), var(--ha-max)))/2)); bottom:60px; max-width:850px; }
.ha-rome-view__copy h2 { margin-top:14px; font-size:clamp(58px,6vw,96px); }
.ha-rome-view__copy p { font-size:17px; color:rgba(255,255,255,.76); }

.ha-inner-final { padding:clamp(115px,11vw,170px) 0; text-align:center; background:var(--ha-wine-dark); color:var(--ha-white); }
.ha-inner-final h2 { max-width:1050px; margin:17px auto 32px; font-size:clamp(60px,7vw,112px); }

@media(max-width:980px){
 .ha-inner-intro__grid,.ha-craft__grid,.ha-service-page__grid,.ha-historical__grid{grid-template-columns:1fr;gap:40px}.ha-inner-intro p{margin-left:0}
 .ha-art-gallery__grid{grid-template-columns:1fr}.ha-art-gallery__a,.ha-art-gallery__b,.ha-art-gallery__c,.ha-art-gallery__d{grid-column:auto;grid-row:auto}.ha-art-gallery__b img,.ha-art-gallery__d,.ha-art-gallery__d img{aspect-ratio:4/3}
 .ha-experience-feature__grid,.ha-experience-feature__grid--reverse,.ha-rome-story__grid,.ha-rome-story__grid--reverse{grid-template-columns:1fr}.ha-experience-feature__grid--reverse .ha-experience-feature__media,.ha-rome-story__grid--reverse figure{order:0}
 .ha-experience-feature__media,.ha-rome-story figure{min-height:60vw}
 .ha-rhythm__grid,.ha-location-facts__grid{grid-template-columns:1fr 1fr}.ha-location-facts article:nth-child(2){border-right:0}.ha-location-facts article:nth-child(3),.ha-location-facts article:nth-child(4){border-top:1px solid rgba(255,255,255,.15)}
 .ha-signature__secondary{grid-template-columns:1fr}.ha-historical__badge{width:155px}
}
@media(max-width:640px){
 .ha-inner-hero{min-height:78svh}.ha-inner-hero__copy h1{font-size:clamp(62px,18vw,92px)}
 .ha-art-lead figure{aspect-ratio:4/5}.ha-experience-duo{grid-template-columns:1fr}.ha-rhythm__grid,.ha-location-facts__grid{grid-template-columns:1fr}.ha-rhythm article,.ha-rhythm article+article{min-height:0;padding:24px 0;border-right:0;border-bottom:1px solid rgba(21,19,15,.14)}.ha-location-facts article,.ha-location-facts article:first-child{padding:18px 0;border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}
 .ha-rome-view__copy{left:24px;right:24px;bottom:40px}.ha-rome-view{min-height:68svh}
}


/* =========================================================
   V8 — JOURNAL
   Existing WordPress posts, completely new editorial skin.
   ========================================================= */

.ha-journal {
  background: var(--ha-paper);
  color: var(--ha-ink);
}

.ha-journal-hero {
  padding: clamp(115px, 12vw, 180px) 0 clamp(80px, 8vw, 120px);
  background: #ede5d9;
  border-bottom: 1px solid rgba(21,19,15,.10);
}
.ha-journal-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
}
.ha-journal-hero h1 {
  margin-top: 18px;
  font-size: clamp(76px, 9vw, 142px);
}
.ha-journal-hero__intro {
  max-width: 560px;
  margin: 0 0 8px auto;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(21,19,15,.62);
}

.ha-journal-cats {
  padding: 22px 0;
  background: var(--ha-paper);
  border-bottom: 1px solid var(--ha-line);
}
.ha-journal-cats__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
}
.ha-journal-cats a,
.ha-journal-cats span {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ha-journal-cats a {
  opacity: .58;
  transition: opacity .25s ease;
}
.ha-journal-cats a:hover { opacity: 1; }
.ha-journal-cats__label {
  color: var(--ha-wine);
  opacity: 1 !important;
}

.ha-journal-content {
  padding: clamp(80px, 9vw, 135px) 0 clamp(120px, 12vw, 180px);
}
.ha-journal-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 620px;
  margin-bottom: clamp(80px, 9vw, 130px);
  background: var(--ha-ink);
  color: var(--ha-white);
}
.ha-journal-feature__media {
  min-height: 620px;
  overflow: hidden;
}
.ha-journal-feature__media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .9s var(--ha-ease);
}
.ha-journal-feature:hover .ha-journal-feature__media img {
  transform: scale(1.018);
}
.ha-journal-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 88px);
}
.ha-journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.ha-journal-feature h2 {
  margin: 20px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(50px, 5.4vw, 86px);
  font-weight: 500;
  line-height: .97;
}
.ha-journal-feature p {
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.67);
}
.ha-journal-feature .ha-link {
  margin-top: 30px;
  width: max-content;
}

.ha-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 66px 22px;
}
.ha-journal-card {
  min-width: 0;
}
.ha-journal-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2dbd1;
}
.ha-journal-card__media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .75s var(--ha-ease);
}
.ha-journal-card:hover .ha-journal-card__media img {
  transform: scale(1.025);
}
.ha-journal-card__body {
  padding-top: 18px;
}
.ha-journal-card__body .ha-journal-meta {
  color: rgba(21,19,15,.44);
}
.ha-journal-card h2 {
  margin: 11px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.02;
}
.ha-journal-card p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(21,19,15,.58);
}
.ha-journal-card .ha-link {
  margin-top: 18px;
}

.ha-journal-pagination {
  margin-top: 85px;
  padding-top: 28px;
  border-top: 1px solid var(--ha-line);
}
.ha-journal-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ha-journal-pagination a,
.ha-journal-pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21,19,15,.18);
  font-size: 10px;
  font-weight: 750;
}
.ha-journal-pagination .current {
  background: var(--ha-ink);
  border-color: var(--ha-ink);
  color: var(--ha-white);
}

/* Journal single article */
.ha-article {
  background: var(--ha-paper);
  color: var(--ha-ink);
}
.ha-article-head {
  padding: clamp(105px, 10vw, 155px) 0 60px;
}
.ha-article-head__inner {
  max-width: 1120px;
}
.ha-article-head .ha-journal-meta {
  color: rgba(21,19,15,.46);
}
.ha-article-head h1 {
  margin: 22px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(64px, 7.5vw, 120px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.035em;
}
.ha-article-head__excerpt {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(21,19,15,.6);
}
.ha-article-hero {
  width: min(calc(100% - 64px), var(--ha-max));
  margin: 0 auto;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
}
.ha-article-hero img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.ha-article-body {
  width: min(calc(100% - 64px), 860px);
  margin: 0 auto;
  padding: clamp(75px, 8vw, 120px) 0 clamp(110px, 11vw, 170px);
}
.ha-article-body > *:first-child { margin-top: 0; }
.ha-article-body p,
.ha-article-body li {
  font-family: var(--ha-serif);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.7;
  color: rgba(21,19,15,.82);
}
.ha-article-body p { margin: 0 0 1.5em; }
.ha-article-body h2,
.ha-article-body h3 {
  margin: 2.1em 0 .65em;
  font-family: var(--ha-serif);
  font-weight: 500;
  line-height: 1.05;
}
.ha-article-body h2 { font-size: clamp(42px, 4vw, 64px); }
.ha-article-body h3 { font-size: clamp(32px, 3vw, 48px); }
.ha-article-body a {
  color: var(--ha-wine);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ha-article-body img {
  margin: 40px 0;
  height: auto !important;
}
.ha-article-body blockquote {
  margin: 55px 0;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--ha-gold);
}
.ha-article-body blockquote p {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.25;
}
.ha-article-nav {
  padding: 36px 0;
  background: #ede5d9;
  border-top: 1px solid rgba(21,19,15,.1);
}
.ha-article-nav__inner {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.ha-article-nav a {
  max-width: 46%;
  font-family: var(--ha-serif);
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.15;
}
.ha-article-nav a:last-child {
  text-align: right;
  margin-left: auto;
}

/* Archive/search uses same Journal language */
.ha-archive-title {
  padding: clamp(95px, 9vw, 140px) 0 58px;
  background: #ede5d9;
}
.ha-archive-title h1 {
  margin-top: 18px;
  font-size: clamp(64px, 7vw, 110px);
}

@media(max-width:980px){
  .ha-journal-hero__grid,
  .ha-journal-feature {
    grid-template-columns: 1fr;
  }
  .ha-journal-hero__intro {
    margin-left: 0;
  }
  .ha-journal-feature__media {
    min-height: 58vw;
  }
  .ha-journal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ha-historical__badge { width:155px; }
}

@media(max-width:640px){
  .ha-journal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ha-journal-feature__media {
    min-height: 72vw;
  }
  .ha-journal-feature__copy {
    padding: 34px 24px 42px;
  }
  .ha-article-hero {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
  .ha-article-body {
    width: min(calc(100% - 48px), 860px);
  }
  .ha-article-nav__inner {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ha-article-nav a,
  .ha-article-nav a:last-child {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
  .ha-historical__badge { width:125px; }
}


/* =========================================================
   V9 — Journal legacy routing + Accommodation detail pages
   ========================================================= */

.ha-stay-card__link { margin-top: 16px; }
.ha-signature__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}
.ha-stay-card__media { display:block; }
.ha-stay-card h3 a { transition: opacity .25s ease; }
.ha-stay-card h3 a:hover { opacity:.58; }

/* Detail hero */
.ha-room-detail { background: var(--ha-paper); color: var(--ha-ink); }
.ha-room-detail__hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ha-white);
  background: #151310;
}
.ha-room-detail__hero-media,
.ha-room-detail__hero-media img {
  position:absolute;
  inset:0;
  width:100%;
  height:100% !important;
}
.ha-room-detail__hero-media img { object-fit:cover; object-position:center; }
.ha-room-detail__hero-shade {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(7,6,5,.06) 15%,rgba(7,6,5,.74) 100%);
}
.ha-room-detail__hero-copy {
  position:relative;
  z-index:2;
  padding-bottom:clamp(48px,7vw,92px);
}
.ha-room-detail__hero-copy h1 {
  max-width:1050px;
  margin-top:18px;
  font-size:clamp(74px,9vw,146px);
}
.ha-room-detail__hero-copy p {
  max-width:680px;
  margin:26px 0 30px;
  font-size:17px;
  line-height:1.75;
  color:rgba(255,255,255,.82);
}

.ha-room-facts {
  background:var(--ha-ink);
  color:var(--ha-white);
}
.ha-room-facts__grid {
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
}
.ha-room-facts__grid div {
  min-height:92px;
  display:flex;
  align-items:center;
  padding:18px 22px;
  border-right:1px solid rgba(255,255,255,.12);
  font-size:9px;
  font-weight:750;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:rgba(255,255,255,.76);
}
.ha-room-facts__grid div:last-child { border-right:0; }

.ha-room-story {
  padding:clamp(110px,11vw,170px) 0;
}
.ha-room-story__grid {
  display:grid;
  grid-template-columns:1fr .76fr;
  gap:clamp(60px,9vw,130px);
  align-items:start;
}
.ha-room-story h2 {
  margin-top:18px;
  max-width:820px;
  font-size:clamp(58px,6vw,96px);
}
.ha-room-story__grid > div:last-child {
  padding-top:34px;
}
.ha-room-story p {
  margin:0 0 22px;
  font-size:17px;
  line-height:1.82;
  color:rgba(21,19,15,.63);
}

.ha-room-gallery {
  padding-bottom:clamp(110px,11vw,170px);
}
.ha-room-gallery__grid {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:20px;
  height:min(900px,75vw);
}
.ha-room-gallery__item {
  margin:0;
  overflow:hidden;
  background:#e4ddd3;
}
.ha-room-gallery__item--1 { grid-row:1 / span 2; }
.ha-room-gallery__item img {
  width:100%;
  height:100% !important;
  object-fit:cover;
  transition:transform .9s var(--ha-ease);
}
.ha-room-gallery__item:hover img { transform:scale(1.02); }

.ha-room-heritage {
  padding:0 0 clamp(120px,12vw,185px);
}
.ha-room-heritage__grid {
  display:grid;
  grid-template-columns:1.08fr .92fr;
  min-height:680px;
  background:#211d19;
  color:var(--ha-white);
}
.ha-room-heritage__media { min-height:680px; overflow:hidden; }
.ha-room-heritage__media img {
  width:100%;
  height:100% !important;
  object-fit:cover;
}
.ha-room-heritage__copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(45px,6vw,88px);
}
.ha-room-heritage__copy h2 {
  margin-top:17px;
  font-size:clamp(52px,5.3vw,84px);
}
.ha-room-heritage__copy p {
  margin:24px 0 30px;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.66);
}

.ha-room-related {
  padding:0 0 clamp(120px,12vw,180px);
}
.ha-room-related__head {
  padding-bottom:34px;
  border-bottom:1px solid var(--ha-line);
  margin-bottom:30px;
}
.ha-room-related__head h2 {
  margin-top:12px;
  font-size:clamp(48px,5vw,78px);
}
.ha-room-related__grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.ha-room-related__card > div {
  aspect-ratio:4 / 3;
  overflow:hidden;
  margin-bottom:17px;
}
.ha-room-related__card img {
  width:100%;
  height:100% !important;
  object-fit:cover;
  transition:transform .7s var(--ha-ease);
}
.ha-room-related__card:hover img { transform:scale(1.025); }
.ha-room-related__card span {
  font-size:9px;
  font-weight:750;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(21,19,15,.46);
}
.ha-room-related__card h3 {
  margin:8px 0 0;
  font-family:var(--ha-serif);
  font-size:clamp(30px,3vw,44px);
  font-weight:500;
  line-height:1;
}

/* Legacy Journal page: ensure old WP page-builder output never leaks through. */
body.ha-journal-legacy .entry-content,
body.ha-journal-legacy .content-area,
body.ha-journal-legacy #primary { max-width:none; }

/* Journal pagination generated via paginate_links() */
.ha-journal-pagination {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.ha-journal-pagination .page-numbers {
  min-width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(21,19,15,.18);
  font-size:10px;
  font-weight:750;
}
.ha-journal-pagination .current {
  background:var(--ha-ink);
  border-color:var(--ha-ink);
  color:var(--ha-white);
}

@media(max-width:980px){
  .ha-room-facts__grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .ha-room-facts__grid div:nth-child(3n) { border-right:0; }
  .ha-room-story__grid,
  .ha-room-heritage__grid { grid-template-columns:1fr; }
  .ha-room-gallery__grid { height:auto; grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .ha-room-gallery__item--1 { grid-row:auto; grid-column:1 / -1; aspect-ratio:16 / 9; }
  .ha-room-gallery__item:not(.ha-room-gallery__item--1) { aspect-ratio:4 / 3; }
  .ha-room-heritage__media { min-height:62vw; }
}
@media(max-width:640px){
  .ha-room-detail__hero { min-height:78svh; }
  .ha-room-facts__grid { grid-template-columns:1fr 1fr; }
  .ha-room-facts__grid div,
  .ha-room-facts__grid div:nth-child(3n) { border-right:1px solid rgba(255,255,255,.12); }
  .ha-room-facts__grid div:nth-child(2n) { border-right:0; }
  .ha-room-story__grid { gap:28px; }
  .ha-room-story__grid > div:last-child { padding-top:0; }
  .ha-room-gallery__grid { grid-template-columns:1fr; }
  .ha-room-gallery__item--1 { grid-column:auto; aspect-ratio:4 / 3; }
  .ha-room-related__grid { grid-template-columns:1fr; gap:42px; }
  .ha-signature__actions { align-items:flex-start; flex-direction:column; }
}


/* =========================================================
   V9.2 — Language switcher + Book contrast
   ========================================================= */

/* Booking CTA: force high contrast even against parent-theme link rules. */
body.ha-home .ha-header .ha-header__book,
body.ha-home .ha-header .ha-header__book:visited,
body.ha-home .ha-header .ha-header__book:hover,
body.ha-home .ha-header .ha-header__book:focus {
  color: #fffdf8 !important;
  background: var(--ha-wine) !important;
  border-color: var(--ha-wine) !important;
}
body.ha-home .ha-header .ha-header__book:hover,
body.ha-home .ha-header .ha-header__book:focus {
  background: var(--ha-wine-dark) !important;
  border-color: var(--ha-wine-dark) !important;
}

/* Editorial language selector. Appears automatically when WPML has 2+ active languages. */
.ha-language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.ha-language-switcher__current {
  min-width: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  color: var(--ha-ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ha-language-switcher__current span {
  font-size: 11px;
  opacity: .58;
  transform: translateY(-1px);
}
.ha-language-switcher__menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 8px);
  right: 0;
  min-width: 72px;
  padding: 7px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-5px);
  background: var(--ha-paper);
  border: 1px solid rgba(21,19,15,.12);
  box-shadow: 0 18px 45px rgba(21,19,15,.12);
  transition: opacity .25s ease, transform .3s var(--ha-ease), visibility .3s;
}
.ha-language-switcher:hover .ha-language-switcher__menu,
.ha-language-switcher:focus-within .ha-language-switcher__menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.ha-language-switcher__menu a {
  display: block;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(21,19,15,.58);
}
.ha-language-switcher__menu a:hover,
.ha-language-switcher__menu a.is-active {
  color: var(--ha-ink);
  background: rgba(21,19,15,.05);
}

.ha-language-switcher--mobile {
  margin: 12px 0 20px;
  width: max-content;
}
.ha-language-switcher--mobile .ha-language-switcher__current {
  color: var(--ha-white);
}
.ha-language-switcher--mobile .ha-language-switcher__menu {
  top: auto;
  right: auto;
  left: 0;
  bottom: calc(100% + 8px);
}

@media(max-width:820px){
  .ha-header__right .ha-language-switcher { display:none; }
}


/* =========================================================
   V9.3 — Accurate room configurations + services
   ========================================================= */

/* Pometha Colosseum: guaranteed white typography over image. */
body.ha-home .ha-stay-coming__copy,
body.ha-home .ha-stay-coming__copy .ha-kicker,
body.ha-home .ha-stay-coming__copy h3,
body.ha-home .ha-stay-coming__copy p,
body.ha-home .ha-coming__copy,
body.ha-home .ha-coming__copy .ha-kicker,
body.ha-home .ha-coming__copy h3,
body.ha-home .ha-coming__copy p {
  color: #fffdf8 !important;
}
body.ha-home .ha-stay-coming__copy p,
body.ha-home .ha-coming__copy p {
  color: rgba(255,253,248,.78) !important;
}

/* Shared room amenities on STAY */
.ha-stay-amenities {
  padding: 0 0 clamp(115px, 11vw, 170px);
  background: var(--ha-paper);
}
.ha-stay-amenities__head {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 50px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ha-line);
}
.ha-stay-amenities__head h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
}
.ha-stay-amenities__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.ha-stay-amenities__grid > div {
  min-height: 150px;
  padding: 27px 28px 24px 0;
  border-bottom: 1px solid var(--ha-line);
}
.ha-stay-amenities__grid > div:not(:nth-child(3n)) {
  border-right: 1px solid var(--ha-line);
  padding-right: 28px;
  margin-right: 28px;
}
.ha-stay-amenities__grid strong {
  display: block;
  font-family: var(--ha-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}
.ha-stay-amenities__grid span {
  display: block;
  margin-top: 11px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(21,19,15,.56);
}

/* Amenities on individual room pages */
.ha-room-services {
  padding: 0 0 clamp(110px, 11vw, 165px);
  background: var(--ha-paper);
}
.ha-room-services__head {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 55px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ha-line);
}
.ha-room-services__head h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(48px, 5vw, 78px);
}
.ha-room-services__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.ha-room-services__item {
  min-height: 155px;
  padding: 29px 30px 25px 0;
  border-bottom: 1px solid var(--ha-line);
}
.ha-room-services__item:not(:nth-child(3n)) {
  border-right: 1px solid var(--ha-line);
  padding-right: 30px;
  margin-right: 30px;
}
.ha-room-services__item strong {
  display: block;
  font-family: var(--ha-serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}
.ha-room-services__item span {
  display: block;
  max-width: 290px;
  margin-top: 11px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(21,19,15,.56);
}

@media(max-width:980px){
  .ha-stay-amenities__head,
  .ha-room-services__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ha-stay-amenities__grid,
  .ha-room-services__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .ha-stay-amenities__grid > div:not(:nth-child(3n)),
  .ha-room-services__item:not(:nth-child(3n)) {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .ha-stay-amenities__grid > div:nth-child(odd),
  .ha-room-services__item:nth-child(odd) {
    border-right: 1px solid var(--ha-line);
    padding-right: 28px;
    margin-right: 28px;
  }
}
@media(max-width:640px){
  .ha-stay-amenities__grid,
  .ha-room-services__grid {
    grid-template-columns: 1fr;
  }
  .ha-stay-amenities__grid > div,
  .ha-stay-amenities__grid > div:nth-child(odd),
  .ha-room-services__item,
  .ha-room-services__item:nth-child(odd) {
    min-height: 0;
    border-right: 0;
    padding: 23px 0;
    margin: 0;
  }
}


/* =========================================================
   V9.4 — Suite gallery + persistent booking + quote request
   ========================================================= */

/* Header remains visible throughout scroll. */
body.ha-home .ha-header,
body.ha-home .ha-header--inner {
  position: fixed !important;
  z-index: 96;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
body.admin-bar.ha-home .ha-header,
body.admin-bar.ha-home .ha-header--inner {
  top: 32px;
}
body.ha-home main {
  padding-top: 82px;
}

/* Desktop actions */
.ha-header__right { gap: 9px; }
.ha-header__quote {
  min-height: 42px;
  padding-inline: 14px;
  color: var(--ha-wine) !important;
  background: transparent !important;
  border-color: rgba(90,34,40,.55) !important;
}
.ha-header__quote:hover,
.ha-header__quote:focus {
  color: var(--ha-white) !important;
  background: var(--ha-wine) !important;
  border-color: var(--ha-wine) !important;
}
.ha-header__book {
  white-space: nowrap;
}
.ha-drawer__quote {
  margin-top: auto;
}
.ha-drawer__book {
  margin-top: 10px;
}

/* Panoramic King Suite: editorial proportions, no compressed strips. */
.ha-room-detail--suite .ha-room-gallery__grid {
  height: auto !important;
  grid-template-columns: repeat(2, minmax(0,1fr));
  grid-template-rows: auto !important;
  gap: 20px;
}
.ha-room-detail--suite .ha-room-gallery__item {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4 / 3;
}
.ha-room-detail--suite .ha-room-gallery__item--1,
.ha-room-detail--suite .ha-room-gallery__item--4 {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
body.ha-home .ha-room-detail--suite .ha-room-gallery__item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

/* Mobile persistent conversion bar */
.ha-mobile-actions {
  display: none;
  position: fixed;
  z-index: 94;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  grid-template-columns: .9fr 1.1fr;
  min-height: 56px;
  overflow: hidden;
  background: var(--ha-paper);
  border: 1px solid rgba(21,19,15,.12);
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
}
.ha-mobile-actions button,
.ha-mobile-actions a {
  min-width: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-family: var(--ha-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
}
.ha-mobile-actions__quote {
  color: var(--ha-ink);
  background: var(--ha-paper);
}
.ha-mobile-actions__book {
  color: var(--ha-white) !important;
  background: var(--ha-wine);
}

/* Quote modal */
html.ha-quote-open {
  overflow: hidden;
}
.ha-quote-modal {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}
.ha-quote-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.ha-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,11,9,.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.ha-quote-modal__panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  height: 100%;
  padding: clamp(30px, 4vw, 54px);
  overflow-y: auto;
  background: var(--ha-paper);
  box-shadow: -28px 0 70px rgba(0,0,0,.2);
  transform: translateX(24px);
  transition: transform .45s var(--ha-ease);
}
.ha-quote-modal.is-open .ha-quote-modal__panel {
  transform: none;
}
.ha-quote-modal__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ha-line);
}
.ha-quote-modal__top h2 {
  margin: 12px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(45px, 4.5vw, 68px);
  font-weight: 500;
  line-height: .95;
}
.ha-quote-modal__close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--ha-line);
  background: transparent;
  color: var(--ha-ink);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}
.ha-quote-modal__intro {
  max-width: 510px;
  margin: 25px 0 30px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(21,19,15,.6);
}
.ha-quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.ha-quote-form__field {
  display: grid;
  gap: 8px;
}
.ha-quote-form__field--full {
  grid-column: 1 / -1;
}
.ha-quote-form__field > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(21,19,15,.56);
}
.ha-quote-form input,
.ha-quote-form select,
.ha-quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21,19,15,.2);
  border-radius: 0;
  padding: 11px 12px;
  background: #fffdf8;
  color: var(--ha-ink);
  font-family: var(--ha-sans);
  font-size: 13px;
  box-shadow: none;
}
.ha-quote-form textarea {
  resize: vertical;
  min-height: 105px;
}
.ha-quote-form input:focus,
.ha-quote-form select:focus,
.ha-quote-form textarea:focus {
  outline: 1px solid var(--ha-wine);
  outline-offset: 1px;
  border-color: var(--ha-wine);
}
.ha-quote-form__privacy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 22px 0 24px;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(21,19,15,.58);
}
.ha-quote-form__privacy input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 1px;
}
.ha-quote-form__submit {
  width: 100%;
}
.ha-quote-form__honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
}
.ha-quote-status {
  margin: 0 0 24px;
  padding: 13px 15px;
  font-size: 12px;
  line-height: 1.55;
}
.ha-quote-status--success {
  background: #edf3eb;
  color: #274226;
}
.ha-quote-status--error {
  background: #f4e8e7;
  color: #6e2424;
}

@media (max-width: 1120px) {
  .ha-header__quote {
    display: none;
  }
}

@media (max-width: 840px) {
  body.ha-home main {
    padding-top: 72px;
  }
  body.admin-bar.ha-home .ha-header,
  body.admin-bar.ha-home .ha-header--inner {
    top: 46px;
  }
  .ha-mobile-actions {
    display: grid;
  }
  body.ha-home {
    padding-bottom: 76px;
  }
  .ha-room-detail--suite .ha-room-gallery__grid {
    grid-template-columns: 1fr;
  }
  .ha-room-detail--suite .ha-room-gallery__item,
  .ha-room-detail--suite .ha-room-gallery__item--1,
  .ha-room-detail--suite .ha-room-gallery__item--4 {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .ha-quote-modal__panel {
    padding: 26px 20px 34px;
  }
  .ha-quote-form__grid {
    grid-template-columns: 1fr;
  }
  .ha-quote-form__field--full {
    grid-column: auto;
  }
}


/* =========================================================
   V9.5 — Continue Exploring hierarchy
   4 room alternatives + Signature Suite on its own row
   ========================================================= */

.ha-room-related__grid--rooms {
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.ha-room-related__grid--rooms .ha-room-related__card > div {
  aspect-ratio: 4 / 5;
}
.ha-room-related__grid--rooms .ha-room-related__card h3 {
  font-size: clamp(28px, 2.55vw, 40px);
}

.ha-room-related__signature {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  min-height: 520px;
  margin-top: 70px;
  overflow: hidden;
  background: var(--ha-ink);
  color: var(--ha-white);
}
.ha-room-related__signature-media {
  min-height: 520px;
  overflow: hidden;
}
.ha-room-related__signature-media img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: transform .9s var(--ha-ease);
}
.ha-room-related__signature:hover .ha-room-related__signature-media img {
  transform: scale(1.018);
}
.ha-room-related__signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(38px, 5vw, 72px);
}
.ha-room-related__signature-kicker {
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.ha-room-related__signature h3 {
  margin: 14px 0 0;
  font-family: var(--ha-serif);
  font-size: clamp(48px, 4.6vw, 76px);
  font-weight: 500;
  line-height: .98;
}
.ha-room-related__signature p {
  max-width: 470px;
  margin: 23px 0 28px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.66);
}
.ha-room-related__signature .ha-link {
  color: var(--ha-white);
}

@media(max-width:1100px){
  .ha-room-related__grid--rooms {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 45px 18px;
  }
}
@media(max-width:820px){
  .ha-room-related__signature {
    grid-template-columns: 1fr;
  }
  .ha-room-related__signature-media {
    min-height: 62vw;
  }
}
@media(max-width:640px){
  .ha-room-related__grid--rooms {
    grid-template-columns: 1fr;
  }
  .ha-room-related__grid--rooms .ha-room-related__card > div {
    aspect-ratio: 4 / 3;
  }
  .ha-room-related__signature {
    margin-top: 52px;
  }
  .ha-room-related__signature-copy {
    padding: 34px 24px 42px;
  }
}


/* =========================================================
   V10 — DESKTOP FINAL POLISH
   Refined rhythm, sticky navigation, typography, hierarchy.
   ========================================================= */

/* Keep fixed navigation elegant rather than bulky. */
body.ha-home .ha-header,
body.ha-home .ha-header--inner {
  transition:
    height .35s var(--ha-ease),
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}
body.ha-home .ha-header__inner {
  transition: height .35s var(--ha-ease);
}
body.ha-home .ha-brand__name,
body.ha-home .ha-brand__city,
body.ha-home .ha-nav a,
body.ha-home .ha-header__book,
body.ha-home .ha-header__quote {
  transition:
    font-size .35s var(--ha-ease),
    letter-spacing .35s var(--ha-ease),
    min-height .35s var(--ha-ease),
    padding .35s var(--ha-ease),
    opacity .25s ease,
    background .25s ease,
    color .25s ease;
}

body.ha-home .ha-header.is-scrolled,
body.ha-home .ha-header--inner.is-scrolled {
  background: rgba(250,248,243,.985);
  border-bottom-color: rgba(21,19,15,.12);
  box-shadow: 0 9px 28px rgba(31,24,18,.055);
}
body.ha-home .ha-header.is-scrolled .ha-header__inner,
body.ha-home .ha-header--inner.is-scrolled .ha-header__inner {
  height: 68px;
}
body.ha-home .ha-header.is-scrolled .ha-brand__name,
body.ha-home .ha-header--inner.is-scrolled .ha-brand__name {
  font-size: 21px;
}
body.ha-home .ha-header.is-scrolled .ha-brand__city,
body.ha-home .ha-header--inner.is-scrolled .ha-brand__city {
  margin-top: 3px;
  font-size: 6px;
}
body.ha-home .ha-header.is-scrolled .ha-header__book,
body.ha-home .ha-header--inner.is-scrolled .ha-header__book,
body.ha-home .ha-header.is-scrolled .ha-header__quote,
body.ha-home .ha-header--inner.is-scrolled .ha-header__quote {
  min-height: 38px;
  padding-inline: 14px;
}

/* Fixed header shouldn't hide anchors. */
body.ha-home section[id] {
  scroll-margin-top: 96px;
}

/* Better editorial line length and heading balance. */
body.ha-home .ha-section-head h2,
body.ha-home .ha-stay-section__head h2,
body.ha-home .ha-room-related__head h2 {
  text-wrap: balance;
}
body.ha-home .ha-section-head > p,
body.ha-home .ha-stay-section__head > p {
  max-width: 520px;
}
body.ha-home .ha-display {
  text-wrap: balance;
}

/* Homepage hero: slightly more restrained and premium at large desktop sizes. */
@media (min-width: 1280px) {
  body.ha-home .ha-hero__panel {
    width: min(650px, 50vw);
    padding: 54px 58px 56px;
  }
  body.ha-home .ha-hero__panel h1 {
    font-size: clamp(66px, 5.6vw, 96px);
  }
  body.ha-home .ha-hero__panel p {
    max-width: 510px;
  }
}

/* Room cards: consistent optical baseline without forcing text boxes. */
body.ha-home .ha-room-card__body,
body.ha-home .ha-stay-card__body {
  padding-top: 15px;
}
body.ha-home .ha-room-card h3,
body.ha-home .ha-stay-card h3 {
  text-wrap: balance;
}
body.ha-home .ha-room-card p,
body.ha-home .ha-stay-card p {
  max-width: 470px;
}

/* STAY page: cleaner separation between room collection and signature stay. */
body.ha-home .ha-stay-amenities {
  border-top: 1px solid rgba(21,19,15,.07);
}
body.ha-home .ha-signature {
  position: relative;
}
body.ha-home .ha-signature::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(calc(100% - 64px), var(--ha-max));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.11);
}

/* Detail page hero: keep copy visually separated from photography. */
body.ha-home .ha-room-detail__hero-copy {
  max-width: 1160px;
}
body.ha-home .ha-room-detail__hero-copy h1 {
  text-wrap: balance;
}
body.ha-home .ha-room-detail__hero-copy p {
  max-width: 620px;
}

/* Room facts: avoid a sparse sixth column when there are only 4–5 facts. */
body.ha-home .ha-room-facts__grid {
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
}
body.ha-home .ha-room-facts__grid div {
  min-height: 86px;
}

/* Continue Exploring: stronger hierarchy for room row + Signature Stay. */
body.ha-home .ha-room-related {
  border-top: 1px solid rgba(21,19,15,.07);
  padding-top: clamp(95px, 9vw, 135px);
}
body.ha-home .ha-room-related__head {
  margin-bottom: 38px;
}
body.ha-home .ha-room-related__signature {
  margin-top: 78px;
}
body.ha-home .ha-room-related__signature-copy {
  position: relative;
}
body.ha-home .ha-room-related__signature-copy::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--ha-gold);
}

/* Journal: make it feel more like a magazine, less like a post grid. */
body.ha-home .ha-journal-card__body {
  padding-top: 16px;
}
body.ha-home .ha-journal-card h2 {
  text-wrap: balance;
}
body.ha-home .ha-journal-feature__copy {
  border-left: 1px solid rgba(255,255,255,.09);
}
body.ha-home .ha-journal-cats__inner {
  min-height: 34px;
}

/* Heritage: keep the historical badge present but secondary. */
body.ha-home .ha-historical__badge {
  width: 220px;
}
body.ha-home .ha-historical__badge img {
  filter: saturate(.92);
}

/* Inner page final CTA: more breathing room and clearer conversion point. */
body.ha-home .ha-inner-final {
  border-top: 1px solid rgba(255,255,255,.08);
}
body.ha-home .ha-inner-final h2 {
  text-wrap: balance;
}

/* Footer refinement */
body.ha-home .ha-footer {
  border-top: 1px solid rgba(255,255,255,.08);
}
body.ha-home .ha-footer__top {
  align-items: start;
}

/* Desktop quote panel feels intentionally separate from booking engine. */
@media (min-width: 1121px) {
  body.ha-home .ha-header__quote {
    min-width: 154px;
  }
  body.ha-home .ha-header__book {
    min-width: 98px;
  }
}

/* Avoid overly wide navigation crowding on 13-inch laptop widths. */
@media (min-width: 981px) and (max-width: 1250px) {
  body.ha-home .ha-header__inner {
    width: min(calc(100% - 38px), var(--ha-max));
    gap: 15px;
  }
  body.ha-home .ha-nav {
    gap: 16px;
  }
  body.ha-home .ha-nav a {
    font-size: 8px;
    letter-spacing: .12em;
  }
  body.ha-home .ha-header__quote {
    min-width: auto;
    padding-inline: 12px;
    font-size: 8px;
  }
  body.ha-home .ha-header__book {
    padding-inline: 13px;
    font-size: 8px;
  }
}


/* =========================================================
   V11 — MOBILE PREMIUM PASS
   Mobile is designed independently, not merely scaled down.
   ========================================================= */

@media (max-width: 840px) {
  :root {
    --ha-mobile-edge: 20px;
  }

  html {
    scroll-padding-top: 82px;
  }

  body.ha-home {
    overflow-x: hidden;
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  body.ha-home .ha-shell {
    width: calc(100% - (var(--ha-mobile-edge) * 2));
  }

  /* -------------------------
     MOBILE HEADER
     ------------------------- */
  body.ha-home .ha-header,
  body.ha-home .ha-header--inner {
    min-height: 68px;
    background: rgba(250,248,243,.985);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  body.ha-home .ha-header__inner,
  body.ha-home .ha-header.is-scrolled .ha-header__inner,
  body.ha-home .ha-header--inner.is-scrolled .ha-header__inner {
    width: calc(100% - 28px);
    height: 68px;
    grid-template-columns: 62px 1fr 62px;
    gap: 6px;
  }

  body.ha-home .ha-header__inner > div:first-child {
    display: flex;
    justify-content: flex-start;
  }

  body.ha-home .ha-menu-toggle {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    font-size: 8px;
    letter-spacing: .15em;
  }

  body.ha-home .ha-brand {
    width: 100%;
    justify-self: center;
  }

  body.ha-home .ha-brand__name,
  body.ha-home .ha-header.is-scrolled .ha-brand__name,
  body.ha-home .ha-header--inner.is-scrolled .ha-brand__name {
    font-size: 18px;
    letter-spacing: .095em;
    white-space: nowrap;
  }

  body.ha-home .ha-brand__city,
  body.ha-home .ha-header.is-scrolled .ha-brand__city,
  body.ha-home .ha-header--inner.is-scrolled .ha-brand__city {
    margin-top: 4px;
    font-size: 5px;
    letter-spacing: .34em;
  }

  body.ha-home .ha-header__right {
    min-width: 62px;
  }

  body.ha-home .ha-header__right > * {
    display: none !important;
  }

  body.ha-home main {
    padding-top: 68px;
  }

  body.admin-bar.ha-home .ha-header,
  body.admin-bar.ha-home .ha-header--inner {
    top: 46px;
  }

  /* -------------------------
     FULL-SCREEN MOBILE MENU
     ------------------------- */
  body.ha-home .ha-drawer__inner {
    min-height: 100dvh;
    padding:
      calc(24px + env(safe-area-inset-top))
      22px
      calc(22px + env(safe-area-inset-bottom));
  }

  body.ha-home .ha-drawer__top .ha-brand__name {
    color: var(--ha-white);
    font-size: 17px;
  }

  body.ha-home .ha-drawer__close {
    min-width: 48px;
    min-height: 44px;
    text-align: right;
  }

  body.ha-home .ha-drawer nav {
    margin: 44px 0 34px;
  }

  body.ha-home .ha-drawer nav a {
    padding: 6px 0;
    font-size: clamp(42px, 12vw, 60px);
    line-height: 1.02;
    letter-spacing: -.025em;
  }

  body.ha-home .ha-drawer__quote,
  body.ha-home .ha-drawer__book {
    width: 100%;
    min-height: 50px;
  }

  /* -------------------------
     HOME HERO
     ------------------------- */
  body.ha-home .ha-hero {
    min-height: calc(100svh - 68px);
  }

  body.ha-home .ha-hero__layout {
    min-height: calc(100svh - 68px);
    align-items: flex-end;
    padding-bottom: 14px;
  }

  body.ha-home .ha-hero__media img {
    object-position: 63% center;
  }

  body.ha-home .ha-hero::after {
    background:
      linear-gradient(180deg, rgba(8,8,7,.06) 0%, rgba(8,8,7,.12) 43%, rgba(8,8,7,.52) 100%);
  }

  body.ha-home .ha-hero__panel {
    width: calc(100% - 12px);
    margin: 0 6px;
    padding: 25px 20px 24px;
    background: rgba(18,16,14,.93);
    border-left: 1px solid rgba(180,154,120,.48);
    box-shadow: 0 18px 45px rgba(0,0,0,.21);
  }

  body.ha-home .ha-hero__panel .ha-kicker {
    font-size: 8px;
  }

  body.ha-home .ha-hero__panel h1 {
    margin-top: 14px;
    max-width: 95%;
    font-size: clamp(51px, 15vw, 69px);
    line-height: .94;
  }

  body.ha-home .ha-hero__panel p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.65;
  }

  body.ha-home .ha-hero__actions {
    margin-top: 22px;
    display: block;
  }

  /* Persistent conversion bar already handles booking on mobile. */
  body.ha-home .ha-hero__actions .ha-btn:first-child {
    display: none;
  }

  body.ha-home .ha-hero__actions .ha-btn:last-child {
    width: 100%;
    min-height: 47px;
  }

  /* -------------------------
     GENERAL TYPOGRAPHY / RHYTHM
     ------------------------- */
  body.ha-home .ha-kicker {
    font-size: 8px;
    letter-spacing: .16em;
  }

  body.ha-home .ha-kicker::before {
    width: 24px;
  }

  body.ha-home .ha-section-head,
  body.ha-home .ha-stay-section__head {
    display: block;
    margin-bottom: 28px;
    padding-bottom: 0;
  }

  body.ha-home .ha-section-head h2,
  body.ha-home .ha-stay-section__head h2,
  body.ha-home .ha-service h2,
  body.ha-home .ha-manifesto__copy h2 {
    margin-top: 13px;
    font-size: clamp(47px, 13.5vw, 64px);
    line-height: .96;
  }

  body.ha-home .ha-section-head p,
  body.ha-home .ha-stay-section__head p {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.7;
  }

  /* -------------------------
     HOME MANIFESTO
     ------------------------- */
  body.ha-home .ha-manifesto {
    padding: 78px 0 88px;
  }

  body.ha-home .ha-manifesto__grid {
    gap: 34px;
  }

  body.ha-home .ha-manifesto__image {
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-manifesto__copy p {
    margin-top: 21px;
    font-size: 14px;
    line-height: 1.72;
  }

  body.ha-home .ha-manifesto__quote {
    margin-top: 28px;
    padding-top: 16px;
    font-size: 26px;
  }

  /* -------------------------
     ROOMS / STAY CARDS
     ------------------------- */
  body.ha-home .ha-rooms {
    padding-bottom: 96px;
  }

  body.ha-home .ha-room-grid,
  body.ha-home .ha-room-grid--five,
  body.ha-home .ha-stay-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  body.ha-home .ha-room-grid--five .ha-room-card,
  body.ha-home .ha-room-grid--five .ha-room-card--wide,
  body.ha-home .ha-stay-card,
  body.ha-home .ha-stay-card--wide {
    grid-column: auto !important;
  }

  body.ha-home .ha-room-card__media,
  body.ha-home .ha-room-grid--five .ha-room-card--wide .ha-room-card__media,
  body.ha-home .ha-stay-card__media,
  body.ha-home .ha-stay-card--wide .ha-stay-card__media {
    aspect-ratio: 4 / 3 !important;
  }

  body.ha-home .ha-room-card__body,
  body.ha-home .ha-stay-card__body {
    padding-top: 13px;
  }

  body.ha-home .ha-room-card h3,
  body.ha-home .ha-stay-card h3 {
    font-size: clamp(35px, 10.5vw, 46px);
  }

  body.ha-home .ha-room-card p,
  body.ha-home .ha-stay-card p {
    margin-top: 10px;
    font-size: 13px;
  }

  /* -------------------------
     LOCATION / TERRACE
     ------------------------- */
  body.ha-home .ha-location__media,
  body.ha-home .ha-terrace__media {
    min-height: 68vw;
  }

  body.ha-home .ha-location__copy,
  body.ha-home .ha-terrace__copy {
    padding: 39px 20px 46px;
  }

  body.ha-home .ha-location__copy h2,
  body.ha-home .ha-terrace__copy h2 {
    font-size: clamp(47px, 13.5vw, 64px);
  }

  body.ha-home .ha-location__copy > p,
  body.ha-home .ha-terrace__copy p {
    font-size: 14px;
  }

  body.ha-home .ha-location__fact {
    grid-template-columns: 78px 1fr;
    gap: 13px;
  }

  /* -------------------------
     SIGNATURE STAY / SUITE
     ------------------------- */
  body.ha-home .ha-suites,
  body.ha-home .ha-signature {
    padding: 92px 0;
  }

  body.ha-home .ha-suite-feature__media {
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-suite-feature__body {
    padding: 26px 20px 31px;
  }

  body.ha-home .ha-suite-feature__title h3,
  body.ha-home .ha-signature__copy h3 {
    font-size: clamp(45px, 13vw, 62px);
  }

  body.ha-home .ha-signature__feature {
    min-height: 0;
  }

  body.ha-home .ha-signature__media {
    min-height: 72vw;
  }

  body.ha-home .ha-signature__copy {
    padding: 32px 21px 36px;
  }

  body.ha-home .ha-signature__meta {
    grid-template-columns: 1fr 1fr;
    margin: 26px 0;
  }

  /* -------------------------
     EXPERIENCE / HERITAGE
     ------------------------- */
  body.ha-home .ha-experience,
  body.ha-home .ha-heritage,
  body.ha-home .ha-roman-rhythm {
    padding: 90px 0;
  }

  body.ha-home .ha-experience-card__media,
  body.ha-home .ha-heritage-v4__media {
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-experience-card__body h3 {
    font-size: clamp(39px, 11vw, 52px);
  }

  body.ha-home .ha-heritage-v4__hero {
    aspect-ratio: 4 / 4.4;
  }

  body.ha-home .ha-heritage-v4__intro h2,
  body.ha-home .ha-roman-rhythm__head h2 {
    font-size: clamp(47px, 13vw, 64px);
  }

  body.ha-home .ha-heritage-v4__footer {
    margin-top: 40px;
  }

  body.ha-home .ha-historical__badge {
    width: 126px;
  }

  /* -------------------------
     INNER PAGE HERO
     ------------------------- */
  body.ha-home .ha-stay-hero,
  body.ha-home .ha-inner-hero,
  body.ha-home .ha-room-detail__hero {
    min-height: 72svh;
  }

  body.ha-home .ha-stay-hero__copy,
  body.ha-home .ha-inner-hero__copy {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  body.ha-home .ha-stay-hero h1,
  body.ha-home .ha-inner-hero__copy h1,
  body.ha-home .ha-room-detail__hero-copy h1 {
    font-size: clamp(54px, 15vw, 72px);
    line-height: .94;
  }

  body.ha-home .ha-stay-hero p,
  body.ha-home .ha-inner-hero__copy p,
  body.ha-home .ha-room-detail__hero-copy p {
    margin-top: 19px;
    font-size: 14px;
    line-height: 1.65;
  }

  body.ha-home .ha-room-detail__hero-copy {
    padding-bottom: 38px;
  }

  body.ha-home .ha-room-detail__hero-copy .ha-btn {
    width: 100%;
    max-width: 310px;
  }

  /* -------------------------
     ROOM FACTS / SERVICES
     ------------------------- */
  body.ha-home .ha-room-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  body.ha-home .ha-room-facts__grid div {
    min-height: 72px;
    padding: 14px 13px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 8px;
    line-height: 1.5;
  }

  body.ha-home .ha-room-story {
    padding: 78px 0;
  }

  body.ha-home .ha-room-story__grid {
    gap: 25px;
  }

  body.ha-home .ha-room-story h2,
  body.ha-home .ha-room-services__head h2,
  body.ha-home .ha-stay-amenities__head h2 {
    font-size: clamp(45px, 13vw, 61px);
  }

  body.ha-home .ha-room-story p {
    font-size: 14px;
  }

  body.ha-home .ha-room-services,
  body.ha-home .ha-stay-amenities {
    padding-bottom: 82px;
  }

  body.ha-home .ha-room-services__grid,
  body.ha-home .ha-stay-amenities__grid {
    grid-template-columns: 1fr;
  }

  body.ha-home .ha-room-services__item,
  body.ha-home .ha-room-services__item:nth-child(odd),
  body.ha-home .ha-stay-amenities__grid > div,
  body.ha-home .ha-stay-amenities__grid > div:nth-child(odd) {
    min-height: 0;
    margin: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ha-line);
  }

  body.ha-home .ha-room-services__item strong,
  body.ha-home .ha-stay-amenities__grid strong {
    font-size: 25px;
  }

  /* -------------------------
     ROOM GALLERIES
     ------------------------- */
  body.ha-home .ha-room-gallery {
    padding-bottom: 85px;
  }

  body.ha-home .ha-room-gallery__grid,
  body.ha-home .ha-room-detail--suite .ha-room-gallery__grid {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
    gap: 12px;
  }

  body.ha-home .ha-room-gallery__item,
  body.ha-home .ha-room-gallery__item--1,
  body.ha-home .ha-room-detail--suite .ha-room-gallery__item,
  body.ha-home .ha-room-detail--suite .ha-room-gallery__item--1,
  body.ha-home .ha-room-detail--suite .ha-room-gallery__item--4 {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3 !important;
  }

  body.ha-home .ha-room-gallery__item img {
    object-position: center;
  }

  /* -------------------------
     CONTINUE EXPLORING
     ------------------------- */
  body.ha-home .ha-room-related {
    padding-top: 78px;
    padding-bottom: 92px;
  }

  body.ha-home .ha-room-related__head h2 {
    font-size: clamp(48px, 13vw, 64px);
  }

  body.ha-home .ha-room-related__grid--rooms {
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
  }

  body.ha-home .ha-room-related__grid--rooms .ha-room-related__card > div {
    aspect-ratio: 4 / 4.5;
  }

  body.ha-home .ha-room-related__card h3,
  body.ha-home .ha-room-related__grid--rooms .ha-room-related__card h3 {
    font-size: 29px;
  }

  body.ha-home .ha-room-related__signature {
    margin-top: 52px;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  body.ha-home .ha-room-related__signature-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-room-related__signature-copy {
    padding: 30px 20px 34px;
  }

  body.ha-home .ha-room-related__signature h3 {
    font-size: clamp(44px, 12.5vw, 58px);
  }

  /* -------------------------
     JOURNAL
     ------------------------- */
  body.ha-home .ha-journal-hero {
    padding: 82px 0 58px;
  }

  body.ha-home .ha-journal-hero__grid {
    display: block;
  }

  body.ha-home .ha-journal-hero h1,
  body.ha-home .ha-archive-title h1 {
    font-size: clamp(59px, 17vw, 82px);
  }

  body.ha-home .ha-journal-hero__intro {
    margin: 22px 0 0;
    font-size: 14px;
  }

  body.ha-home .ha-journal-cats {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body.ha-home .ha-journal-cats::-webkit-scrollbar {
    display: none;
  }

  body.ha-home .ha-journal-cats__inner {
    width: max-content;
    min-width: 100%;
    flex-wrap: nowrap;
    padding-right: 18px;
  }

  body.ha-home .ha-journal-content {
    padding: 60px 0 95px;
  }

  body.ha-home .ha-journal-feature {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 62px;
  }

  body.ha-home .ha-journal-feature__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-journal-feature__copy {
    padding: 30px 20px 34px;
    border-left: 0;
  }

  body.ha-home .ha-journal-feature h2 {
    font-size: clamp(43px, 12vw, 56px);
  }

  body.ha-home .ha-journal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.ha-home .ha-journal-card__media {
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-journal-card h2 {
    font-size: clamp(36px, 10.5vw, 47px);
  }

  /* Article reading width / typography */
  body.ha-home .ha-article-head {
    padding: 82px 0 40px;
  }

  body.ha-home .ha-article-head h1 {
    font-size: clamp(49px, 14vw, 68px);
    line-height: .96;
  }

  body.ha-home .ha-article-head__excerpt {
    margin-top: 21px;
    font-size: 15px;
  }

  body.ha-home .ha-article-hero {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-article-body {
    width: calc(100% - 40px);
    padding: 58px 0 85px;
  }

  body.ha-home .ha-article-body p,
  body.ha-home .ha-article-body li {
    font-size: 19px;
    line-height: 1.66;
  }

  body.ha-home .ha-article-body h2 {
    font-size: 39px;
  }

  body.ha-home .ha-article-body h3 {
    font-size: 31px;
  }

  /* -------------------------
     ROME / EXPERIENCE INNER PAGES
     ------------------------- */
  body.ha-home .ha-experience-feature__media,
  body.ha-home .ha-rome-story figure {
    min-height: 68vw;
  }

  body.ha-home .ha-experience-feature__copy,
  body.ha-home .ha-rome-story__copy {
    padding: 36px 20px 43px;
  }

  body.ha-home .ha-experience-feature__copy h2,
  body.ha-home .ha-rome-story__copy h2 {
    font-size: clamp(47px, 13vw, 63px);
  }

  body.ha-home .ha-rome-view {
    min-height: 62svh;
  }

  body.ha-home .ha-rome-view__copy {
    left: 20px;
    right: 20px;
    bottom: 34px;
  }

  body.ha-home .ha-rome-view__copy h2 {
    font-size: clamp(46px, 13vw, 62px);
  }

  /* -------------------------
     QUOTE MODAL
     ------------------------- */
  body.ha-home .ha-quote-modal {
    align-items: flex-end;
  }

  body.ha-home .ha-quote-modal__panel {
    width: 100%;
    height: min(92dvh, 780px);
    padding: 24px 20px calc(30px + env(safe-area-inset-bottom));
    border-radius: 14px 14px 0 0;
    transform: translateY(24px);
  }

  body.ha-home .ha-quote-modal.is-open .ha-quote-modal__panel {
    transform: none;
  }

  body.ha-home .ha-quote-modal__top {
    position: sticky;
    z-index: 2;
    top: -24px;
    margin: -24px -20px 0;
    padding: 22px 20px 18px;
    background: var(--ha-paper);
  }

  body.ha-home .ha-quote-modal__top h2 {
    font-size: 43px;
  }

  body.ha-home .ha-quote-modal__intro {
    margin-top: 22px;
  }

  body.ha-home .ha-quote-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.ha-home .ha-quote-form__field--full {
    grid-column: auto;
  }

  body.ha-home .ha-quote-form input,
  body.ha-home .ha-quote-form select,
  body.ha-home .ha-quote-form textarea {
    min-height: 50px;
    font-size: 16px; /* prevents iOS input zoom */
  }

  /* -------------------------
     PERSISTENT MOBILE ACTIONS
     ------------------------- */
  body.ha-home .ha-mobile-actions {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    min-height: 58px;
    border-radius: 2px;
    box-shadow: 0 15px 42px rgba(0,0,0,.22);
  }

  body.ha-home .ha-mobile-actions button,
  body.ha-home .ha-mobile-actions a {
    min-height: 58px;
    font-size: 8px;
    letter-spacing: .105em;
  }

  /* -------------------------
     FINAL CTA / FOOTER
     ------------------------- */
  body.ha-home .ha-final,
  body.ha-home .ha-inner-final {
    padding: 82px 0 88px;
  }

  body.ha-home .ha-final__copy h2,
  body.ha-home .ha-inner-final h2 {
    font-size: clamp(51px, 14vw, 68px);
  }

  body.ha-home .ha-footer {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: calc(105px + env(safe-area-inset-bottom));
  }
}

/* Extra-small phones */
@media (max-width: 430px) {
  body.ha-home .ha-room-related__grid--rooms {
    grid-template-columns: 1fr;
    gap: 39px;
  }

  body.ha-home .ha-room-related__grid--rooms .ha-room-related__card > div {
    aspect-ratio: 4 / 3;
  }

  body.ha-home .ha-signature__meta {
    grid-template-columns: 1fr;
  }

  body.ha-home .ha-hero__panel h1 {
    font-size: clamp(48px, 14vw, 61px);
  }

  body.ha-home .ha-journal-cats__inner {
    gap: 8px 18px;
  }
}

/* Landscape phone: keep usable vertical space. */
@media (max-width: 900px) and (max-height: 520px) and (orientation: landscape) {
  body.ha-home .ha-hero,
  body.ha-home .ha-hero__layout,
  body.ha-home .ha-stay-hero,
  body.ha-home .ha-inner-hero,
  body.ha-home .ha-room-detail__hero {
    min-height: 620px;
  }

  body.ha-home .ha-mobile-actions {
    display: none;
  }
}


/* =========================================================
   V14 — Eight-language staging preview
   EN · IT · FR · DE · ES · PT · RU · JA
   ========================================================= */

.ha-language-switcher__menu {
  grid-template-columns: repeat(2, minmax(42px, 1fr));
  min-width: 118px;
}
.ha-language-switcher__menu a {
  text-align: center;
}

/* Japanese requires a type system designed for CJK glyphs rather than
   forcing the Latin display face onto Japanese characters. */
body.ha-lang-ja {
  font-family: "Noto Sans JP", "Manrope", sans-serif;
}
body.ha-lang-ja .ha-display,
body.ha-lang-ja h1,
body.ha-lang-ja h2,
body.ha-lang-ja h3,
body.ha-lang-ja .ha-brand__name,
body.ha-lang-ja .ha-room-services__item strong,
body.ha-lang-ja .ha-stay-amenities__grid strong {
  font-family: "Noto Serif JP", serif;
  letter-spacing: .01em;
  line-height: 1.18;
}
body.ha-lang-ja .ha-kicker,
body.ha-lang-ja .ha-nav a,
body.ha-lang-ja .ha-btn,
body.ha-lang-ja .ha-mobile-actions button,
body.ha-lang-ja .ha-mobile-actions a {
  letter-spacing: .06em;
}
body.ha-lang-ja .ha-hero__panel h1,
body.ha-lang-ja .ha-inner-hero__copy h1,
body.ha-lang-ja .ha-stay-hero h1,
body.ha-lang-ja .ha-room-detail__hero-copy h1 {
  line-height: 1.13;
}

/* Russian strings can be longer than English labels. Give conversion CTAs
   enough breathing room without changing the visual hierarchy. */
body.ha-lang-ru .ha-header__quote {
  min-width: 188px;
}
body.ha-lang-ru .ha-btn {
  letter-spacing: .07em;
}

@media (max-width: 840px) {
  .ha-language-switcher--mobile .ha-language-switcher__menu {
    grid-template-columns: repeat(4, minmax(40px, 1fr));
    width: min(100%, 310px);
  }
}


/* =========================================================
   V14.4 — Multilingual final polish
   ========================================================= */

/* Long German/French/Portuguese navigation labels need slightly more room
   while preserving the same visual hierarchy. */
@media (min-width: 981px) {
  body.ha-lang-de .ha-nav,
  body.ha-lang-fr .ha-nav,
  body.ha-lang-pt .ha-nav {
    gap: 14px;
  }
  body.ha-lang-de .ha-nav a,
  body.ha-lang-fr .ha-nav a,
  body.ha-lang-pt .ha-nav a {
    letter-spacing: .105em;
  }
  body.ha-lang-de .ha-header__quote,
  body.ha-lang-fr .ha-header__quote,
  body.ha-lang-pt .ha-header__quote {
    padding-inline: 12px;
  }
}

/* Cyrillic editorial copy reads better with slightly more line-height. */
body.ha-lang-ru .ha-display,
body.ha-lang-ru h1,
body.ha-lang-ru h2,
body.ha-lang-ru h3 {
  line-height: 1.02;
}

/* Japanese headings should not inherit Western all-caps tracking. */
body.ha-lang-ja .ha-kicker,
body.ha-lang-ja .ha-room-related__signature-kicker {
  text-transform: none;
}


/* =========================================================
   V14.5 — Journal historical-content fallback
   ========================================================= */

.ha-journal-original-note {
  border-top: 1px solid var(--ha-line);
  border-bottom: 1px solid var(--ha-line);
  background: rgba(250,248,243,.72);
}
.ha-journal-original-note .ha-shell {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.ha-journal-original-note__lang,
.ha-journal-source-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  min-height: 21px;
  padding: 2px 7px;
  border: 1px solid rgba(90,34,40,.34);
  color: var(--ha-wine);
  font-size: 7px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .13em;
}
.ha-journal-original-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(21,19,15,.58);
}
.ha-journal-source-lang {
  min-width: 27px;
  min-height: 18px;
  padding: 2px 6px;
  font-size: 6px;
}

@media(max-width:640px){
  .ha-journal-original-note .ha-shell {
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 16px;
    align-items: flex-start;
  }
}


/* =========================================================
   V15 — Pre-launch functional hardening
   ========================================================= */

.ha-article-language-note {
  width: min(calc(100% - 48px), 860px);
  margin: 44px auto -20px;
  padding: 14px 0 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--ha-line);
  border-bottom: 1px solid var(--ha-line);
}
.ha-article-language-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(21,19,15,.58);
}

/* Keyboard focus should be visible without changing the visual language. */
body.ha-home a:focus-visible,
body.ha-home button:focus-visible,
body.ha-home input:focus-visible,
body.ha-home select:focus-visible,
body.ha-home textarea:focus-visible {
  outline: 2px solid var(--ha-wine);
  outline-offset: 3px;
}

@media(max-width:640px){
  .ha-article-language-note {
    width: calc(100% - 40px);
    margin-top: 28px;
    margin-bottom: -10px;
    align-items: flex-start;
  }
}


/* =========================================================
   V15.7 — Contrast + Family Room bathtub correction
   ========================================================= */

/* Signature Stay is on a dark panel: title must always remain legible. */
body.ha-home .ha-signature__copy h3,
.ha-signature__copy h3 {
  color: #fff !important;
}

/* Family Room: make the bathtub/no-shower distinction impossible to miss. */
.ha-room-facts__grid .ha-room-facts__item--highlight {
  color: #fff;
  background: rgba(255,255,255,.085);
  font-weight: 800;
}


/* =========================================================
   V15.8 — Journal polish
   ========================================================= */

/* Featured Journal article sits on a black editorial panel. */
.ha-journal-feature h2,
.ha-journal-feature h2 a,
.ha-journal-feature__title,
.ha-journal-feature__title a,
.ha-journal-feature .entry-title,
.ha-journal-feature .entry-title a {
  color: #fff !important;
}

/* Keep supporting copy legible without flattening hierarchy. */
.ha-journal-feature p,
.ha-journal-feature__excerpt {
  color: rgba(255,255,255,.72);
}

/* Default WordPress category labels should never look like editorial content. */
.ha-journal-meta:empty,
.ha-journal-card__category:empty,
.ha-journal-feature__category:empty {
  display: none !important;
}
