/* St. George Mystras — responsive pre-opening website */

:root {
  --ivory: #f7f3ea;
  --paper: #fbf9f4;
  --sand: #e7ddce;
  --olive: #77745c;
  --deep-olive: #545241;
  --gold: #b58a48;
  --gold-text: #7d5925;
  --gold-light: #d7b779;
  --gold-light-text: #ead39c;
  --charcoal: #24221e;
  --ink-soft: #5e594f;
  --muted: #686158;
  --line: rgba(36, 34, 30, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Baskerville,
    Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --page: min(92vw, 1380px);
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  color-scheme: light;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--paper);
  background: var(--olive);
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: rgba(181, 138, 72, 0.28);
}

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--gold-text);
}

#main-content:focus,
[data-focus-silent]:focus {
  outline: none;
  box-shadow: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--charcoal);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(100px, 13vw, 190px);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--deep-olive);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 34px;
  font-size: clamp(4rem, 7.1vw, 7.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 36px;
  font-size: clamp(3.4rem, 5.7vw, 6.6rem);
  letter-spacing: -0.05em;
}

h3 {
  font-size: clamp(2rem, 2.4vw, 3rem);
  letter-spacing: -0.03em;
}

em {
  color: var(--olive);
  font-weight: 400;
}

p {
  color: var(--ink-soft);
}

.lead {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2vw, 1.95rem);
  line-height: 1.42;
}

.section-index {
  color: var(--gold-text);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  width: fit-content;
  border: 0;
  color: var(--charcoal);
  background: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link span:first-child {
  position: relative;
}

.text-link span:first-child::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}

.text-link:hover span:first-child::after {
  transform: scaleX(0.35);
}

.text-link--large {
  gap: 40px;
  font-size: 0.76rem;
}

.link-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(36, 34, 30, 0.35);
  border-radius: 50%;
  place-items: center;
  transition: color 280ms ease, background 280ms ease, transform 280ms var(--ease);
}

.text-link:hover .link-arrow {
  color: var(--paper);
  background: var(--charcoal);
  transform: rotate(-45deg);
}

.text-link:active .link-arrow {
  color: var(--paper);
  background: var(--charcoal);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-inline: 4vw;
  border-bottom: 1px solid transparent;
  transition: height 320ms var(--ease), background 320ms ease, border-color 320ms ease,
    box-shadow 320ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(247, 243, 234, 0.92);
  box-shadow: 0 10px 40px rgba(36, 34, 30, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 12px;
}

.brand__castle {
  display: block;
  width: 70px;
  height: 50px;
  flex: 0 0 auto;
  transition: width 320ms var(--ease), height 320ms var(--ease);
}

.site-header.is-scrolled .brand__castle {
  width: 58px;
  height: 42px;
}

.brand__castle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__name small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
}

.primary-nav > a:hover::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 20px;
  border: 1px solid var(--charcoal);
  transition: color 240ms ease, background 240ms ease;
}

.nav-cta:hover,
.nav-cta:active {
  color: var(--paper);
  background: var(--charcoal);
}

.menu-toggle {
  display: none;
}

.menu-backdrop {
  display: none;
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: min(940px, 100vh);
  min-height: min(940px, 100svh);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__image {
  animation: hero-arrive 900ms var(--ease) both;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(247, 243, 234, 0.98) 0%,
    rgba(247, 243, 234, 0.93) 28%,
    rgba(247, 243, 234, 0.56) 49%,
    rgba(247, 243, 234, 0.03) 72%
  );
}

.hero__content {
  padding-top: var(--header-height);
}

.hero__copy {
  width: min(66vw, 880px);
  padding-block: 100px 80px;
}

.hero__copy h1 {
  max-width: 790px;
  font-size: clamp(3.9rem, 6.5vw, 7.2rem);
  line-height: 0.94;
}

.hero__intro {
  max-width: 620px;
  margin-bottom: 46px;
  color: #49453e;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.concept-label {
  position: absolute;
  right: 4vw;
  bottom: 34px;
  margin: 0;
  padding: 8px 12px;
  color: #fff;
  background: rgba(24, 23, 20, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 4vw;
  display: flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  background: var(--charcoal);
  overflow: hidden;
}

.scroll-cue i::after {
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--gold-light);
  content: "";
  animation: scroll-cue 2s ease-in-out infinite;
}

/* Facts */
.facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 0;
  padding: 0;
  border-left: 1px solid var(--line);
}

