:root {
  --font-body: "Alegreya Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --paper: #fbfaf6;
  --limestone: #efe5d3;
  --stone: #d8c7a5;
  --ink: #1e241e;
  --muted: #64706a;
  --olive: #24483b;
  --olive-soft: #dbe4d1;
  --clay: #c45f46;
  --sea: #2f7195;
  --white: #ffffff;
  --line: rgba(30, 36, 30, 0.16);
  --shadow: 0 18px 50px rgba(33, 41, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, padding 180ms ease;
}

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

.site-header.is-solid {
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding-top: 12px;
  padding-bottom: 12px;
  backdrop-filter: blur(18px);
}

.nav-open .site-header {
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 124px;
}

.brand-logo {
  position: relative;
  display: block;
  width: 124px;
  height: 49px;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo .logo-dark {
  display: none;
}

.site-header.is-solid .logo-white,
.nav-open .site-header .logo-white {
  display: none;
}

.site-header.is-solid .logo-dark,
.nav-open .site-header .logo-dark {
  display: block;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  gap: inherit;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  margin: 0;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover {
  opacity: 1;
}

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

.language-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.language-switch button,
.language-switch a,
.language-switch span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch button.is-active,
.language-switch a.is-active,
.language-switch span.is-active {
  background: var(--white);
  color: var(--olive);
}

.site-header.is-solid .language-switch button.is-active,
.site-header.is-solid .language-switch a.is-active,
.site-header.is-solid .language-switch span.is-active {
  background: var(--olive);
  color: var(--paper);
}

.nav-open .site-header .language-switch button.is-active,
.nav-open .site-header .language-switch a.is-active,
.nav-open .site-header .language-switch span.is-active {
  background: var(--olive);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--olive);
  border-radius: 8px;
  background: var(--olive);
  color: var(--white);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.button:hover {
  background: #17352b;
  border-color: #17352b;
}

.button-compact {
  min-height: 40px;
  padding: 0 16px;
  background: var(--clay);
  border-color: var(--clay);
}

.button-compact:hover {
  background: #a84835;
  border-color: #a84835;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 19, 0.74), rgba(17, 24, 19, 0.2) 58%, rgba(17, 24, 19, 0.5)),
    linear-gradient(0deg, rgba(17, 24, 19, 0.72), rgba(17, 24, 19, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0 148px;
  color: var(--white);
}

.hero-logo {
  width: 132px;
  height: auto;
  margin: 0 0 22px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c7ae;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.05rem;
}

h2 {
  margin-bottom: 0;
  font-size: 2.95rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.78rem;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.32rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.booking-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: -74px auto 0;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.96);
  box-shadow: var(--shadow);
}

.booking-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-strip-head img {
  width: 64px;
  height: auto;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
}

.booking-button {
  width: 132px;
}

.sync-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.88rem;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f9d67;
  box-shadow: 0 0 0 4px rgba(47, 157, 103, 0.16);
}

.section-pad {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 80px;
  align-items: start;
}

.intro-text {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-logo {
  width: 112px;
  height: auto;
  margin: 0 0 20px;
}

.section-logo.small {
  width: 92px;
  margin-bottom: 16px;
}

.section-heading.with-link {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.dark-link {
  color: var(--olive);
}

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

.apartment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(33, 41, 32, 0.08);
}

.apartment-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.apartment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.apartment-card:hover .apartment-media img {
  transform: scale(1.035);
}

.availability {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 800;
}

.availability.scarce {
  color: #7a4c12;
}

.apartment-content {
  display: grid;
  min-height: 280px;
  gap: 18px;
  padding: 24px;
}

.apartment-meta {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.apartment-content p:not(.apartment-meta) {
  color: var(--muted);
}

.apartment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.apartment-footer strong {
  font-size: 1rem;
}

.apartment-footer a {
  color: var(--clay);
  font-weight: 800;
}

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

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.story-card-large {
  grid-row: span 2;
}

.story-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.story-card-large .story-media,
.story-card-featured .story-media {
  aspect-ratio: 16 / 11;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.story-card:hover .story-media img {
  transform: scale(1.035);
}

.story-content {
  padding: 22px;
}

.story-meta {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
}

.story-content p:not(.story-meta) {
  color: var(--muted);
}

.story-content a {
  color: var(--clay);
  font-weight: 800;
}

.subpage-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.subpage-hero .eyebrow {
  color: #f0c7ae;
}

.narrow-hero {
  padding-bottom: 96px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.apartment-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
  gap: 54px;
  align-items: stretch;
}

.apartment-detail > .wp-block-column:first-child > * + * {
  margin-top: 52px;
}

.apartment-main {
  display: grid;
  gap: 56px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.fact-strip div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-strip strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.copy-block p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.image-pair {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 14px;
}

.image-pair img {
  width: 100%;
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
}

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

.feature-grid div {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-grid span {
  color: var(--clay);
  font-weight: 800;
}

.feature-grid p {
  color: var(--muted);
  font-size: 1.1rem;
}

.amenity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
}

.amenity-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-cloud span {
  border: 1px solid rgba(36, 72, 59, 0.18);
  border-radius: 8px;
  background: var(--olive-soft);
  color: var(--olive);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.architect-note {
  margin: 0;
  padding: 34px;
  border-left: 4px solid var(--clay);
  background: var(--limestone);
}

.architect-note p {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.28;
}

.architect-note cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.booking-aside {
  position: sticky;
  top: 96px;
}

.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.booking-logo {
  width: 98px;
  height: auto;
  margin: 0 0 18px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
}

.price-line strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.price-line span {
  color: var(--muted);
}

.side-booking-form {
  display: grid;
  gap: 12px;
}

.side-booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.side-booking-form input,
.side-booking-form select {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0 12px;
}

.mini-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.compact-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.compact-calendar span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 800;
}

.compact-calendar .booked {
  background: #ece8df;
  color: #a09a8d;
  text-decoration: line-through;
}

.story-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.story-row-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.story-row-link img {
  width: 120px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
}

.story-row-link span {
  display: grid;
  gap: 4px;
}

.story-row-link small {
  color: var(--muted);
  font-weight: 800;
}

.story-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.story-index-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.story-index-head .section-logo {
  margin-bottom: 0;
}

.story-index-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.story-filter span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 800;
}

.story-filter span:first-child {
  background: var(--olive);
  color: var(--white);
}

.story-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 120px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list .story-card {
  position: relative;
  display: grid;
  gap: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.story-list .story-media {
  aspect-ratio: 16 / 6;
  min-height: 0;
  border-radius: 0;
}

.story-list .story-media + .story-content .story-meta {
  position: absolute;
  top: 34px;
  left: 0;
  display: inline-flex;
  width: auto;
  margin: 0;
  padding: 11px 19px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-list .story-content {
  max-width: 980px;
  padding: 0;
}

.story-list .story-category {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.story-list .story-category a {
  color: inherit;
}

.story-list .story-content h2,
.story-list .story-content h3,
.story-list .wp-block-post-title {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 3.4vw, 2.95rem);
  line-height: 1.18;
}

.story-list .story-content h2 a,
.story-list .story-content h3 a,
.story-list .wp-block-post-title a {
  color: var(--ink);
  font-weight: 500;
}

.story-list .story-content > p:not(.story-meta):not(.story-category),
.story-list .wp-block-post-excerpt__excerpt {
  max-width: 900px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.72;
}

.story-list .story-read-more,
.story-list .wp-block-read-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 28px;
  border-bottom: 0;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.story-list .story-read-more::after,
.story-list .wp-block-read-more::after {
  content: "\2192";
  font-size: 1.2rem;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.story-list .story-read-more:hover::after,
.story-list .wp-block-read-more:hover::after {
  transform: translateX(6px);
}

.tt-title-band {
  margin-top: 73px;
  background: var(--limestone);
  padding: 72px 32px 64px;
}

body.admin-bar .tt-title-band {
  margin-top: 105px;
}

.tt-title-band h1 {
  max-width: 1280px;
  margin: 0 auto;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
}

.story-pagination,
.wp-block-query-pagination {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 90px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.story-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.story-pagination .page-numbers.current,
.wp-block-query-pagination .page-numbers.current {
  color: var(--clay);
}

.story-pagination a:hover,
.wp-block-query-pagination a:hover {
  color: var(--clay);
}

.story-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.story-card-featured .story-media {
  aspect-ratio: auto;
  min-height: 390px;
}

.story-card-featured h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.82fr);
  gap: 72px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.article-sidebar p:not(.eyebrow) {
  color: var(--muted);
}

.article-body {
  max-width: 780px;
}

.article-body .lead {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.35;
}

.article-body h2 {
  margin-top: 54px;
  margin-bottom: 18px;
  font-size: 2.35rem;
}

.article-body p {
  color: var(--muted);
  font-size: 1.06rem;
}

.article-figure {
  margin: 42px 0;
}

.article-figure img {
  width: 100%;
  border-radius: 8px;
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-callout {
  display: grid;
  gap: 10px;
  margin: 44px 0;
  border-left: 4px solid var(--clay);
  background: var(--limestone);
  padding: 24px;
}

.article-callout span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-callout p {
  margin-bottom: 0;
  color: var(--ink);
}

.travel-blocks {
  margin: 58px 0;
}

.travel-blocks-head {
  margin-bottom: 26px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.travel-blocks-head p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.travel-block-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.travel-block-card {
  display: grid;
  align-content: start;
  min-height: 278px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.travel-block-card span {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

.travel-block-card h3 {
  margin-bottom: 12px;
  font-size: 1.52rem;
}

.travel-block-card p {
  color: var(--muted);
}

.travel-block-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.travel-block-meta li {
  border: 1px solid rgba(36, 72, 59, 0.18);
  border-radius: 8px;
  background: var(--olive-soft);
  color: var(--olive);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
}

.journey-flow {
  margin-top: 22px;
  border-left: 4px solid var(--clay);
  background: var(--limestone);
  padding: 24px;
}

.journey-flow h3 {
  font-size: 1.55rem;
}

.journey-flow ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.block-page-content {
  overflow: hidden;
}

.block-page-content > :first-child:not(.tt-hero):not(.tt-title-band) {
  margin-top: 0;
  padding-top: 130px;
}

.wp-block-cover.tt-hero {
  min-height: 760px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.wp-block-cover.tt-hero .wp-block-cover__inner-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 170px max(24px, calc((100vw - 1180px) / 2)) 126px !important;
  color: var(--white);
}

.tt-hero h1,
.tt-hero h2,
.tt-hero p {
  color: inherit;
}

.tt-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.05rem;
}

.tt-hero .hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.32rem;
}

.tt-hero-logo {
  width: 132px;
  height: auto;
  margin-bottom: 22px;
}

.block-page-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--olive);
  border-radius: 8px;
  background: var(--olive);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
}

.block-page-content .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.tt-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.tt-section-slim {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.tt-grid-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(33, 41, 32, 0.08);
  overflow: hidden;
}

.tt-grid-card .wp-block-group,
.tt-grid-card .wp-block-column {
  padding: 22px;
}

.tt-grid-card .wp-block-image {
  margin: 0;
}

.tt-grid-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.tt-apt-rows {
  padding-top: 0;
}

.tt-apt-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
  margin-top: 84px;
}

.tt-apt-row:first-child {
  margin-top: 0;
}

.tt-apt-row.is-flipped > .wp-block-column:first-child {
  order: 2;
}

.tt-apt-row .wp-block-image {
  margin: 0;
}

.tt-apt-row img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  border-radius: 8px;
  object-fit: cover;
}

.tt-apt-row h3 {
  max-width: 20ch;
  margin: 6px 0 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}

.tt-apt-row .apt-desc {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

/* WordPress wraps group-block children in a flow inner-container; let it
   pass through so our flex/grid layouts apply directly to the paragraphs. */
.tt-factline > .wp-block-group__inner-container,
.tt-hero-facts > .wp-block-group__inner-container,
.tt-apt-cta > .wp-block-group__inner-container,
.tt-g2k > .wp-block-group__inner-container {
  display: contents;
}

.tt-factline {
  display: flex;
  width: fit-content;
  margin: 20px 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.tt-factline p {
  margin: 0;
  padding: 9px 16px;
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
  white-space: nowrap;
}

.tt-factline p:last-child {
  border-right: 0;
}

.tt-factline strong {
  font-weight: 800;
}

.tt-apt-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tt-apt-cta .wp-block-buttons {
  margin: 0;
}

.tt-apt-cta .avail-link {
  margin: 0;
}

.tt-apt-cta .avail-link a {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.tt-apt-cta .avail-link a::after {
  content: " \2192";
  font-size: 1rem;
  letter-spacing: 0;
}

.tt-media-row {
  align-items: center;
}

.tt-media-row .wp-block-image img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.tt-gallery {
  width: min(1180px, calc(100% - 48px));
  max-width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  /* !important beats an inline margin the block editor may write on the
     gallery block (Dimensions > Margin), which otherwise pins it left.
     Only the horizontal axis is forced, so vertical spacing stays editable. */
  margin-left: auto !important;
  margin-right: auto !important;
  gap: 10px;
}

.tt-gallery .wp-block-image,
.tt-gallery figure {
  margin: 0;
}

.tt-gallery img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

/* Facts strip sits right under the hero – trim the top air of its section */
.tt-section:has(> .tt-facts) {
  padding-top: 40px;
}

.tt-facts {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.tt-facts .wp-block-column {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.tt-facts .wp-block-column:last-child {
  border-right: 0;
}

.tt-facts p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tt-facts h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.tt-booking-block {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

/* Apartment hero: fact chips + CTA */
.tt-hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.tt-hero-facts p {
  margin: 0;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.16);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.tt-hero-facts .wp-block-buttons {
  margin: 0;
}

.block-page-content .tt-hero-facts .wp-block-button__link {
  border-color: var(--clay);
  background: var(--clay);
}

/* Room tour */
.tt-room {
  position: relative;
  margin: 0;
}

.tt-room img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.tt-room.tt-room-wide img {
  aspect-ratio: 16 / 8.5;
}

.tt-room > figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(251, 250, 246, 0.95);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
}

.tt-tour .tt-room-wide,
.tt-tour .image-pair {
  margin-top: 16px;
}

.tt-room-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Guest review */
.tt-stars {
  margin: 0 0 8px;
  color: var(--clay);
  font-size: 1.1rem;
  letter-spacing: 5px;
}

.wp-block-quote.tt-review {
  margin: 0;
  border-left: 4px solid var(--clay);
  padding: 4px 0 4px 26px;
}

.tt-review p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.4;
}

.tt-review cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Good to know */
.tt-g2k {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.tt-g2k p {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.tt-g2k p:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.tt-g2k p:nth-last-child(-n+2) {
  border-bottom: 0;
}

.tt-g2k strong {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Booking sidebar extras */
.tt-price-line {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.tt-price-line span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
}

.tt-trust {
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 0.85rem;
}

.tt-trust li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
}

.tt-trust li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: 800;
}

/* Location */
.tt-location-row {
  gap: 40px;
}

.tt-location-row .wp-block-image {
  margin: 0;
}

.tt-location-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.tt-location-row p {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.tt-distchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tt-distchips li {
  padding: 7px 12px;
  border-radius: 6px;
  background: var(--olive-soft);
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 800;
}

/* FAQ */
.tt-faq {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.tt-faq .wp-block-details {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.tt-faq summary {
  position: relative;
  padding: 18px 36px 18px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.tt-faq summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 4px;
  color: var(--clay);
  font-size: 1.4rem;
  font-weight: 400;
}

.tt-faq details[open] summary::after {
  content: "\2212";
}

.tt-faq details > p {
  margin: 0;
  padding: 0 0 20px;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Cross-sell */
.tt-xsell {
  gap: 16px;
}

.tt-xsell .wp-block-column {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.tt-xsell .wp-block-image {
  margin: 0;
  height: 100%;
}

.tt-xsell .wp-block-image a,
.tt-xsell figure {
  display: block;
  height: 100%;
}

.tt-xsell img {
  width: 100%;
  height: 100%;
  min-height: 116px;
  object-fit: cover;
}

.tt-xsell .wp-block-group {
  padding: 16px 18px 16px 0;
}

.tt-xsell h3 {
  margin: 0 0 4px;
  font-size: 1.3rem;
}

.tt-xsell p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Story single post */
.story-post-content {
  position: relative;
}

.story-single-date {
  position: absolute;
  top: 105px;
  left: 0;
  z-index: 5;
  display: inline-block;
  padding: 11px 19px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-article-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 72px;
  align-items: start;
}

.story-article-cols .article-body {
  max-width: 720px;
}

.story-post-content .wp-block-quote:not(.tt-review) {
  position: relative;
  margin: 38px 0;
  padding: 4px 0 4px 76px;
  border: 0;
}

.story-post-content .wp-block-quote:not(.tt-review)::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 0;
  color: var(--stone);
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 1;
}

.story-post-content .wp-block-quote:not(.tt-review) p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.7;
}

.story-post-content .wp-block-quote:not(.tt-review) cite {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-body-gallery {
  gap: 12px;
}

.story-body-gallery .wp-block-image,
.story-body-gallery figure {
  margin: 0;
}

.story-body-gallery img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
}

.story-sidebar {
  display: grid;
  gap: 44px;
  align-content: start;
}

.story-sidebar h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.story-host-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 30px 26px;
  text-align: center;
}

.story-host-card .story-host-photo {
  margin: 0 auto 16px;
  width: 168px;
}

.story-host-card .story-host-photo img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
}

.story-host-card h3 {
  margin: 0 0 10px;
}

.story-host-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.story-widget .wp-block-query {
  margin: 0;
}

.story-recent-item {
  display: block;
  margin-bottom: 26px;
}

.story-recent-item:last-child {
  margin-bottom: 0;
}

.story-recent-item .wp-block-post-featured-image {
  margin: 0 0 12px;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
}

.story-recent-item .wp-block-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.story-recent-item:hover .wp-block-post-featured-image img {
  transform: scale(1.04);
}

.story-recent-item .wp-block-post-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
}

.story-recent-item .wp-block-post-title a {
  color: var(--ink);
}

.story-recent-item .wp-block-post-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Mobile booking bar */
.tt-mobile-book {
  display: none;
}

.tt-amenities {
  display: grid;
  gap: 38px;
}

.tt-amenities-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.tt-amenities-head h2 {
  max-width: 720px;
}

.tt-amenities-head p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.tt-amenity-grid.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tt-amenity-grid.wp-block-columns,
.tt-amenity-grid.wp-block-columns .wp-block-column {
  margin: 0;
}

.tt-amenity-item {
  display: grid;
  align-content: start;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.tt-amenity-icon {
  width: 42px;
  height: 42px;
  margin: 0 0 28px;
}

.tt-amenity-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.tt-amenity-item h3 {
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.tt-amenity-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.48;
}

.tt-note {
  border-left: 4px solid var(--clay);
  background: var(--limestone);
  padding: 24px;
}

.wpbs-placeholder {
  display: grid;
  gap: 10px;
  border: 1px dashed rgba(36, 72, 59, 0.28);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
  color: var(--muted);
}

.wpbs-placeholder strong {
  color: var(--ink);
}

.wpbs-placeholder code {
  display: block;
  white-space: normal;
  border-radius: 8px;
  background: var(--white);
  color: var(--olive);
  padding: 10px;
  font-size: 0.82rem;
}

.booking-strip .wpbs-placeholder {
  margin-top: 4px;
}

.article-body > * {
  max-width: 780px;
}

.article-body .alignwide {
  max-width: 980px;
}

.article-body .alignfull {
  max-width: none;
}

.editor-content {
  color: var(--muted);
}

.editor-content > * {
  max-width: 860px;
}

.editor-content > .alignwide {
  max-width: 1180px;
}

.editor-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.editor-content h2,
.editor-content h3 {
  color: var(--ink);
}

.editor-content .wp-block-columns {
  gap: 28px;
}

.editor-content .wp-block-image img {
  border-radius: 8px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.page-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 54px;
  align-items: center;
}

.content-split.is-reversed {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.content-split.is-reversed .split-media {
  order: 2;
}

.split-copy p {
  color: var(--muted);
}

.split-media {
  display: grid;
  gap: 14px;
}

.split-media img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.image-stack img:first-child {
  height: 360px;
}

.image-stack img:last-child {
  height: 520px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.info-card .number {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 800;
}

.info-card p {
  color: var(--muted);
}

.apartment-page-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(33, 41, 32, 0.08);
}

.apartment-page-card + .apartment-page-card {
  margin-top: 22px;
}

.apartment-page-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.apartment-page-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
}

.apartment-page-copy p {
  color: var(--muted);
}

.apartment-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apartment-meta-row li {
  border: 1px solid rgba(36, 72, 59, 0.18);
  border-radius: 8px;
  background: var(--olive-soft);
  color: var(--olive);
  padding: 8px 11px;
  font-size: 0.8rem;
  font-weight: 800;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-gallery img {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
}

.booking-explainer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--limestone);
  padding: 30px;
}

.booking-explainer p {
  color: var(--muted);
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.step-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  font-weight: 800;
}

.step-list strong {
  display: block;
  margin-bottom: 2px;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.route-gallery {
  display: grid;
  gap: 16px;
}

.route-gallery img {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  object-fit: cover;
}

.route-copy p {
  color: var(--muted);
}

.route-link-box {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.route-link-box a {
  color: var(--clay);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.66fr);
  gap: 44px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(33, 41, 32, 0.08);
  padding: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  grid-column: 1 / -1;
  width: fit-content;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-info-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info-list strong,
.contact-info-list a {
  font-size: 1.02rem;
  font-weight: 800;
}

.map-panel {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(36, 72, 59, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 72, 59, 0.12) 1px, transparent 1px),
    var(--olive-soft);
  background-size: 42px 42px;
  color: var(--olive);
  text-align: center;
}

.map-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
}

.page-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--olive);
  color: var(--white);
  padding: 34px;
}

.page-cta-band .eyebrow {
  color: #f0c7ae;
}

.page-cta-band p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
}

.availability-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.calendar-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.channel-row span {
  border: 1px solid rgba(36, 72, 59, 0.18);
  border-radius: 8px;
  background: var(--olive-soft);
  padding: 8px 12px;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
}

.calendar-widget {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.calendar-top strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.calendar-top span {
  color: var(--sea);
  font-weight: 800;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.weekdays span {
  display: grid;
  height: 30px;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.days button {
  display: grid;
  aspect-ratio: 1;
  min-height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.days button.booked {
  background: #ece8df;
  color: #a09a8d;
  text-decoration: line-through;
}

.days button.selected {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-legend i {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.legend-free {
  background: var(--paper);
  border: 1px solid var(--line);
}

.legend-booked {
  background: #cfc8b8;
}

.legend-selected {
  background: var(--olive);
}

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

.experience-intro {
  max-width: 820px;
  margin: 0 auto 74px;
  text-align: center;
}

.experience-intro .eyebrow {
  margin-bottom: 10px;
}

.experience-intro h2 {
  font-size: 3.3rem;
  font-style: italic;
}

.experience-lead {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.42;
}

.partner-note {
  max-width: 720px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.experience-oasis-list {
  display: grid;
  gap: 84px;
}

.experience-oasis {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 70px;
  align-items: center;
}

.experience-oasis.is-reversed {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
}

.experience-oasis.is-reversed .experience-media {
  order: 2;
}

.experience-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--limestone);
  aspect-ratio: 16 / 11;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.experience-oasis:hover .experience-media img {
  transform: scale(1.025);
}

.experience-copy {
  max-width: 450px;
}

.experience-number {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

.experience-copy h3 {
  margin-bottom: 10px;
  font-size: 2.42rem;
}

.experience-copy > p:not(.experience-number):not(.experience-disclaimer) {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.42;
}

.experience-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.experience-points li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.38;
}

.experience-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--olive);
  font-weight: 800;
}

.experience-disclaimer {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 10px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0;
}

.gallery-band img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  max-width: 820px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.25fr) minmax(180px, 0.7fr);
  align-items: start;
  gap: 88px;
  margin-top: 2em;
  padding: 92px max(32px, calc((100vw - 1180px) / 2)) 96px;
  background: var(--olive);
  color: var(--white);
}

.footer-brand-name {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.footer-widget {
  display: grid;
  gap: 12px;
}

.footer-widget > * {
  margin-top: 0;
}

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

.footer-brand .wp-block-heading:first-child,
.footer-brand h2:first-child,
.footer-brand h3:first-child {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.site-footer h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.2;
}

.footer-legal h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.site-footer p {
  max-width: 360px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.footer-contact {
  font-style: normal;
}

.footer-contact a {
  color: inherit;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .wp-block-navigation__container {
  display: grid;
  gap: 14px;
}

.footer-legal {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-legal a,
.footer-legal .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-legal a:hover,
.footer-contact a:hover,
.footer-legal .wp-block-navigation-item__content:hover {
  color: var(--limestone);
}

@media (max-width: 1020px) {
  .site-header {
    /* brand | language switch | hamburger */
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    padding: 14px 22px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  /* Language switch stays visible in the bar, left of the hamburger */
  .header-actions {
    order: 2;
  }

  /* Book now is hidden on mobile (booking stays reachable via Contact / sticky bar) */
  .header-actions .button {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .nav-open .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav ul {
    display: grid;
    gap: 0;
  }

  .nav-open .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-open .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 700px;
  }

  .wp-block-cover.tt-hero {
    min-height: 700px;
  }

  .hero-content {
    padding: 140px 0 126px;
  }

  .wp-block-cover.tt-hero .wp-block-cover__inner-container {
    padding: 140px max(24px, calc((100vw - 1180px) / 2)) 126px !important;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-button {
    width: 100%;
  }

  .intro,
  .availability-panel,
  .apartment-detail,
  .story-teaser,
  .article-layout,
  .story-article-cols,
  .page-intro,
  .content-split,
  .content-split.is-reversed,
  .booking-explainer,
  .route-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-article-cols {
    gap: 64px;
  }

  .content-split.is-reversed .split-media {
    order: 0;
  }

  .experience-oasis,
  .experience-oasis.is-reversed {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .experience-oasis.is-reversed .experience-media {
    order: 0;
  }

  .experience-copy {
    max-width: 620px;
  }

  .booking-aside {
    position: static;
  }

  .article-sidebar {
    position: static;
  }

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

  .story-card-large,
  .story-card-featured {
    grid-column: 1 / -1;
  }

  .story-card-featured {
    grid-template-columns: 1fr;
  }

  .story-card-featured .story-media {
    min-height: 320px;
  }

  .amenity-panel {
    grid-template-columns: 1fr;
  }

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

  .apartment-page-card {
    grid-template-columns: 0.82fr 1fr;
  }

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

  .apartment-card {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
  }

  .apartment-media {
    aspect-ratio: auto;
    min-height: 360px;
  }

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

  .gallery-band img:first-child {
    grid-column: 1 / -1;
  }

  .final-cta {
    align-items: start;
    flex-direction: column;
  }

  .page-cta-band {
    grid-template-columns: 1fr;
  }

  .tt-facts .wp-block-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tt-facts .wp-block-column:last-child {
    border-bottom: 0;
  }

  .tt-amenities-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .wp-block-cover.tt-hero {
    min-height: 660px;
  }

  .subpage-hero {
    min-height: 560px;
  }

  .hero-content,
  .booking-strip,
  .section-pad {
    width: min(100% - 28px, 1180px);
  }

  .tt-section,
  .tt-section-slim {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding: 122px 0 120px;
  }

  .wp-block-cover.tt-hero .wp-block-cover__inner-container {
    padding: 122px 14px 120px !important;
  }

  h1 {
    font-size: 3.05rem;
  }

  .tt-hero h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .booking-strip {
    margin-top: -62px;
    padding: 14px;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .section-heading.with-link {
    display: grid;
  }

  .section-pad {
    padding: 72px 0;
  }

  .apartment-card {
    grid-template-columns: 1fr;
  }

  .apartment-media {
    min-height: 360px;
  }

  .calendar-widget {
    padding: 14px;
  }

  .fact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip div:nth-child(2) {
    border-right: 0;
  }

  .fact-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .image-pair,
  .feature-grid,
  .travel-block-grid,
  .story-grid,
  .info-grid,
  .apartment-page-card,
  .mini-gallery,
  .contact-form,
  .story-list {
    grid-template-columns: 1fr;
  }

  .story-list .story-card {
    gap: 24px;
  }

  .story-list .story-media {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }

  .story-list {
    gap: 80px;
  }

  .story-list .story-media + .story-content .story-meta {
    top: 16px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .tt-title-band {
    padding: 48px 24px 40px;
  }

  .tt-apt-row {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 64px;
  }

  .tt-apt-row.is-flipped > .wp-block-column:first-child {
    order: 0;
  }

  .tt-factline p {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .tt-apt-cta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .tt-booking-block {
    position: static;
  }

  .story-single-date {
    top: 88px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .story-body-gallery img {
    height: 220px;
  }

  .story-post-content .wp-block-quote:not(.tt-review) {
    padding-left: 54px;
  }

  .story-post-content .wp-block-quote:not(.tt-review)::before {
    font-size: 4rem;
  }

  .tt-g2k {
    grid-template-columns: 1fr;
  }

  .tt-g2k p:nth-child(odd) {
    border-right: 0;
  }

  .tt-g2k p:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .tt-g2k p:last-child {
    border-bottom: 0;
  }

  .tt-xsell .wp-block-column {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .apartment-detail > .wp-block-column:first-child > * + * {
    margin-top: 40px;
  }

  .tt-mobile-book {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
    background: rgba(251, 250, 246, 0.97);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    backdrop-filter: blur(14px);
  }

  .tt-mobile-book[hidden] {
    display: none;
  }

  .tt-mobile-book strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .tt-mobile-book span {
    color: var(--muted);
    font-size: 0.78rem;
  }

  .tt-mobile-book a {
    flex: none;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--clay);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  body.has-mobile-book {
    padding-bottom: 78px;
  }

  .split-media img,
  .image-stack img:first-child,
  .image-stack img:last-child,
  .route-gallery img {
    min-height: 0;
    height: 340px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .apartment-page-card img {
    min-height: 340px;
  }

  .booking-explainer,
  .contact-form-card,
  .contact-info-card,
  .page-cta-band {
    padding: 22px;
  }

  .contact-form label.full,
  .contact-form .button {
    grid-column: auto;
  }

  .image-pair img {
    height: 360px;
  }

  .feature-grid div {
    padding-right: 0;
  }

  .architect-note {
    padding: 24px;
  }

  .architect-note p {
    font-size: 1.25rem;
  }

  .story-card-featured h2 {
    font-size: 2rem;
  }

  .article-body .lead {
    font-size: 1.35rem;
  }

  .article-body h2 {
    font-size: 1.9rem;
  }

  .story-row-link {
    grid-template-columns: 1fr;
  }

  .story-row-link img {
    width: 100%;
    height: 180px;
  }

  .days button {
    min-height: 38px;
    font-size: 0.86rem;
  }

  .experience-intro {
    margin-bottom: 48px;
  }

  .experience-intro h2 {
    font-size: 2.25rem;
  }

  .experience-oasis-list {
    gap: 58px;
  }

  .experience-media {
    aspect-ratio: 4 / 3;
  }

  .gallery-band {
    grid-template-columns: 1fr;
    width: min(100% - 16px, 1180px);
  }

  .gallery-band img,
  .gallery-band img:first-child {
    grid-column: auto;
    height: 320px;
  }

  .tt-gallery img {
    height: 320px;
  }

  .tt-amenity-grid.wp-block-columns {
    grid-template-columns: 1fr;
  }

  .tt-amenity-item {
    min-height: 0;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .site-footer p {
    max-width: none;
  }
}
