@font-face {
  font-family: "Material Symbols Rounded";
  src: url(../fonts/MaterialSymbols300.woff2);
  font-display: swap;
  font-weight: 300;
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: "Newsreader";
  src: url(../fonts/Newsreader-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --color-bg: #f6f1e8;
  --color-surface: #fffdf9;
  --color-text: #18243a;
  --color-text-muted: #6a6f78;
  --color-primary: #102541;
  --color-accent: #c9a77b;
  --color-line: rgba(16, 37, 65, .15);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 112px;
  --text-display: clamp(3.2rem, 7vw, 6.7rem);
  --text-h1: clamp(2.6rem, 5.5vw, 5rem);
  --text-h2: clamp(2.1rem, 4vw, 3.7rem);
  --text-h3: clamp(1.35rem, 2vw, 1.85rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 8px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(16, 37, 65, .12);
  --shell: min(1240px, calc(100vw - 48px));
  --font-display: 'Newsreader', serif;
  --font-body: 'Manrope', sans-serif
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.72
}
body.menu-open {
  overflow: hidden
}
img {
  max-width: 100%
}
a {
  color: inherit
}
button,
input,
select,
textarea {
  font: inherit
}
.shell {
  width: var(--shell);
  margin-inline: auto
}
.shell-narrow {
  width: min(790px, calc(100vw - 48px));
  margin-inline: auto
}
.site-header {
  position: relative;
  z-index: 50;
  background: rgba(246, 241, 232, .96);
  border-bottom: 1px solid var(--color-line)
}
.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(7, 20, 39, .74), rgba(7, 20, 39, .12));
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: #fff
}
.ad-disclosure {
  text-align: center;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-bottom: 1px solid currentColor;
  opacity: .75
}
.header-main {
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block
}
.brand span {
  display: grid;
  line-height: 1
}
.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600
}
.brand small {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .58rem;
  margin-top: 5px
}
.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 26px
}
.desktop-nav a {
  text-decoration: none;
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: .25s
}
.desktop-nav a:hover:after {
  right: 0
}
.header-cta {
  padding: 12px 16px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 700
}
.menu-toggle {
  position: relative;
  z-index: 1000;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  margin: 6px auto
}
.mobile-nav {
  display: none
}
.hero-home {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 30, .8) 0%, rgba(5, 15, 30, .45) 48%, rgba(5, 15, 30, .16) 100%), linear-gradient(0deg, rgba(5, 15, 30, .64) 0%, transparent 52%)
}
.view-frame {
  position: absolute;
  inset: 150px 5vw 126px;
  border: 1px solid rgba(255, 255, 255, .35);
  pointer-events: none
}
.view-frame:before,
.view-frame:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: rgba(255, 255, 255, .75)
}
.view-frame:before {
  left: -1px;
  top: -1px;
  border-left: 2px solid;
  border-top: 2px solid
}
.view-frame:after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 190px
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 500;
  line-height: .9;
  max-width: 980px;
  margin: 12px 0 22px
}
.hero-copy p {
  max-width: 660px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, .88);
  margin: 0
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700
}
.eyebrow.light {
  color: rgba(255, 255, 255, .72)
}
.availability-bar {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--shell);
  display: grid;
  grid-template-columns: 1fr 1fr .8fr 1.3fr;
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow)
}
.availability-bar label {
  padding: 18px 22px;
  border-right: 1px solid var(--color-line);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700
}
.availability-bar input,
.availability-bar select {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--color-text);
  padding-top: 8px;
  outline: none
}
.availability-bar button {
  border: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: .25s
}
.availability-bar button:hover {
  background: #183758
}
.section {
  padding: var(--space-8) 0
}
.intro-grid,
.content-columns {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 8vw;
  align-items: start
}
.intro-grid h2,
.section-head h2,
.story-copy h2,
.madrid-copy h2,
.content-columns h2,
.cta-band h2,
.service-story h2,
.room-compare h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.04;
  font-size: var(--text-h2);
  margin: 14px 0 0
}
.prose p {
  margin: 0 0 1.3em
}
.prose.large {
  font-size: 1.05rem
}
.dark-section {
  background: var(--color-primary);
  color: #fff
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .18)
}
.facts-grid article {
  background: var(--color-primary);
  padding: 45px
}
.facts-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1
}
.facts-grid span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  margin: 10px 0 18px;
  color: #dbc3a2
}
.facts-grid p {
  color: rgba(255, 255, 255, .72);
  margin: 0
}
.split-grid,
.editorial-split,
.image-text-pair {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 7vw;
  align-items: center
}
.image-panel {
  background: #ddd4c6;
  overflow: hidden;
  min-height: 420px
}
.image-panel.tall {
  min-height: 650px
}
.image-panel.large {
  min-height: 620px
}
.image-panel.wide {
  min-height: 520px
}
.image-panel img,
.room-image img,
.gallery-six img,
.article-page figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.story-copy p,
.madrid-copy p {
  color: var(--color-text-muted);
  margin: 0 0 1.35em
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px
}
.text-link.strong {
  font-weight: 700
}
.rooms-section {
  background: var(--color-surface)
}
.section-head {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 56px
}
.section-head p {
  margin: 0;
  color: var(--color-text-muted)
}
.section-head.narrow {
  grid-template-columns: 1.15fr .85fr
}
.rooms-layout {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px
}
.room-card {
  background: var(--color-bg);
  display: grid
}
.room-featured {
  grid-row: span 2;
  grid-template-rows: minmax(520px, 1fr) auto
}
.room-card:not(.room-featured) {
  grid-template-columns: 46% 54%;
  min-height: 330px
}
.room-image {
  background: #ddd4c6;
  overflow: hidden;
  min-height: 260px
}
.room-content {
  padding: 30px
}
.room-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  margin: 7px 0 14px
}
.room-number {
  font-size: .68rem;
  letter-spacing: .16em;
  color: #a67f53
}
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 20px 0
}
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem
}
.room-meta i {
  font-size: 18px
}
.price {
  font-weight: 700
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .25s
}
.button.dark {
  background: var(--color-primary);
  color: #fff
}
.button.dark:hover {
  background: #1a3a5e
}
.button.light {
  background: #fff;
  color: var(--color-primary)
}
.button.outline {
  border-color: var(--color-primary);
  color: var(--color-primary)
}
.button.full {
  width: 100%
}
.amenity-list {
  border-top: 1px solid var(--color-line)
}
.amenity-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
  align-items: start
}
.amenity-list>.material-symbols-rounded,
.amenity-list article>span {
  font-size: 34px;
  color: #a67f53
}
.amenity-list h3 {
  margin: 0 0 8px;
  font-size: 1.05rem
}
.amenity-list p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 760px
}
.madrid-feature {
  background: #e9e0d3
}
.madrid-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 6vw;
  align-items: center
}
.map-card {
  margin-top: 56px;
  background: var(--color-surface);
  display: grid;
  grid-template-columns: 1.4fr .6fr
}
.map-card iframe {
  width: 100%;
  height: 380px;
  border: 0
}
.map-card>div {
  padding: 20px;
}
.map-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  margin: 10px 0
}
.gallery-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}
.gallery-six figure {
  margin: 0;
  background: #ddd4c6;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden
}
.gallery-six figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(8, 18, 30, .7));
  color: #fff;
  font-size: .8rem
}
.center {
  text-align: center;
  margin-top: 36px
}
.booking-section {
  background: #0c1d33;
  color: #fff
}
.booking-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: start
}
.booking-grid h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.02;
  margin: 12px 0 22px
}
.booking-grid>div>p {
  color: rgba(255, 255, 255, .74)
}
.booking-note {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  font-size: .85rem
}
.booking-note p {
  margin: 0
}
.lead-form {
  background: #fff;
  color: var(--color-text);
  padding: 34px
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 37, 65, .22);
  background: #fff;
  padding: 13px 14px;
  min-height: 48px;
  outline: none
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(16, 37, 65, .08)
}
.lead-form .check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400;
  font-size: .76rem;
  margin: 20px 0
}
.lead-form .check input {
  width: 18px;
  height: 18px;
  min-height: 0
}
.inner-hero {
  padding: 110px 0 90px;
  background: #e8dfd2
}
.inner-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: .98;
  max-width: 980px;
  margin: 14px 0 22px
}
.inner-hero p {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 1.08rem
}
.soft-section {
  background: #ebe3d7
}
.service-story,
.room-compare {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw
}
.light-prose {
  color: rgba(255, 255, 255, .72)
}
.cta-band {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 8px 0
}
.room-detail {
  padding: var(--space-8) 0
}
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: center
}
.room-detail-grid.reverse .image-panel {
  order: 2
}
.room-detail-copy h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  margin: 8px 0 18px
}
.room-detail-copy .lead {
  font-size: 1.1rem;
  color: var(--color-text)
}
.room-detail-copy p {
  color: var(--color-text-muted)
}
.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 26px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line)
}
.detail-specs span {
  padding: 15px 0;
  display: grid;
  gap: 2px;
  font-size: .85rem
}
.detail-specs b {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em
}
.day-plan {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line)
}
.day-plan article {
  background: var(--color-surface);
  padding: 40px
}
.day-plan span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #a67f53
}
.day-plan h2 {
  font-family: var(--font-display);
  font-weight: 500
}
.day-plan p {
  color: var(--color-text-muted)
}
.map-large iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block
}
.map-explain {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  padding-top: 28px
}
.map-explain h2 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0
}
.map-explain p {
  margin: 0;
  color: var(--color-text-muted)
}
.gallery-six-page {
  gap: 0
}
.gallery-six-page figure {
  aspect-ratio: 4/3
}
.gallery-six-page figcaption {
  display: grid;
  gap: 2px
}
.gallery-six-page figcaption strong {
  font-size: .92rem
}
.gallery-six-page figcaption span {
  opacity: .8
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}
.contact-card {
  background: var(--color-surface);
  padding: 44px;
  border: 1px solid var(--color-line)
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500
}
.form-story {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw
}
.form-story h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.04
}
.light-form {
  box-shadow: var(--shadow)
}
.legal-intro h2,
.legal-prose h2 {
  font-family: var(--font-display);
  font-weight: 500
}
.legal-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw
}
.legal-intro>.prose {
  grid-column: 2
}
.legal-hero {
  padding-bottom: 70px
}
.legal-page {
  padding-top: 80px
}
.legal-prose h2 {
  font-size: 1.75rem;
  margin: 2.2em 0 .6em
}
.legal-prose p {
  color: #464d58
}
.thanks-hero {
  padding: 120px 0 75px;
  background: #e8dfd2
}
.thanks-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: 1
}
.thanks-summary {
  padding: 24px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 50px
}
.thanks-summary:empty {
  display: none
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}
.steps article {
  border-top: 2px solid var(--color-primary);
  padding-top: 18px
}
.steps span {
  font-size: .7rem;
  letter-spacing: .15em
}
.steps h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem
}
.steps p {
  color: var(--color-text-muted)
}
.article-page {
  padding-bottom: 40px
}
.article-head {
  padding: 90px 0 50px
}
.article-label {
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .72rem;
  color: #9b744a;
  font-weight: 700
}
.article-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.3vw, 4.9rem);
  line-height: 1.02;
  font-weight: 500;
  margin: 18px 0 24px
}
.article-byline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: .78rem;
  border-top: 1px solid var(--color-line);
  padding-top: 18px
}
.article-hero {
  width: min(1180px, calc(100vw - 48px));
  height: min(70vw, 720px);
  margin: 0 auto 70px;
  overflow: hidden;
  background: #d9d1c6
}
.article-page figure {
  margin: 42px auto;
}
.article-page figure:not(.article-hero) {
  height: auto
}
.article-page figure:not(.article-hero) img {
  aspect-ratio: 16/10
}
.article-page figcaption {
  font-size: .78rem;
  color: var(--color-text-muted);
  padding-top: 10px
}
.article-body {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.72
}
.article-body p {
  margin: 0 0 1.45em
}
.article-body .article-lead {
  font-size: 1.45rem;
  line-height: 1.55
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1.15;
  font-weight: 500;
  margin: 2em 0 .6em
}
.article-list {
  font-family: var(--font-body);
  font-size: .95rem;
  list-style: none;
  padding: 0;
  margin: 28px 0 40px;
  border-top: 1px solid var(--color-line)
}
.article-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line)
}
.article-cta {
  margin: 55px -60px;
  padding: 48px 60px;
  background: var(--color-primary);
  color: #fff
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  margin: 10px 0
}
.article-cta p {
  font-family: var(--font-body);
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
  max-width: 560px
}
.article-cta-light {
  background: #e8dfd2;
  color: var(--color-text)
}
.article-cta-light p {
  color: var(--color-text-muted)
}
.faq-wrap {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw
}
.faq-wrap h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.04;
  margin: 12px 0 18px
}
.faq-list {
  border-top: 1px solid var(--color-line)
}
.faq-item {
  border-bottom: 1px solid var(--color-line)
}
.faq-question {
  width: 100%;
  min-height: 74px;
  background: transparent;
  border: 0;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer
}
.faq-question .material-symbols-rounded {
  transition: .25s
}
.faq-item.open .faq-question .material-symbols-rounded {
  transform: rotate(45deg)
}
.faq-answer {
  display: none;
  padding: 0 44px 22px 0;
  color: var(--color-text-muted)
}
.faq-item.open .faq-answer {
  display: block
}
.faq-answer p {
  margin: 0
}
.gallery-notes {
  margin-top: 56px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw
}
.gallery-notes h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: 1.05;
  margin: 12px 0
}
.gallery-notes .prose {
  color: var(--color-text-muted)
}
.site-footer {
  background: #08182b;
  color: #fff;
  padding: 70px 0 28px
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .65fr .8fr 1fr;
  gap: 55px
}
.brand-footer {
  margin-bottom: 20px
}
.footer-brand p {
  color: rgba(255, 255, 255, .62);
  max-width: 390px
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px
}
.footer-col h3 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #d6bb98;
  margin: 0 0 10px
}
.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem
}
.footer-col p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem
}
.footer-legal {
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  grid-template-columns: .8fr 1.7fr .7fr;
  gap: 40px
}
.footer-legal p {
  font-size: .7rem;
  color: rgba(255, 255, 255, .48);
  margin: 0
}
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24
}
.site-header a:focus-visible,
.button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #d7b98f;
  outline-offset: 3px
}
@media(max-width:1024px) {
  :root {
    --shell: min(100% - 32px, 920px)
  }
  .desktop-nav,
  .header-cta {
    display: none
  }
  .header-main {
    grid-template-columns: 1fr auto
  }
  .menu-toggle {
    display: block
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(390px, 86vw);
    height: 100vh;
    background: #08182b;
    color: #fff;
    padding: 130px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateX(100%);
    transition: .3s;
    pointer-events: none
  }
  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none
  }
  .site-header.open .mobile-nav {
    transform: translateX(0);
    pointer-events: auto
  }
  .availability-bar {
    grid-template-columns: 1fr 1fr
  }
  .availability-bar button {
    min-height: 70px
  }
  .availability-bar label:nth-child(3) {
    border-top: 1px solid var(--color-line)
  }
  .hero-copy {
    padding-bottom: 250px
  }
  .rooms-layout {
    grid-template-columns: 1fr
  }
  .room-featured {
    grid-row: auto
  }
  .room-card:not(.room-featured) {
    grid-template-columns: 42% 58%
  }
  .madrid-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .gallery-six {
    grid-template-columns: repeat(2, 1fr)
  }
  .footer-grid {
    row-gap: 40px
  }
  .footer-legal {
    grid-template-columns: 1fr
  }
  .article-cta {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px
  }
}
@media(max-width:768px) {
  :root {
    --shell: calc(100vw - 28px);
    --space-8: 78px
  }
  .header-main {
    height: 72px
  }
  .brand img {
    width: 36px;
    height: 36px
  }
  .hero-home {
    min-height: 860px
  }
  .view-frame {
    inset: 120px 18px 240px
  }
  .hero-copy {
    padding-bottom: 280px
  }
  .hero-copy h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem)
  }
  .availability-bar {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr 1fr
  }
  .availability-bar label {
    padding: 14px
  }
  .availability-bar label:nth-child(3) {
    grid-column: 1/2
  }
  .availability-bar button {
    grid-column: 2/3;
    padding: 10px;
    font-size: .75rem
  }
  .intro-grid,
  .content-columns,
  .section-head,
  .split-grid,
  .editorial-split,
  .image-text-pair,
  .madrid-grid,
  .booking-grid,
  .service-story,
  .room-compare,
  .room-detail-grid,
  .form-story,
  .legal-intro,
  .map-explain,
  .faq-wrap,
  .gallery-notes {
    grid-template-columns: 1fr;
    gap: 34px
  }
  .facts-grid,
  .day-plan,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr
  }
  .facts-grid {
    gap: 1px
  }
  .facts-grid article {
    padding: 30px
  }
  .image-panel.tall,
  .image-panel.large,
  .image-panel.wide {
    min-height: 420px
  }
  .room-card:not(.room-featured) {
    grid-template-columns: 1fr
  }
  .room-featured {
    grid-template-rows: auto auto
  }
  .room-featured .room-image {
    min-height: 420px
  }
  .room-card .room-image {
    min-height: 320px
  }
  .map-card {
    grid-template-columns: 1fr
  }
  .gallery-six {
    grid-template-columns: 1fr 1fr;
    gap: 0
  }
  .gallery-six figure {
    aspect-ratio: 1/1
  }
  .form-grid {
    grid-template-columns: 1fr
  }
  .room-detail-grid.reverse .image-panel {
    order: 0
  }
  .detail-specs {
    grid-template-columns: 1fr
  }
  .day-plan article {
    padding: 30px
  }
  .legal-intro>.prose {
    grid-column: auto
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .article-body {
    font-size: 1.1rem
  }
  .article-body .article-lead {
    font-size: 1.25rem
  }
  .article-head {
    padding-top: 65px
  }
  .article-hero {
    width: 100%;
    height: 72vw
  }
  .cta-band {
    align-items: flex-start;
    flex-direction: column
  }
}
@media(max-width:480px) {
  .gallery-six {
    grid-template-columns: 1fr
  }
  .footer-grid {
    grid-template-columns: 1fr
  }
  .hero-home {
    min-height: 910px
  }
  .availability-bar {
    grid-template-columns: 1fr
  }
  .availability-bar label,
  .availability-bar label:nth-child(3),
  .availability-bar button {
    grid-column: 1
  }
  .availability-bar button {
    min-height: 58px
  }
  .hero-copy {
    padding-bottom: 390px
  }
  .view-frame {
    bottom: 355px
  }
  .article-head h1 {
    font-size: 2.65rem
  }
  .article-body h2 {
    font-size: 2rem
  }
  .room-featured .room-image,
  .room-card .room-image {
    min-height: 280px
  }
}