.fact {
  display: flex;
  min-height: 165px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact__number {
  order: -1;
  margin: 0;
  color: var(--gold-text);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1;
}

.fact__number--word {
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  font-style: italic;
}

.fact__number--setting {
  max-width: 155px;
  font-size: clamp(1.45rem, 2.25vw, 2.35rem);
  font-style: italic;
  line-height: 1.05;
}

.fact__label {
  max-width: 86px;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Story */
.story__grid {
  display: grid;
  grid-template-columns: 0.35fr 1.45fr 1fr;
  gap: clamp(30px, 5vw, 96px);
}

.story__copy {
  align-self: end;
  padding-top: 120px;
}

.story__copy > p:not(.lead) {
  max-width: 510px;
}

.story-quote,
.rooms-quote {
  margin: 48px 0 0;
  padding: 24px 0 4px 28px;
  border-left: 2px solid var(--gold);
}

.story-quote p,
.rooms-quote p {
  margin: 0;
  color: var(--deep-olive);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-style: italic;
  line-height: 1.45;
}

.name-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) 1fr 1.2fr;
  gap: clamp(36px, 5vw, 88px);
  margin-top: clamp(80px, 10vw, 150px);
  padding-top: clamp(56px, 7vw, 92px);
  border-top: 1px solid var(--line);
}

.name-story__monogram {
  display: grid;
  width: clamp(220px, 18vw, 270px);
  aspect-ratio: 1;
  align-self: start;
  place-items: center;
  color: var(--deep-olive);
}

.name-story__monogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.name-story__heading h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.8rem);
  line-height: 1.02;
}

.name-story__heading h3 em {
  color: var(--deep-olive);
}

.name-story__copy {
  align-self: start;
}

.name-story__copy p {
  max-width: 580px;
}

.name-story__copy p:first-child {
  margin-top: 0;
}

.name-story__note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.rooms-service {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--deep-olive);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

/* Architecture */
.architecture {
  color: var(--paper);
  background: #252820;
  overflow: hidden;
}

.architecture__ornament {
  position: absolute;
  right: -0.05em;
  bottom: -0.34em;
  color: rgba(247, 243, 234, 0.035);
  font-family: var(--serif);
  font-size: min(34vw, 610px);
  line-height: 1;
  pointer-events: none;
}

.architecture__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(70px, 11vw, 180px);
}

.architecture .eyebrow,
.architecture .section-index {
  color: var(--gold-light-text);
}

.architecture h2 {
  max-width: 800px;
}

.architecture em,
.architecture p {
  color: #e9e2d5;
}

.architecture__heading .section-index {
  margin-bottom: 70px;
}

.architecture__copy {
  padding-top: 126px;
}

.architecture__copy > p:not(.lead) {
  max-width: 650px;
}

.architecture-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 56px 0 0;
  padding: 0;
  border-top: 1px solid rgba(247, 243, 234, 0.22);
  border-left: 1px solid rgba(247, 243, 234, 0.22);
}

.architecture-notes > div {
  min-height: 110px;
  padding: 22px;
  border-right: 1px solid rgba(247, 243, 234, 0.22);
  border-bottom: 1px solid rgba(247, 243, 234, 0.22);
}

.architecture-notes dt,
.architecture-notes dd {
  margin: 0;
}

.architecture-notes dt {
  margin-bottom: 7px;
  color: var(--gold-light-text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.architecture-notes dd {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.25;
}

/* Rooms */
.rooms {
  overflow: hidden;
}

.rooms::after {
  position: absolute;
  top: -12vw;
  right: -8vw;
  width: 32vw;
  height: 32vw;
  border: 1px solid rgba(181, 138, 72, 0.28);
  border-radius: 50%;
  content: "";
}

.rooms__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 135px);
}

.editorial-image {
  position: relative;
  margin: 0;
}

.editorial-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 7px 10px;
  color: #fff;
  background: rgba(24, 23, 20, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.editorial-image--room {
  height: min(730px, 67vw);
}

.editorial-image--room img {
  object-position: 53% center;
}

.rooms__content {
  position: relative;
  z-index: 1;
}

.rooms__content .section-index,
.location__content .section-index {
  margin-bottom: 70px;
}

.rooms-quote {
  margin-top: 38px;
  padding-top: 10px;
}

.rooms-note {
  margin-top: 28px;
  font-size: 0.85rem;
}

.room-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  padding: 0;
  border-top: 1px solid rgba(36, 34, 30, 0.24);
  border-bottom: 1px solid rgba(36, 34, 30, 0.24);
}