/* layout fixes after QA */
.image-panel,
.room-image,
.article-hero,
.article-page figure,
.gallery-six figure {
  position: relative;
  overflow: hidden
}
.image-panel {
  min-height: 0
}
.image-panel.tall {
  min-height: 0;
  aspect-ratio: 4/5
}
.image-panel.large {
  min-height: 0;
  aspect-ratio: 4/3
}
.image-panel.wide {
  min-height: 0;
  aspect-ratio: 16/10
}
.room-image {
  min-height: 0;
  aspect-ratio: 4/3
}
.image-panel img,
.room-image img,
.gallery-six img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}
.article-hero {
  width: min(760px, calc(100vw - 48px));
  height: auto;
  margin: 0 auto 56px;
  background: transparent
}
.article-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block
}
.article-page figure:not(.article-hero) {
  max-width: 760px;
  margin: 42px auto
}
.article-page figure:not(.article-hero) img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  display: block
}
.article-page figcaption {
  text-align: center
}
.rooms-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch
}
.room-featured {
  grid-row: auto;
  grid-template-rows: auto 1fr
}
.room-card:not(.room-featured) {
  grid-template-columns: 1fr;
  min-height: unset
}
.room-card {
  grid-template-rows: auto 1fr;
  height: 100%
}
.room-content {
  display: flex;
  flex-direction: column
}
.room-content .button {
  margin-top: auto;
  align-self: flex-start
}
.map-card {
  align-items: center
}
.map-card iframe,
.map-large iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0
}
.map-large iframe {
  height: 460px
}
@media(max-width:1024px) {
  .rooms-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }
  .room-featured {
    grid-template-rows: auto auto
  }
  .room-card:not(.room-featured) {
    grid-template-columns: 1fr
  }
  .map-large iframe {
    height: 400px
  }
}
@media(max-width:768px) {
  .image-panel.tall,
  .image-panel.large,
  .image-panel.wide,
  .room-image,
  .article-hero,
  .article-page figure:not(.article-hero) {
    aspect-ratio: auto
  }
  .image-panel.tall,
  .image-panel.large,
  .image-panel.wide,
  .room-image {
    height: auto;
    min-height: 0
  }
  .image-panel img,
  .room-image img {
    height: auto
  }
  .article-hero {
    width: min(680px, calc(100vw - 28px));
    margin-bottom: 42px
  }
  .map-card iframe {
    height: 320px
  }
  .map-large iframe {
    height: 340px
  }
}
@media(max-width:480px) {
  .article-hero {
    width: calc(100vw - 28px)
  }
  .map-card iframe,
  .map-large iframe {
    height: 280px
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 24px;
  z-index: 9999;
  width: min(560px, calc(100% - 40px));
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 28px);
  pointer-events: none;
  transition:
    opacity .32s ease,
    visibility .32s ease,
    transform .32s ease;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-banner__ticket {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.cookie-banner__ticket::before,
.cookie-banner__ticket::after {
  content: "";
  position: absolute;
  top: 73%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  z-index: 2;
}

.cookie-banner__ticket::before {
  left: -13px;
}

.cookie-banner__ticket::after {
  right: -13px;
}

.cookie-banner__head {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: var(--color-primary);
  color: #fff;
}

.cookie-banner__seal {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--color-accent);
}

.cookie-banner__seal .material-symbols-rounded {
  font-size: 21px;
}

.cookie-banner__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.cookie-banner__meta span {
  color: rgba(255, 255, 255, .64);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cookie-banner__meta strong {
  min-width: 32px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .08em;
}

.cookie-banner__content {
  padding: 26px 28px 18px;
}

.cookie-banner__kicker {
  display: block;
  margin-bottom: 7px;
  color: #9b744a;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cookie-banner__content h3 {
  max-width: 440px;
  margin: 0 0 12px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.04;
}

.cookie-banner__content p {
  max-width: 490px;
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: .84rem;
  line-height: 1.65;
}

.cookie-banner__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 28px 22px;
}

.cookie-banner__policies a {
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 37, 65, .3);
  padding-bottom: 2px;
  transition:
    color .2s ease,
    border-color .2s ease;
}