.room-meta > div {
  padding-block: 20px;
}

.room-meta > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(36, 34, 30, 0.24);
}

.room-meta dt,
.room-meta dd {
  display: block;
  margin: 0;
}

.room-meta dt {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.room-meta dd {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

/* Location */
.location {
  background: var(--paper);
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(70px, 11vw, 180px);
}

.location__content {
  padding-left: clamp(0px, 4vw, 70px);
}

.editorial-image--landscape {
  height: min(850px, 72vw);
}

.location-stamp {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 44px;
  color: var(--deep-olive);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-stamp i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.destination {
  margin-top: clamp(90px, 11vw, 150px);
  padding-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.destination__intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 64px;
}

.destination__intro h3 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.04;
}

.destination__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.destination__grid article {
  min-height: 300px;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.42);
}

.destination__grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--gold-text);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

.destination__grid h4 {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.08;
}

.destination__grid p {
  margin: 0;
  font-size: 0.9rem;
}

/* Experience */
.experience {
  background: var(--ivory);
}

.experience__intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 50px;
  padding-bottom: 80px;
}

.experience__intro .section-index {
  margin-bottom: 58px;
}

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

.experience-item {
  display: grid;
  grid-template-columns: 0.4fr 1fr 1.2fr 0.7fr;
  align-items: center;
  gap: 35px;
  min-height: 170px;
  border-bottom: 1px solid var(--line);
}

.experience-item__number {
  color: var(--gold-text);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.experience-item h3,
.experience-item p {
  margin-bottom: 0;
}

.experience-item h3 {
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.experience-item p {
  max-width: 440px;
  font-size: 0.9rem;
}

.experience-item__status {
  justify-self: end;
  color: var(--deep-olive);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.faq__heading {
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.faq__heading .section-index {
  margin-bottom: 68px;
}

.faq__heading h2 {
  font-size: clamp(3rem, 4.8vw, 5.7rem);
}

.faq__heading > p:last-child {
  max-width: 470px;
}

.faq__list {
  border-top: 1px solid rgba(36, 34, 30, 0.24);
}

.faq details {
  border-bottom: 1px solid rgba(36, 34, 30, 0.24);
}

.faq summary {
  position: relative;
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 58px 24px 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:focus-visible {
  outline-color: var(--deep-olive);
  box-shadow: none;
}

.faq summary::before,
.faq summary::after {
  position: absolute;
  right: 8px;
  width: 22px;
  height: 1px;
  background: var(--deep-olive);
  content: "";
  transition: transform 260ms var(--ease);
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0deg);
}

.faq details > p {
  max-width: 720px;
  margin: 0 58px 0 0;
  padding: 2px 0 34px;
}

/* Updates */
.updates {
  color: var(--paper);
  background: var(--deep-olive);
  overflow: hidden;
}

.updates .eyebrow,
.updates em,
.updates p {
  color: #e9e2d5;
}

.updates .eyebrow {
  color: var(--gold-light-text);
}

.updates__ornament {
  position: absolute;
  right: 0;
  bottom: -0.31em;
  color: rgba(247, 243, 234, 0.045);
  font-family: var(--serif);
  font-size: min(33vw, 570px);
  line-height: 1;
  pointer-events: none;
}

.updates__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(70px, 12vw, 190px);
}

.updates__copy p:not(.eyebrow) {
  max-width: 550px;
}

.updates-panel {
  align-self: center;
  padding: clamp(32px, 4.5vw, 58px);
  border: 1px solid rgba(215, 183, 121, 0.56);
  background: rgba(24, 23, 20, 0.1);
}

.updates-panel__label {
  margin: 0 0 28px;
  color: var(--gold-light-text) !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.updates-panel ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(247, 243, 234, 0.2);
  list-style: none;
}

.updates-panel li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.2);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.updates-panel li span {
  color: var(--gold-light-text);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.updates-panel__status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.updates-panel__status p {
  margin: 0;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.updates-panel__note {
  margin: 20px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  color: var(--paper);
  background: #181714;
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__top {
  min-height: 360px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.footer-brand__signature {
  display: block;
  width: clamp(280px, 22vw, 340px);
  overflow: visible;
}

.footer-brand__signature img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand__location {
  width: 100%;
  color: rgba(247, 243, 234, 0.62);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.footer__status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__status p {
  margin: 0;
  color: rgba(247, 243, 234, 0.65);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pulse {
  position: relative;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.pulse::after {
  position: absolute;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  content: "";
  inset: -5px;
  animation: pulse 2.2s ease-out infinite;
}

.footer__bottom {
  min-height: 105px;
}

.footer__bottom p,
.footer__bottom a {
  margin: 0;
  color: rgba(247, 243, 234, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer__bottom nav {
  display: flex;
  gap: 30px;
}

.footer__bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms ease;
}

.footer__bottom a:hover,
.footer__bottom a:active {
  color: var(--gold-light);
}

/* Error page */
.error-page {
  min-height: 100vh;
  min-height: 100svh;
}

.error-page .site-header {
  position: absolute;
}

.error-page__main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: calc(var(--header-height) + 90px) 90px;
  align-items: center;
}

.error-page__content {
  max-width: 900px;
}

.error-page__content h1 {
  max-width: 820px;
}

.error-page__intro {
  max-width: 620px;
  margin-bottom: 44px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

/* Motion */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 850ms var(--ease) var(--reveal-delay, 0ms),
    transform 850ms var(--ease) var(--reveal-delay, 0ms);
}

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

.facts .reveal:nth-child(2),
.experience-item:nth-child(2) {
  --reveal-delay: 100ms;
}

.facts .reveal:nth-child(3),
.experience-item:nth-child(3) {
  --reveal-delay: 180ms;
}

.facts .reveal:nth-child(4) {
  --reveal-delay: 260ms;
}

.facts .reveal:nth-child(5) {
  --reveal-delay: 340ms;
}

.facts .reveal:nth-child(6) {
  --reveal-delay: 420ms;
}

@keyframes hero-arrive {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scroll-cue {
  0% {
    left: -16px;
  }
  100% {
    left: 42px;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

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

  .site-header {
    padding-inline: 4.5vw;
  }

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

  .menu-ready .menu-backdrop {
    position: fixed;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(24, 23, 20, 0.22);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    transition: none;
  }

  .menu-ready .menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .menu-ready.menu-animated .menu-backdrop {
    transition: opacity 360ms ease, visibility 0s linear 360ms;
  }

  .menu-ready.menu-animated .menu-backdrop.is-open {
    transition: opacity 360ms ease, visibility 0s linear 0s;
  }

  .menu-ready .primary-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    display: flex;
    width: min(480px, 100vw);
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding: 140px 9vw max(70px, env(safe-area-inset-bottom));
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: var(--ivory);
    box-shadow: -20px 0 60px rgba(36, 34, 30, 0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    transform: translateX(100%);
    visibility: hidden;
    transition: none;
  }

  .menu-ready .primary-nav.is-open {
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .menu-ready.menu-animated .primary-nav {
    transition: transform 520ms var(--ease), visibility 0s linear 520ms;
  }

  .menu-ready.menu-animated .primary-nav.is-open {
    transition: transform 520ms var(--ease), visibility 0s linear 0s;
  }

  .menu-ready .primary-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .menu-ready .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .menu-ready .primary-nav .nav-cta {
    margin-top: 24px;
    padding: 18px 22px;
    border: 1px solid var(--charcoal);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .menu-ready .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(36, 34, 30, 0.35);
    border-radius: 50%;
    background: rgba(247, 243, 234, 0.44);
    cursor: pointer;
    place-items: center;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  html:not(.menu-ready) .site-header {
    position: absolute;
    height: auto;
    min-height: var(--header-height);
    padding-block: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 20px;
    background: rgba(247, 243, 234, 0.94);
  }

  html:not(.menu-ready) .primary-nav {
    order: 3;
    width: 100%;
    padding-bottom: 4px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
  }

  html:not(.menu-ready) .primary-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    font-size: 0.72rem;
  }

  html:not(.menu-ready) .nav-cta {
    padding: 7px 10px;
  }

  html:not(.menu-ready) .hero__content {
    padding-top: calc(var(--header-height) + 58px);
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: var(--charcoal);
    transition: transform 320ms var(--ease);
  }

  .menu-toggle span:first-child {
    transform: translateY(-3px);
  }

  .menu-toggle span:last-child {
    transform: translateY(3px);
  }

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

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

  .story__grid {
    grid-template-columns: 0.2fr 1.1fr 1fr;
    gap: 35px;
  }

  .name-story {
    grid-template-columns: 180px 1fr 1.1fr;
    gap: 35px;
  }

  .name-story__monogram {
    width: 180px;
    max-width: none;
  }

  .architecture__grid {
    gap: 70px;
  }

  .rooms__grid,
  .location__grid {
    gap: 60px;
  }

  .experience-item {
    grid-template-columns: 0.2fr 0.8fr 1.1fr 0.6fr;
  }
}

@media (max-width: 900px) {
  .story__grid,
  .architecture__grid,
  .rooms__grid,
  .location__grid,
  .faq__grid,
  .updates__grid {
    grid-template-columns: 1fr;
  }

  .story__grid {
    gap: 36px;
  }

  .story__grid > .section-index {
    display: none;
  }

  .story__copy,
  .architecture__copy {
    padding-top: 0;
  }

  .name-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .name-story__monogram {
    width: 180px;
    max-width: none;
  }

  .architecture__grid,
  .rooms__grid,
  .location__grid {
    gap: 58px;
  }

  .architecture__heading .section-index,
  .rooms__content .section-index,
  .location__content .section-index {
    margin-bottom: 40px;
  }

  .editorial-image--room {
    height: min(640px, 74vw);
  }

  .location__content {
    padding-left: 0;
  }

  .editorial-image--landscape {
    height: min(760px, 86vw);
  }

  .faq__grid,
  .updates__grid {
    gap: 64px;
  }

  .faq__heading {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(89vw, 640px);
  }

  .section {
    padding-block: 100px;
  }

  .error-page__main {
    padding-block: calc(var(--header-height) + 76px) 70px;
  }

  .error-page__content h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .brand__castle {
    width: 60px;
    height: 44px;
  }

  .site-header.is-scrolled .brand__castle {
    width: 52px;
    height: 38px;
  }

  .hero {
    min-height: max(760px, 100svh);
    min-height: max(760px, 100dvh);
    align-items: flex-end;
  }

  .hero__image img {
    object-position: center 46%;
  }

  .hero__veil {
    background: linear-gradient(
      180deg,
      rgba(247, 243, 234, 0.92) 0%,
      rgba(247, 243, 234, 0.64) 42%,
      rgba(247, 243, 234, 0.96) 78%,
      var(--ivory) 100%
    );
  }

  .hero__copy {
    width: 100%;
    padding: 136px 0 132px;
  }

  .hero__copy h1 {
    font-size: clamp(3.7rem, 16vw, 5.8rem);
  }

  .hero__intro {
    max-width: 440px;
  }

  .concept-label {
    right: 5.5vw;
    bottom: 24px;
    max-width: 55vw;
    text-align: right;
  }

  .scroll-cue {
    bottom: 30px;
    left: 5.5vw;
  }

  .scroll-cue span {
    display: none;
  }

  .fact {
    min-height: 150px;
  }

  .fact__number {
    font-size: 2.8rem;
  }

  .fact__number--word {
    font-size: 2.4rem;
  }

  .fact__label {
    max-width: 75px;
  }

  .story__grid,
  .name-story,
  .architecture__grid,
  .rooms__grid,
  .location__grid,
  .faq__grid,
  .updates__grid {
    grid-template-columns: 1fr;
  }

  .story__grid {
    gap: 25px;
  }

  .name-story {
    gap: 28px;
    margin-top: 76px;
    padding-top: 54px;
  }

  .name-story__monogram {
    width: 180px;
  }

  .name-story__heading h3 {
    max-width: 560px;
  }

  .story__grid > .section-index {
    display: none;
  }

  .story__copy,
  .architecture__copy {
    padding-top: 0;
  }

  .architecture__grid {
    gap: 46px;
  }

  .architecture__heading .section-index {
    margin-bottom: 38px;
  }

  .architecture-notes {
    margin-top: 42px;
  }

  .rooms__grid {
    gap: 70px;
  }

  .editorial-image--room {
    height: 76vw;
    margin-inline: -5.5vw;
  }

  .editorial-image--room img {
    object-position: 57% center;
  }

  .rooms__content .section-index,
  .location__content .section-index {
    margin-bottom: 35px;
  }

  .location__grid {
    gap: 70px;
  }

  .location__content {
    padding-left: 0;
  }

  .editorial-image--landscape {
    height: 120vw;
  }

  .destination__intro {
    display: block;
    margin-bottom: 46px;
  }

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

  .destination__grid article {
    min-height: 0;
  }

  .destination__grid article > span {
    margin-bottom: 42px;
  }

  .experience__intro {
    display: block;
    padding-bottom: 60px;
  }

  .experience__intro > div {
    margin-bottom: 28px;
  }

  .experience__intro .section-index {
    margin-bottom: 35px;
  }

  .experience-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    min-height: auto;
    padding-block: 28px;
  }

  .experience-item h3 {
    margin: 0;
  }

  .experience-item p {
    grid-column: 2;
  }

  .experience-item__status {
    grid-column: 2;
    justify-self: start;
  }

  .faq__grid {
    gap: 64px;
  }

  .faq__heading {
    position: static;
  }

  .faq__heading .section-index {
    margin-bottom: 36px;
  }

  .updates__grid {
    gap: 60px;
  }

  .updates__ornament {
    font-size: 58vw;
  }

  .footer__top,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
  }

  .footer__top {
    min-height: 460px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand__signature {
    width: min(300px, 78vw);
  }

  .footer__bottom {
    min-height: 150px;
  }

  .footer__bottom nav {
    flex-wrap: wrap;
    gap: 12px 24px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 9px;
  }

  .brand__castle {
    width: 52px;
    height: 40px;
  }

  .site-header.is-scrolled .brand__castle {
    width: 46px;
    height: 35px;
  }

  .brand__name {
    display: flex;
  }

  .brand__name strong {
    font-size: 1rem;
  }

  .brand__name small {
    margin-top: 5px;
    font-size: 0.72rem;
  }

  .hero__copy h1 {
    font-size: 3.55rem;
  }

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

  .fact {
    padding: 18px 8px;
    flex-direction: column;
    gap: 8px;
  }

  .fact__number {
    font-size: 2.2rem;
  }

  .fact__number--word {
    font-size: 1.6rem;
  }

  .fact__number--setting {
    max-width: 180px;
    font-size: 1.65rem;
    text-align: center;
  }

  .fact__label {
    max-width: 100%;
    font-size: 0.72rem;
    text-align: center;
  }

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

  .room-meta > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(36, 34, 30, 0.24);
    border-left: 0;
  }

  .location-stamp {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .location-stamp i {
    display: none;
  }

  .faq summary {
    min-height: 82px;
    padding-right: 44px;
  }

  .faq details > p {
    margin-right: 0;
  }

  .updates-panel {
    padding: 30px 24px;
  }

  .footer-brand__signature {
    width: min(280px, 78vw);
  }

  .name-story__monogram {
    width: 160px;
  }
}

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

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .reveal-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__image,
  .scroll-cue i::after,
  .pulse::after {
    animation: none !important;
  }
}

@media (max-width: 1050px) and (max-height: 560px) {
  .menu-ready .primary-nav {
    padding: calc(var(--header-height) + 4px) 7vw 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    justify-content: flex-start;
    gap: 0;
  }

  .menu-ready .primary-nav a {
    padding-block: 6px;
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .menu-ready .primary-nav .nav-cta {
    min-height: 42px;
    margin-top: 8px;
    padding: 10px 16px;
  }
}

@media (max-width: 760px) and (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: max(560px, 100svh);
    min-height: max(560px, 100dvh);
  }

  .hero__copy {
    padding-block: 110px 100px;
  }

  .hero__copy h1 {
    font-size: 3.8rem;
  }
}

@media (max-width: 760px) and (max-height: 700px) and (orientation: portrait) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__copy {
    padding: 88px 0 96px;
  }

  .hero__copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero__copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 13.5vw, 3.3rem);
  }

  .hero__intro {
    margin-bottom: 26px;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .text-link--large {
    gap: 24px;
    font-size: 0.7rem;
  }

  .text-link--large .link-arrow {
    width: 40px;
    height: 40px;
  }

  .concept-label {
    bottom: 12px;
    max-width: 62vw;
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 360px) and (orientation: portrait) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__copy {
    padding: 70px 0 34px;
  }

  .hero__copy .eyebrow {
    display: none;
  }

  .hero__copy h1 {
    margin-bottom: 16px;
    font-size: 2.8rem;
  }

  .hero__intro {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .text-link--large {
    gap: 20px;
  }

  .concept-label {
    top: calc(var(--header-height) + 8px);
    right: 5.5vw;
    bottom: auto;
    max-width: 89vw;
  }
}