.cookie-banner__policies a:hover {
  color: #9b744a;
  border-color: #9b744a;
}

.cookie-banner__divider {
  position: relative;
  height: 1px;
  margin: 0 20px;
  background: var(--color-line);
}

.cookie-banner__divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 8px;
  background: var(--color-surface);
  transform: translate(-50%, -50%);
}

.cookie-banner__divider span::before,
.cookie-banner__divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.cookie-banner__divider span::before {
  left: 6px;
}

.cookie-banner__divider span::after {
  right: 6px;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  padding: 20px;
}

.cookie-action {
  min-height: 48px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    transform .22s ease;
}

.cookie-action--accept {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  background: var(--color-primary);
  color: #fff;
}

.cookie-action--accept .material-symbols-rounded {
  font-size: 18px;
  color: var(--color-accent);
  transition: transform .2s ease;
}

.cookie-action--accept:hover {
  background: #183758;
  transform: translateY(-1px);
}

.cookie-action--accept:hover .material-symbols-rounded {
  transform: translateX(3px);
}

.cookie-action--necessary {
  padding: 0 16px;
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-line);
}

.cookie-action--necessary:hover {
  background: var(--color-bg);
  border-color: var(--color-primary);
}

.cookie-settings-link {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9000;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  background: #08182b;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(8, 24, 43, .2);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition:
    background-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.cookie-settings-link .material-symbols-rounded {
  color: var(--color-accent);
  font-size: 17px;
}

.cookie-settings-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8, 24, 43, .24);
}

body:has(.cookie-banner.show) .cookie-settings-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-action:focus-visible,
.cookie-banner__policies a:focus-visible,
.cookie-settings-link:focus-visible {
  outline: 3px solid #d7b98f;
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .section-head.narrow {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .cookie-banner__head {
    min-height: 58px;
    padding: 12px 16px;
  }

  .cookie-banner__seal {
    width: 34px;
    height: 34px;
  }

  .cookie-banner__content {
    padding: 20px 18px 15px;
  }

  .cookie-banner__content h3 {
    font-size: 1.65rem;
  }

  .cookie-banner__content p {
    font-size: .79rem;
    line-height: 1.55;
  }

  .cookie-banner__policies {
    gap: 13px;
    padding: 0 18px 18px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-action {
    min-height: 46px;
  }

  .cookie-banner__ticket::before,
  .cookie-banner__ticket::after {
    top: 72%;
  }

  .cookie-settings-link {
    right: 10px;
    bottom: 10px;
    min-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-action,
  .cookie-action--accept .material-symbols-rounded,
  .cookie-settings-link {
    transition: none;
  }
}