@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/inter-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/playfair-display-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("fonts/playfair-display-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-muted: #eef4fb;
  --text: #080b0d;
  --text-muted: #4f5b66;
  --border: #d8e2ec;
  --accent: #f2a900;
  --accent-dark: #176fc4;
  --blue: #176fc4;
  --blue-dark: #0e243a;
  --orange: #f28c28;
  --yellow: #ffd447;
  --white: #ffffff;
  --font-site: "Inter", "Segoe UI", Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: var(--font-site);
  --font-legal-heading: var(--font-heading);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 600;
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--space-xl) 0;
}

.page-shell {
  padding-bottom: var(--space-lg);
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.card,
.panel,
.detail-copy,
.detail-gallery,
.mini-hero,
.legal-card,
.faq-item,
.metric,
.feature-item,
.stat,
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.card,
.panel,
.detail-copy,
.detail-gallery,
.mini-hero,
.legal-card {
  padding: var(--space-md);
}

.metric,
.feature-item,
.stat,
.callout {
  padding: 22px;
  border-radius: var(--radius-md);
}

.button,
.button-secondary,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.mobile-locale-button {
  display: none;
}

.locale-settings-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}

.locale-settings-button:hover {
  background: transparent;
  transform: none;
}

.locale-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 11, 13, 0.54);
  backdrop-filter: blur(3px);
}

.locale-settings-modal.is-open {
  display: flex;
}

.locale-settings-card {
  position: relative;
  width: min(420px, 100%);
  padding: 34px 30px 30px;
  border-radius: 30px;
  background: var(--white);
  color: #050505;
  font-family: var(--font-legal-heading);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.locale-settings-card h2 {
  max-width: 330px;
  margin: 0 auto 28px;
  color: #050505;
  font-family: var(--font-legal-heading);
  font-size: clamp(28px, 6vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.locale-settings-close {
  position: absolute;
  top: 20px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #050505;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.locale-select-field {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.locale-select-trigger {
  position: relative;
  width: 100%;
  min-height: 76px;
  padding: 14px 54px 12px 24px;
  border: 1px solid #dedede;
  border-radius: 22px;
  background: var(--white);
  color: #050505;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.locale-select-trigger span,
.locale-select-trigger strong {
  display: block;
  font-family: var(--font-legal-heading);
}

.locale-select-trigger span {
  margin-bottom: 8px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.locale-select-trigger strong {
  color: #050505;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.locale-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #050505;
  border-bottom: 3px solid #050505;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.locale-select-trigger[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}

.locale-option-list {
  max-height: 235px;
  margin-top: 8px;
  overflow-y: auto;
  border: 1px solid #e4e4e4;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.locale-option-list button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 0 18px 0 76px;
  border: 0;
  background: transparent;
  color: #050505;
  font-family: var(--font-legal-heading);
  font-size: 21px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.locale-option-list button:hover {
  background: #f5f5f5;
}

.locale-option-list button.is-selected::before {
  content: "✓";
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-52%);
  color: #050505;
  font-size: 22px;
  font-weight: 800;
}

.locale-confirm-button {
  width: 100%;
  min-height: 56px;
  margin-top: 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: var(--white);
  font-family: var(--font-legal-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.locale-confirm-button:hover {
  background: var(--orange);
  color: var(--text);
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 42px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(23, 111, 196, 0.18);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  border-radius: var(--radius-pill);
  padding: 0 10px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.language-switcher a.is-active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 6px 16px rgba(14, 36, 58, 0.12);
}

.currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 42px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(23, 111, 196, 0.18);
}

.currency-switcher button {
  min-width: 48px;
  min-height: 34px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 11px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.currency-switcher button.is-active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 6px 16px rgba(14, 36, 58, 0.12);
}

.button,
.nav-cta {
  background: var(--text);
  color: var(--white);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.image-card,
.card-media,
.hero-media,
.detail-gallery-grid .primary,
.detail-gallery-grid .secondary,
.detail-gallery-grid .secondary img {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-card img,
.card-media img,
.hero-media img,
.detail-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button,
.button-secondary,
.nav-cta,
.contact-showcase-button,
.amenities-cta,
.location-card-link,
.apartment-tile-button,
.blog-cta-button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.nav-cta:hover,
.contact-showcase-button:hover,
.amenities-cta:hover,
.location-card-link:hover,
.apartment-tile-button:hover,
.blog-cta-button:hover {
  transform: translateY(-2px);
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.hero-copy {
  animation: hero-copy-in 0.72s ease both;
}

.about-valamar-hero-copy {
  animation: hero-copy-in 0.72s ease both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 18px 0 0;
  background: transparent;
  pointer-events: none;
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.site-header .container {
  max-width: none;
}

.site-header.header-expanded {
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 26px rgba(14, 36, 58, 0.08);
  pointer-events: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(222, 211, 198, 0.9);
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 36px rgba(14, 36, 58, 0.12);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition:
    width 0.28s ease,
    padding 0.28s ease,
    border-radius 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand img {
  width: 126px;
  height: 42px;
  object-fit: contain;
}

.nav-panel {
  flex: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  transition: gap 0.28s ease;
}

.nav-links a {
  padding: 9px 14px;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: var(--surface-muted);
  color: var(--text);
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.site-header.header-expanded .nav-wrap {
  position: relative;
  width: 100%;
  min-height: 68px;
  padding: 10px 42px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(0);
}

.site-header.header-expanded .nav-links {
  gap: 12px;
}

.site-header.header-expanded .brand {
  position: absolute;
  top: 50%;
  left: 42px;
  font-size: 18px;
  transform: translateY(-50%);
}

.site-header.header-expanded .brand img {
  width: 126px;
  height: 42px;
}

.site-header.header-expanded .nav-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  flex: 0 0 auto;
  transform: translate(-50%, -50%);
}

.site-header.header-expanded .nav-links a {
  padding: 9px 12px;
}

.site-header.header-expanded .nav-cta {
  min-height: 44px;
  padding: 0 20px;
  font-weight: 700;
}

.site-header.header-expanded .nav-actions {
  position: absolute;
  top: 50%;
  right: 42px;
  transform: translateY(-50%);
}

.site-header.header-expanded .currency-switcher {
  background: var(--surface-muted);
}

.site-header.header-expanded .locale-settings-button {
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.hero {
  min-height: 86vh;
  display: grid;
  align-items: stretch;
  padding: 0;
}

.hero-grid {
  display: block;
}

.lead,
.section-heading p,
.card-body p,
.panel p,
.detail-copy p,
.legal-card p,
.faq-content,
.mini-hero p,
.detail-summary,
.footer-note {
  color: var(--text-muted);
}

.hero-actions,
.button-row,
.pill-row,
.meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metric strong,
.stat strong {
  display: block;
  margin-bottom: 6px;
}

.hero-media {
  min-height: 86vh;
  position: relative;
  background: var(--blue-dark);
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-fullbleed {
  padding-left: 0;
  padding-right: 0;
}

.hero-frame {
  position: relative;
  min-height: 86vh;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 36, 58, 0.16) 0%, rgba(14, 36, 58, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(14, 36, 58, 0.12) 100%);
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 276px 24px 32px;
  text-align: center;
}

.hero-copy h1,
.hero-copy .lead {
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(25, 121, 188, 0.42);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-kicker::before {
  content: "★";
  font-size: 12px;
}

.hero-copy h1 {
  max-width: 980px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-copy .lead {
  max-width: 34rem;
  font-size: 18px;
  line-height: 1.45;
  margin-top: 20px;
}

.hero-copy .button {
  margin-top: 24px;
  background: var(--white);
  color: var(--text);
  min-height: 52px;
  padding: 0 26px;
  box-shadow: 0 10px 24px rgba(14, 36, 58, 0.14);
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 280px;
  padding: 18px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  z-index: 1;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading p,
.narrow-copy {
  max-width: 34rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 34px;
}

.apartments-showcase .container {
  max-width: 1480px;
}

.apartments-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 54px;
}

.apartments-heading h2 {
  max-width: 980px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.apartments-heading p {
  max-width: 42rem;
  color: var(--text-muted);
}

.apartment-card {
  display: grid;
  align-content: start;
}

.apartment-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.15;
  border-radius: 34px;
}

.apartment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apartment-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 249, 0.94);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.apartment-body {
  display: grid;
  gap: 14px;
  padding: 18px 2px 0;
}

.apartment-place {
  color: var(--text-muted);
  font-size: 16px;
}

.apartment-body h3 {
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 600;
}

.apartment-meta {
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 15px;
}

.apartment-meta span {
  position: relative;
}

.apartment-meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(111, 103, 94, 0.45);
  transform: translateY(-50%);
}

.apartment-body p {
  color: var(--text-muted);
  font-size: 17px;
}

.apartment-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 24px;
  align-items: start;
}

.apartment-card-featured .apartment-media {
  aspect-ratio: auto;
  min-height: 100%;
  height: 100%;
}

.apartment-card-featured .apartment-body {
  align-content: start;
  padding: 8px 0 0;
}

.apartments-list-section {
  padding-top: 124px;
}

.apartments-list-section .container {
  max-width: 1660px;
}

.apartments-list-section h1 {
  margin: 0 0 24px;
}

.apartment-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.season-toggle {
  display: inline-flex;
  gap: 4px;
  margin: 0 0 24px;
  border-radius: var(--radius-pill);
  padding: 4px;
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(23, 111, 196, 0.26);
}

.apartments-heading + .season-toggle {
  margin-top: 4px;
}

.season-toggle button {
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 20px;
  background: transparent;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.season-toggle button.is-active {
  background: rgba(23, 111, 196, 0.12);
  color: var(--blue);
}

.apartment-tile {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 1.04 / 1;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 18px 38px rgba(14, 36, 58, 0.14);
}

.apartment-tile-featured {
  grid-column: span 2;
  aspect-ratio: 2.18 / 1;
}

.apartment-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 54%);
}

.apartment-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

.apartment-tile:hover img {
  transform: scale(1.035);
}

.apartment-capacity {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: var(--radius-pill);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.apartment-tile-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  color: var(--white);
}

.apartment-tile-content h3 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
  font-weight: 700;
}

.apartment-tile-content p {
  max-width: 28ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.22;
}

.apartment-spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 32ch;
  margin-top: 12px;
}

.apartment-spec-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: var(--radius-pill);
  padding: 5px 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.apartment-spec-list .apartment-stars {
  color: var(--yellow);
  letter-spacing: 1px;
}

.apartment-spec-list .apartment-price {
  min-width: 112px;
  max-width: 100%;
}

.apartment-tile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: #080b0d;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.reason-section {
  padding-top: 104px;
}

.reason-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 auto 48px;
  text-align: center;
}

.reason-heading .eyebrow {
  margin-bottom: 0;
  padding: 10px 24px;
  border: 1px solid rgba(222, 211, 198, 0.95);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 249, 0.88);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(92, 58, 36, 0.05);
}

.reason-heading h2 {
  max-width: 52rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.reason-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 280px;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(244, 239, 233, 0.96) 100%);
  border: 1px solid rgba(222, 211, 198, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(92, 58, 36, 0.06);
}

.reason-card h3 {
  font-size: 24px;
  line-height: 1.15;
}

.reason-card p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.5;
}

.reason-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.amenities-showcase {
  padding: 132px 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.amenities-showcase-inner {
  display: grid;
  justify-items: center;
}

.amenities-showcase-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.amenities-showcase-heading .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.amenities-showcase-heading h2 {
  max-width: 34rem;
  color: var(--white);
}

.amenities-pill-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  max-width: 980px;
  margin-top: 42px;
}

.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  font-weight: 700;
  opacity: 0.96;
}

.amenity-icon svg,
.location-mark svg,
.location-card-icon svg,
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-pill span:last-child {
  font-size: 17px;
  line-height: 1.2;
}

.amenities-showcase-cta {
  margin-top: 54px;
}

.amenities-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-weight: 500;
  box-shadow: 0 16px 34px rgba(14, 36, 58, 0.16);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-list,
.stat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: var(--surface-muted);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 14px;
}

.card-media {
  aspect-ratio: 4 / 5;
}

.card-body {
  padding-top: 24px;
}

.stack-copy {
  display: grid;
  gap: 12px;
}

.soft-section {
  padding: 34px 0 0;
}

.location-section {
  padding-top: 136px;
}

.location-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 42px;
  text-align: center;
}

.location-shell {
  padding: 22px;
  background: #f1f3f5;
  border: 1px solid #e7eaee;
  border-radius: 38px;
}

.location-address {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 0 32px;
  background: var(--white);
  border-radius: 28px;
  font-size: 18px;
}

.location-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: #f4f6f8;
  color: var(--text);
}

.location-map {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 28px;
  background: #dbe9f7;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

.location-cards {
  margin-top: 22px;
}

.location-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 280px;
  padding: 30px;
  background: var(--white);
  border: 1px solid #e8edf2;
  border-radius: 28px;
}

.location-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.location-card-head h3 {
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 600;
}

.location-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #f1f4f7;
  color: var(--text);
}

.location-card p {
  color: var(--text-muted);
  font-size: 17px;
}

.location-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: var(--white);
  font-weight: 500;
  box-shadow: 0 14px 26px rgba(23, 111, 196, 0.22);
}

.gallery-section {
  padding-top: 110px;
}

.gallery-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.gallery-heading h2 {
  max-width: 36rem;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
}

.gallery-heading p {
  max-width: 30rem;
  font-size: 16px;
  color: var(--text-muted);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.gallery-mosaic-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery-shot {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #ebe5dc;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-shot-tall {
  aspect-ratio: 1 / 1.06;
}

.gallery-shot-hero {
  aspect-ratio: 0.96 / 1;
}

.detail-hero {
  padding-top: 34px;
}

.detail-header {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.detail-copy {
  display: grid;
  gap: 18px;
}

.detail-summary {
  font-size: 18px;
  max-width: 34rem;
}

.detail-gallery {
  padding: 18px;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 14px;
}

.detail-gallery-grid .primary {
  min-height: 600px;
}

.detail-gallery-grid .secondary {
  display: grid;
  gap: 14px;
}

.detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-top: 24px;
}

.detail-rich {
  display: grid;
  gap: 24px;
}

.detail-notes {
  display: grid;
  gap: 12px;
}

.detail-side {
  display: grid;
  gap: 16px;
}

.apartment-detail-page {
  background: var(--bg);
}

.apartment-detail-hero {
  padding: 142px 0 34px;
}

.apartment-detail-title {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.apartment-detail-title h1 {
  font-family: var(--font-body);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
}

.apartment-detail-title p,
.apartment-overview-copy p,
.section-title-row p {
  color: var(--text-muted);
}

.apartment-detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.apartment-detail-main-flow {
  min-width: 0;
}

.apartment-detail-sidebar {
  position: sticky;
  top: 116px;
  display: grid;
  align-content: start;
  gap: 12px;
  width: 100%;
}

.apartment-detail-sidebar .apartment-summary-card {
  gap: 10px;
  padding: 18px 20px;
}

.apartment-detail-sidebar .apartment-summary-card h1,
.apartment-detail-sidebar .apartment-summary-card h2 {
  font-size: 29px;
}

.apartment-detail-sidebar .summary-location {
  margin-top: -5px;
  font-size: 14px;
}

.apartment-detail-sidebar .summary-icon-grid {
  gap: 8px 10px;
  font-size: 14px;
}

.apartment-detail-sidebar .waefoo-trust-card {
  padding: 18px 20px 20px;
  border-radius: 18px;
}

.apartment-detail-sidebar .waefoo-trust-heading {
  gap: 12px;
  margin-bottom: 14px;
}

.apartment-detail-sidebar .waefoo-trust-heading h3 {
  font-size: 20px;
}

.apartment-detail-sidebar .waefoo-shield {
  flex-basis: 34px;
  width: 34px;
  height: 42px;
}

.apartment-detail-sidebar .waefoo-shield span {
  top: 14px;
  left: 9px;
}

.apartment-detail-sidebar .waefoo-check-list {
  gap: 8px;
}

.apartment-detail-sidebar .waefoo-check-list li {
  gap: 11px;
  font-size: 14px;
}

.apartment-detail-sidebar .waefoo-check {
  flex-basis: 24px;
  width: 24px;
  height: 24px;
}

.apartment-detail-sidebar .waefoo-check::after {
  top: 6px;
  left: 5px;
  width: 11px;
  height: 6px;
  border-width: 0 0 3px 3px;
}

.apartment-summary-card {
  position: static;
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 24px;
  border-radius: 18px;
  background: #050505;
  color: var(--white);
}

.summary-kicker {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.apartment-summary-card h1,
.apartment-summary-card h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 800;
}

.summary-location {
  margin-top: -10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.apartment-summary-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.summary-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-rating strong,
.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.summary-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-icon-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.summary-icon {
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.summary-price {
  display: grid;
  gap: 2px;
  padding-top: 4px;
}

.summary-price span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-price strong {
  color: var(--white);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
}

.summary-price-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.summary-price-note::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.summary-season-toggle {
  width: 100%;
  margin: -4px 0 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.summary-season-toggle button {
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.72);
}

.summary-season-toggle button.is-active {
  background: var(--white);
  color: var(--text);
}

.summary-reserve-button,
.detail-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.summary-reserve-button {
  width: 100%;
  margin-top: 6px;
  background: var(--white);
  color: var(--text);
}

.apartment-detail-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.9fr);
  gap: 12px;
}

.apartment-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.apartment-detail-main-photo,
.apartment-detail-thumbs {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
}

.apartment-detail-main-photo {
  aspect-ratio: 1.45 / 1;
}

.apartment-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.apartment-detail-thumbs img {
  min-height: 0;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

.gallery-open-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 0;
  border-radius: 10px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(8, 11, 13, 0.18);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-open-button span {
  font-size: 24px;
  line-height: 1;
}

.gallery-extra {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  overflow-y: auto;
  background: rgba(8, 11, 13, 0.82);
  padding: 28px;
}

.gallery-modal.is-open {
  display: block;
}

.gallery-modal-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  border-radius: 18px 18px 0 0;
  background: var(--surface);
}

.gallery-modal-header h2 {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.gallery-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.gallery-modal-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  border-radius: 12px;
  object-fit: cover;
}

.apartment-detail-section {
  padding: 42px 0;
}

.apartment-detail-tabs-section {
  padding-top: 42px;
}

.apartment-detail-section h2 {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

.detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  max-width: 860px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.detail-tabs a {
  padding: 0 0 14px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.detail-tabs a:first-child {
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--text);
}

.apartment-overview-copy {
  display: grid;
  gap: 20px;
  max-width: 860px;
}

.overview-facts,
.popular-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.overview-facts span,
.popular-amenities-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  color: #008a45;
  font-weight: 900;
}

.popular-amenities-grid {
  margin-top: 24px;
}

.section-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.ratings-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
  align-items: start;
  gap: 34px;
}

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

.waefoo-trust-card {
  padding: 26px 28px 28px;
  border: 1px solid #c5ccd2;
  border-radius: 24px;
  background: #fff;
  color: #0b1b2e;
}

.waefoo-trust-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.waefoo-trust-heading h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}

.waefoo-shield {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 52px;
  background: #42b62f;
  clip-path: polygon(50% 0, 100% 18%, 96% 62%, 78% 82%, 50% 100%, 22% 82%, 4% 62%, 0 18%);
}

.waefoo-shield span,
.waefoo-check::after {
  position: absolute;
  width: 16px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  transform: rotate(-45deg);
}

.waefoo-shield span {
  top: 18px;
  left: 12px;
}

.waefoo-check-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.waefoo-check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  line-height: 1.35;
}

.waefoo-check {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #42b62f;
}

.waefoo-check::after {
  top: 9px;
  left: 7px;
  width: 14px;
  height: 7px;
}

.rating-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  font-weight: 800;
}

.rating-row div {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 8px;
  border-radius: var(--radius-pill);
  background: #eef1f4;
}

.rating-row div span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

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

.surroundings-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.surroundings-column h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
}

.surroundings-column h3:first-child {
  margin-top: 0;
}

.surroundings-column p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-muted);
}

.surroundings-column strong {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  text-align: right;
  color: var(--text-muted);
  font-weight: 500;
}

.surroundings-column p > span {
  flex: 0 0 auto;
}

#surroundings .section-title-row h2 {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.2;
}

#surroundings .section-title-row p {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
}

#surroundings .surroundings-column h3 {
  font-size: 18px;
  line-height: 1.35;
}

#surroundings .surroundings-column p {
  font-size: 16px;
  line-height: 1.5;
}

.restaurant-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin-top: 34px;
}

.restaurant-card,
.legal-info-card,
.policy-list {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.restaurant-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.restaurant-card h3,
.legal-info-card h2 {
  font-family: var(--font-body);
  font-weight: 800;
}

.restaurant-card p,
.policy-list p {
  display: grid;
  gap: 2px;
  color: var(--text-muted);
}

.restaurant-card strong,
.policy-list strong {
  color: var(--text);
}

.detail-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.policy-list {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.policy-list p {
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.policy-list p:last-child {
  border-bottom: 0;
}

.legal-info-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
}

.detail-related-heading {
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .apartment-detail-sidebar {
    position: static;
  }

  .ratings-content-grid {
    grid-template-columns: 1fr;
  }

  .waefoo-trust-card {
    max-width: 620px;
  }

  .apartment-detail-hero {
    padding-top: 124px;
  }

  .apartment-detail-tabs-section {
    padding-top: 42px;
  }

  .apartment-detail-layout,
  .apartment-detail-gallery,
  .detail-two-column,
  .surroundings-grid {
    grid-template-columns: 1fr;
  }

  .apartment-detail-gallery {
    order: 1;
  }

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

  .section-title-row {
    display: grid;
  }
}

@media (max-width: 640px) {
  .locale-settings-modal {
    padding: 16px;
  }

  .locale-settings-card {
    padding: 32px 18px 24px;
    border-radius: 24px;
  }

  .locale-settings-card h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .locale-select-trigger {
    min-height: 72px;
    border-radius: 18px;
  }

  .locale-confirm-button {
    min-height: 54px;
  }

  .apartment-detail-hero {
    padding-top: 112px;
  }

  .apartment-detail-title {
    margin-bottom: 18px;
  }

  .apartment-detail-thumbs,
  .rating-grid,
  .restaurant-card-grid,
  .summary-icon-grid {
    grid-template-columns: 1fr;
  }

  .apartment-detail-gallery {
    display: block;
  }

  .apartment-detail-main-photo {
    aspect-ratio: 4 / 3;
  }

  .apartment-detail-thumbs {
    display: none;
  }

  .gallery-open-button {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    min-height: 50px;
    padding: 0 14px;
    font-size: 15px;
  }

  .gallery-modal {
    padding: 12px;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .apartment-summary-card,
  .legal-info-card,
  .restaurant-card {
    border-radius: 14px;
    padding: 20px;
  }

  .policy-list p {
    grid-template-columns: 1fr;
  }
}

.callout {
  background: var(--surface-muted);
}

.site-footer {
  padding: 34px 0 46px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.footer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(140px, 0.55fr) minmax(210px, 0.78fr) minmax(170px, 0.68fr);
  gap: 40px 56px;
  align-items: start;
}

.footer-minimal {
  padding: 34px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

.footer-brand-block {
  max-width: 32rem;
}

.footer-title {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.footer-note {
  margin-top: 14px;
  max-width: 30rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links-row {
  display: flex;
  gap: 16px 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.82);
}

.footer-links-stack {
  display: grid;
  gap: 12px;
}

.footer-contact-row {
  justify-content: flex-start;
}

.footer-socials {
  display: grid;
  gap: 10px;
}

.footer-socials a,
.footer-social-icon,
.card-title-icon {
  display: inline-flex;
  align-items: center;
}

.footer-socials a {
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
}

.footer-social-icon,
.card-title-icon {
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.card-title-icon {
  margin-right: 10px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.contact-showcase {
  padding: 132px 0;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.contact-showcase-inner {
  display: grid;
  justify-items: center;
}

.contact-showcase-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.contact-showcase-heading .eyebrow,
.contact-showcase-heading h2,
.contact-showcase-heading p {
  color: var(--white);
}

.contact-showcase-heading p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 860px;
  margin-top: 36px;
}

.contact-info-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 146px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-info-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-card strong {
  font-size: 16px;
  color: var(--white);
}

.contact-showcase-cta {
  margin-top: 36px;
}

.contact-showcase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-weight: 500;
}

.contact-page {
  background: var(--bg);
}

.contact-hero-section {
  min-height: 100vh;
  padding: 368px 0 110px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(56px, 9vw, 140px);
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 11ch;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-hero-copy p {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.4;
}

.contact-hero-copy h1 + p {
  margin-top: 26px;
}

.contact-quick-list {
  display: grid;
  gap: 12px;
  margin-top: 82px;
  color: var(--white);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 500;
}

.contact-quick-list a,
.contact-quick-list > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.contact-quick-list span span,
.contact-quick-list a span {
  width: 22px;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.contact-modern-form {
  display: grid;
  gap: 28px;
  margin-top: -64px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-modern-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.contact-label-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.required-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--text);
  font-size: 14px;
  line-height: 1;
}

.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 14px;
  background: #202020;
  color: var(--white);
  font-size: 18px;
}

.contact-modern-form input.is-invalid,
.contact-modern-form select.is-invalid,
.contact-modern-form textarea.is-invalid {
  box-shadow: 0 0 0 2px var(--yellow);
}

.contact-modern-form input,
.contact-modern-form select {
  min-height: 58px;
  padding: 0 18px;
}

.contact-modern-form textarea {
  min-height: 144px;
  padding: 18px;
  resize: vertical;
}

.contact-modern-form input::placeholder,
.contact-modern-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-modern-form select {
  color: rgba(255, 255, 255, 0.5);
}

.contact-modern-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: #0b0b0b;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form-error {
  margin: -4px 0 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: rgba(255, 212, 71, 0.14);
  color: var(--yellow);
  font-weight: 700;
  text-align: center;
}

.contact-form-note {
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-weight: 600;
}

.journal-section,
.reviews-section,
.faq-section {
  padding-top: 132px;
}

.journal-heading,
.reviews-heading,
.faq-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.journal-heading h2,
.reviews-heading h2,
.faq-heading h2 {
  max-width: 52rem;
}

.journal-heading p {
  max-width: 42rem;
  color: var(--text-muted);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.journal-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #e8e2d8;
  border-radius: 34px;
  box-shadow: 0 18px 38px rgba(92, 58, 36, 0.05);
}

.journal-card-link {
  display: block;
}

.journal-card-link .journal-card {
  height: 100%;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.journal-card-link:hover .journal-card,
.journal-card-link:focus-visible .journal-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(92, 58, 36, 0.1);
}

.journal-card-link:hover .journal-card-media img,
.journal-card-link:focus-visible .journal-card-media img {
  transform: scale(1.035);
}

.journal-card-media {
  padding: 18px 18px 0;
}

.journal-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3.05;
  border-radius: 28px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.journal-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  padding: 20px 26px 26px;
}

.journal-card h3 {
  font-size: 24px;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.15;
}

.journal-card p {
  color: var(--text-muted);
  font-size: 17px;
}

.journal-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.journal-cta,
.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  margin-top: 42px;
}

.reviews-score-card {
  padding: 42px 46px;
  background: var(--surface);
  border: 1px solid #ece4d8;
  border-radius: 34px;
  box-shadow: 0 18px 40px rgba(92, 58, 36, 0.05);
}

.reviews-score-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.reviews-star {
  font-size: 42px;
  line-height: 1;
}

.reviews-score-top strong {
  font-size: 56px;
  line-height: 1;
}

.reviews-bars {
  display: grid;
  gap: 22px;
}

.reviews-bar-row {
  display: grid;
  grid-template-columns: 190px 1fr 54px;
  gap: 18px;
  align-items: center;
  font-size: 17px;
}

.reviews-bar-row span:first-child {
  color: var(--text-muted);
}

.reviews-bar {
  height: 10px;
  background: #ece7df;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.reviews-bar span {
  display: block;
  height: 100%;
  background: var(--text);
  border-radius: inherit;
}

.review-quote-block {
  display: grid;
  gap: 24px;
}

.review-slide {
  display: none;
  gap: 24px;
}

.review-slide.is-active {
  display: grid;
}

.review-controls {
  display: flex;
  gap: 12px;
}

.review-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
}

.review-stars {
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.review-quote-block blockquote {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: var(--text-muted);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--orange) 100%);
  color: var(--white);
  font-weight: 700;
}

.review-author strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.review-author p {
  color: var(--text-muted);
}

.faq-heading {
  margin-bottom: 42px;
}

.faq-list {
  display: grid;
  gap: 24px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 124px;
  padding: 0 32px 0 94px;
  cursor: pointer;
  list-style: none;
  font-size: 22px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] summary::before {
  content: "−";
}

.faq-item .faq-content {
  padding: 0 32px 30px 94px;
  font-size: 18px;
  line-height: 1.6;
}

.mini-hero {
  margin-top: var(--space-lg);
}

.legal-page {
  background: #f8fafc;
  font-family: var(--font-body);
}

.legal-page .mini-hero h1,
.legal-heading h2,
.legal-content h3 {
  font-family: var(--font-legal-heading);
}

.legal-page .page-shell {
  padding-top: 124px;
}

.legal-page .mini-hero {
  max-width: 1120px;
  margin-top: 0;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  max-width: 1120px;
  margin: 34px auto 0;
}

.legal-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 2px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(14, 36, 58, 0.06);
}

.legal-nav a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 10px 8px;
  color: #123b63;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 6px;
}

.legal-nav a:hover {
  background: var(--surface-muted);
}

.legal-nav span {
  color: #0b315d;
  font-weight: 600;
}

.legal-document {
  display: grid;
  gap: 56px;
}

.legal-section {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 52px;
  border-bottom: 1px dashed var(--border);
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: #082b5f;
  color: var(--white);
  border-radius: 5px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.legal-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.legal-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.legal-heading > span {
  flex: 0 0 auto;
  padding: 5px 10px;
  color: #0b4f75;
  background: #e9f4f7;
  border: 1px solid #cfe5eb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.legal-content > p {
  margin: 0;
  color: #34404c;
  font-size: 16px;
  line-height: 1.82;
}

.legal-content > p + p {
  margin-top: 2px;
}

.legal-content strong {
  color: #062b5f;
  font-weight: 750;
}

.legal-content .legal-key-fact {
  padding: 15px 18px;
  color: #183b51;
  background: linear-gradient(135deg, #edf7f8, #f7fbfc);
  border: 1px solid #d1e8eb;
  border-left: 4px solid #2b8194;
  border-radius: 8px;
}

.legal-content .legal-list-item {
  position: relative;
  margin-top: -4px;
  padding-left: 24px;
}

.legal-content .legal-list-item::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 4px;
  width: 7px;
  height: 7px;
  background: #2b8194;
  border-radius: 50%;
}

.legal-heading h2 {
  color: #062b5f;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.18;
}

.legal-heading p {
  margin-top: 6px;
  color: #9a9fa5;
  font-size: 16px;
}

.legal-content h3 {
  color: #062b5f;
  font-size: 21px;
  font-weight: 700;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-item;
}

.legal-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  color: #30363d;
  font-size: 15px;
  line-height: 1.75;
}

.legal-list li::before {
  counter-increment: legal-item;
  content: attr(data-prefix) "." counter(legal-item) ".";
  color: #082b5f;
  font-weight: 700;
}

.legal-bullets {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-bullets li {
  position: relative;
  padding-left: 22px;
  color: #30363d;
  font-size: 15px;
  line-height: 1.7;
}

.legal-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-right: 2px solid #082b5f;
  border-bottom: 2px solid #082b5f;
  transform: rotate(-45deg);
}

.legal-note {
  padding: 18px 20px;
  color: #304052;
  background: #eef4fb;
  border: 1px solid #d8e6f4;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.legal-table th {
  color: #082b5f;
  background: #eef4fb;
  font-weight: 700;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .legal-number {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .legal-section {
    padding-bottom: 40px;
  }
}

.blog-page {
  overflow: hidden;
}

.blog-detail-page {
  overflow: hidden;
  background: #ffffff;
}

.blog-hero-section {
  padding-top: 148px;
  padding-bottom: 24px;
}

.blog-feed-shell {
  max-width: 1120px;
}

.blog-intro {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0 auto 42px;
  text-align: center;
}

.blog-intro h1 {
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.blog-intro .lead {
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 18px;
}

.blog-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 34px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(23, 118, 210, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(241, 233, 223, 0.92) 100%);
  border: 1px solid rgba(222, 211, 198, 0.92);
  border-radius: 40px;
  box-shadow: 0 26px 64px rgba(92, 58, 36, 0.08);
}

.blog-hero-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 26px 12px 26px 8px;
}

.blog-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
}

.blog-hero-copy .lead {
  max-width: 34rem;
  font-size: 18px;
}

.blog-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.blog-hero-aside {
  display: grid;
  gap: 18px;
}

.blog-hero-note,
.blog-feature-card,
.blog-topic-card,
.blog-article-card,
.blog-list-item,
.blog-sidebar-card,
.blog-cta-shell {
  background: var(--surface);
  border: 1px solid rgba(222, 211, 198, 0.92);
  border-radius: 34px;
}

.blog-hero-note {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.blog-note-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(23, 118, 210, 0.1);
  color: #165a97;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-hero-note h2,
.blog-section-head h2,
.blog-cta-shell h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
}

.blog-hero-note p,
.blog-section-head p,
.blog-feature-copy p,
.blog-article-body p,
.blog-list-copy p,
.blog-sidebar-card p,
.blog-topic-card p,
.blog-cta-shell p {
  color: var(--text-muted);
}

.blog-hero-image {
  overflow: hidden;
  min-height: 320px;
  border-radius: 34px;
}

.blog-hero-image img,
.blog-feature-image img,
.blog-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-feature-link:hover .blog-feature-image img,
.blog-card-link:hover .blog-article-media img,
.blog-read-more-card:hover img {
  transform: scale(1.025);
}

.blog-topic-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-topic-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.blog-topic-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-muted);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.blog-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

.blog-section-head-tight {
  grid-template-columns: 1fr;
  margin-bottom: 28px;
}

.blog-featured-section {
  padding-top: 78px;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 28px;
  padding: 24px;
  box-shadow: 0 20px 44px rgba(92, 58, 36, 0.06);
}

.blog-feature-card-wide {
  grid-template-columns: minmax(0, 1.95fr) minmax(280px, 1fr);
  align-items: stretch;
  margin-bottom: 26px;
  border-radius: 32px;
}

.blog-feature-card-compact {
  grid-template-columns: minmax(0, 1.86fr) minmax(300px, 0.94fr);
  gap: 28px;
  width: 100%;
  max-width: none;
  padding: 18px;
}

.blog-feature-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
}

.blog-feature-card-compact .blog-feature-image {
  height: clamp(280px, 30vw, 360px);
  min-height: 0;
  border-radius: 22px;
}

.blog-feature-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 12px 8px;
}

.blog-feature-card-compact .blog-feature-copy {
  gap: 12px;
  padding: 14px 10px;
}

.blog-feature-card-compact .blog-feature-copy h2 {
  font-family: var(--font-body);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.08;
}

.blog-date {
  color: var(--text-muted);
  font-size: 15px;
}

.blog-feature-copy h3,
.blog-article-body h3,
.blog-list-copy h3,
.blog-sidebar-card h3,
.blog-topic-card h3 {
  font-family: var(--font-body);
  font-size: 29px;
  line-height: 1.12;
  font-weight: 600;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.blog-feature-link,
.blog-card-link {
  display: block;
}

.blog-feature-link .blog-feature-card,
.blog-card-link .blog-article-card,
.blog-read-more-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.blog-feature-link:hover .blog-feature-card,
.blog-card-link:hover .blog-article-card,
.blog-read-more-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(92, 58, 36, 0.1);
}

.blog-article-card {
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(92, 58, 36, 0.05);
}

.blog-card-link[hidden] {
  display: none;
}

.blog-more-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.blog-more-button {
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  box-shadow: 0 16px 34px rgba(64, 44, 31, 0.16);
}

.blog-more-button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 20px 42px rgba(64, 44, 31, 0.2);
}

.blog-article-media {
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
  border-radius: 34px 34px 0 0;
}

.blog-article-body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 26px;
}

.blog-card-grid .blog-article-body {
  align-content: start;
}

.blog-columns-section {
  padding-top: 82px;
}

.blog-columns-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.blog-column-main {
  min-width: 0;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.blog-list-copy {
  display: grid;
  gap: 14px;
}

.blog-list-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  color: var(--text);
  font-weight: 500;
}

.blog-sidebar {
  display: grid;
  gap: 18px;
}

.blog-sidebar-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.blog-sidebar-card-muted {
  background: linear-gradient(180deg, rgba(239, 230, 218, 0.76) 0%, rgba(255, 253, 249, 0.92) 100%);
}

.blog-sidebar-links {
  display: grid;
  gap: 12px;
}

.blog-sidebar-links a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.blog-sidebar-links a:hover {
  transform: translateX(4px);
  background: var(--white);
}

.blog-cta-section {
  padding-top: 82px;
}

.blog-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr) auto;
  gap: 26px;
  align-items: center;
  padding: 30px 34px;
  background: linear-gradient(135deg, #1776d2 0%, #176fc4 100%);
  border-color: rgba(23, 118, 210, 0.3);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(23, 118, 210, 0.22);
}

.blog-cta-shell .eyebrow,
.blog-cta-shell h2,
.blog-cta-shell p {
  color: var(--white);
}

.blog-cta-shell p {
  color: rgba(255, 255, 255, 0.84);
}

.blog-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.blog-post {
  padding: 104px 0 0;
}

.blog-post-hero {
  width: min(calc(100% - 64px), 1360px);
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 2.56 / 1;
  border-radius: 28px;
  background: var(--surface-muted);
}

.blog-post-hero img,
.blog-post-figure img,
.blog-read-more-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-shell {
  display: grid;
  gap: 22px;
  width: min(calc(100% - 48px), 760px);
  margin: 72px auto 0;
}

.blog-back-link {
  width: fit-content;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.blog-back-link::before {
  content: "←";
  margin-right: 8px;
}

.blog-post-shell h1 {
  max-width: 18ch;
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.02;
}

.blog-author {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.blog-post-shell > p,
.blog-post-section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.blog-post-shell a:not(.blog-back-link):not(.blog-read-more-card) {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.blog-post-figure {
  overflow: hidden;
  margin: 28px 0 10px;
  aspect-ratio: 1.73 / 1;
  border-radius: 14px;
  background: var(--surface-muted);
}

.blog-post-section {
  display: grid;
  gap: 10px;
}

.blog-post-section h2,
.blog-post-shell > h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-post-source {
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  background: var(--surface-muted);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.blog-post-note {
  font-style: italic;
}

.blog-post-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.blog-post-table-wrap {
  overflow-x: auto;
  margin: 10px 0 18px;
  border: 1px solid rgba(222, 211, 198, 0.92);
  border-radius: 14px;
  background: var(--surface);
}

.blog-post-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
}

.blog-post-table th,
.blog-post-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(222, 211, 198, 0.72);
  text-align: left;
  vertical-align: top;
}

.blog-post-table tr:last-child th,
.blog-post-table tr:last-child td {
  border-bottom: 0;
}

.blog-post-table th {
  color: var(--text);
  font-weight: 700;
  background: var(--surface-muted);
}

.blog-post-map {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 8px 0 20px;
  border-radius: 14px;
  background: var(--surface-muted);
}

.blog-post-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-read-more-section {
  padding: 132px 0 128px;
}

.blog-read-more-inner {
  max-width: 1380px;
}

.blog-read-more-inner h2 {
  margin-bottom: 42px;
  font-family: var(--font-body);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  text-align: center;
}

.blog-read-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-read-more-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(222, 211, 198, 0.92);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(92, 58, 36, 0.06);
}

.blog-read-more-card img {
  aspect-ratio: 1.7 / 1;
  border-radius: 14px;
}

.blog-read-more-card strong {
  font-size: 16px;
  line-height: 1.25;
}

.blog-read-more-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.about-page {
  background: var(--bg);
}

.about-hero {
  padding: 0 0 34px;
}

.about-hero-fullbleed {
  padding-left: 0;
  padding-right: 0;
}

.about-hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
  width: min(calc(100% - 64px), 1960px);
  margin: 0 auto;
  border-radius: 32px;
}

.about-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.72) 0%, rgba(10, 12, 16, 0.48) 42%, rgba(10, 12, 16, 0.72) 100%),
    linear-gradient(90deg, rgba(10, 12, 16, 0.52) 0%, rgba(10, 12, 16, 0.16) 50%, rgba(10, 12, 16, 0.52) 100%);
}

.about-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 124px 40px 40px;
  text-align: center;
}

.about-hero-shell h1 {
  max-width: none;
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--white);
}

.about-hero-shell .lead {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.6;
}

.about-mission-section,
.about-values-section,
.about-team-section {
  padding-top: 40px;
}

.about-mission-card,
.about-values-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.about-mission-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.about-mission-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.about-mission-copy h2,
.about-values-heading h2,
.about-team-heading h2 {
  max-width: 18ch;
}

.about-mission-copy p,
.about-values-heading p,
.about-value-copy p,
.about-stat-card p,
.about-member-copy p {
  color: var(--text-muted);
}

.about-mission-media {
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
}

.about-mission-media img,
.about-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-stat-card {
  display: grid;
  align-content: space-between;
  min-height: 178px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.about-stat-card strong {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  font-weight: 500;
}

.about-stat-card p {
  max-width: 16ch;
  font-size: 15px;
  line-height: 1.45;
}

.about-stat-card-dark {
  background: #05282c;
  color: var(--white);
  border-color: #05282c;
}

.about-stat-card-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.about-values-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.about-values-list {
  display: grid;
  gap: 16px;
}

.about-value-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(255, 253, 249, 0.74);
  border: 1px solid rgba(222, 211, 198, 0.78);
  border-radius: var(--radius-md);
}

.about-value-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 22px;
  font-family: var(--font-heading);
}

.about-value-copy {
  display: grid;
  gap: 6px;
}

.about-value-copy h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
}

.about-team-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-member-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-member-photo {
  overflow: hidden;
  aspect-ratio: 0.82 / 1;
}

.about-member-copy {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px 18px 22px;
  text-align: center;
}

.about-member-copy h3 {
  font-size: 26px;
}

.about-member-copy p {
  font-size: 14px;
}

.about-valamar-page {
  background: #fff;
  color: #000;
}

.about-valamar-hero {
  position: relative;
  width: 100%;
  min-height: 86vh;
  overflow: hidden;
}

.about-valamar-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16));
}

.about-valamar-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-valamar-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 276px 24px 32px;
  text-align: center;
}

.about-valamar-hero h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-valamar-hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.about-valamar-hero p {
  max-width: 39rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}

.about-back-button {
  display: none;
}

.about-valamar-content {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 120px 0 96px;
}

.about-valamar-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 84px;
  align-items: center;
  margin-bottom: 104px;
}

.about-valamar-row-flipped {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 84px;
  margin-bottom: 104px;
}

.about-valamar-copy h2 {
  max-width: 13ch;
  color: #000;
  font-family: var(--font-body);
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.about-valamar-copy p {
  max-width: 39rem;
  margin-top: 28px;
  color: #000;
  font-size: 18px;
  line-height: 1.6;
}

.about-valamar-image {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 24px;
}

.about-valamar-panel {
  background: #f3f2f1;
  border-radius: 18px;
}

.about-history-section {
  margin: 0 0 72px;
  padding: 72px 58px 78px;
  background: #fff;
  border: 1px solid #ede8df;
  border-radius: 18px;
}

.about-history-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 64px;
  text-align: center;
}

.about-history-heading h2 {
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.about-history-heading p {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.about-history-heading::after,
.about-history-detail::before,
.about-history-detail::after {
  content: "";
  width: 18px;
  height: 2px;
  background: #ded3c6;
}

.about-history-heading::after {
  margin-top: 26px;
}

.about-history-track {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: start;
  gap: 28px;
  --history-progress: 0;
}

.about-history-track::before,
.about-history-track::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 16px;
  height: 2px;
}

.about-history-track::before {
  background: #ede8df;
}

.about-history-track::after {
  right: auto;
  width: calc(100% - 68px);
  background: var(--accent);
  transform: scaleX(var(--history-progress));
  transform-origin: left center;
}

.about-history-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  min-height: 72px;
}

.about-history-line article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  cursor: pointer;
}

.about-history-dot {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 3px solid #ded3c6;
  border-radius: 50%;
  background: #fff;
}

.about-history-line article.is-active .about-history-dot {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px #fff;
}

.about-history-line article.is-active .about-history-dot::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.about-history-line time {
  color: rgba(0, 0, 0, 0.28);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-history-line article.is-active time {
  color: var(--accent);
}

.about-history-line article:hover .about-history-dot,
.about-history-line article:focus-visible .about-history-dot {
  border-color: var(--accent);
}

.about-history-line article:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
  border-radius: 12px;
}

.about-history-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-top: -18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.about-history-arrow:hover,
.about-history-arrow:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.about-history-detail {
  display: grid;
  justify-items: center;
  gap: 26px;
  max-width: 760px;
  margin: 52px auto 0;
  text-align: center;
}

.about-history-detail h3 {
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.about-history-detail p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}

.about-vision-panel {
  display: grid;
  gap: 34px;
  padding: 54px 58px;
  margin-top: 6px;
}

.about-vision-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 96px;
}

.about-vision-row h3,
.about-core-panel h3,
.about-core-grid h4 {
  color: #000;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.about-vision-row h3,
.about-core-panel h3 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.about-vision-row p {
  color: #000;
  font-size: 17px;
  line-height: 1.55;
}

.about-core-panel {
  margin-top: 72px;
  padding: 58px;
}

.about-core-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  margin-top: 34px;
}

.about-core-grid h4 {
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 700;
}

.about-core-grid strong {
  display: block;
  margin-top: 20px;
  color: #000;
  font-size: 15px;
  line-height: 1.3;
}

.about-core-grid p {
  margin-top: 6px;
  color: #000;
  font-size: 14px;
  line-height: 1.5;
}

.about-team-feature {
  display: grid;
  gap: 42px;
  margin-top: 72px;
  padding: 0;
}

.about-team-feature-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.about-team-feature-heading h2 {
  max-width: 18ch;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.about-team-feature-heading p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.about-team-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-team-person-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  background: var(--blue-dark);
}

.about-team-person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 36%, rgba(0, 0, 0, 0.76) 100%);
}

.about-team-person-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-person-copy {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 42px;
  z-index: 1;
  color: var(--white);
}

.about-team-person-copy span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-team-person-copy h3 {
  color: var(--white);
  font-size: 26px;
  line-height: 1.2;
}

/* Unified type scale and palette overrides for all pages. */
.button,
.nav-cta,
.reviews-bar span {
  background: var(--text);
  color: var(--white);
}

.button:hover,
.nav-cta:hover,
.contact-showcase-button:hover,
.amenities-cta:hover,
.blog-cta-button:hover {
  background: var(--orange);
  color: var(--text);
}

.button-secondary,
.location-card-link,
.pill,
.meta-pill,
.apartment-tile-button {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover,
.location-card-link:hover,
.apartment-tile-button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--text);
}

.location-card .location-card-link {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.location-card .location-card-link:hover,
.location-card .location-card-link:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.nav-wrap {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(216, 226, 236, 0.92);
  box-shadow: 0 14px 36px rgba(14, 36, 58, 0.12);
}

.nav-links a.active,
.nav-links a:hover,
.pill,
.meta-pill,
.callout {
  background: var(--surface-muted);
}

.eyebrow,
.hero-kicker,
.reason-number,
.location-mark,
.location-card-icon,
.blog-list-tag,
.blog-card-tag,
.blog-hero-note-label,
.about-history-line article.is-active time {
  color: var(--blue);
}

.hero-kicker {
  background: rgba(23, 111, 196, 0.72);
}

.hero-copy h1 {
  max-width: 880px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy .lead,
.detail-summary,
.contact-hero-copy p,
.blog-intro .lead,
.blog-hero-copy .lead,
.about-hero-shell .lead,
.about-valamar-copy p,
.about-history-detail p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

.apartments-heading h2,
.contact-hero-copy h1,
.blog-intro h1,
.blog-hero-copy h1,
.about-hero-shell h1,
.about-valamar-hero h1,
.about-valamar-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.gallery-heading h2,
.blog-feature-copy h2,
.blog-section-head h2,
.about-history-heading h2,
.about-history-detail h3 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.apartment-body h3,
.apartment-tile-content h3,
.reason-card h3,
.location-card-head h3,
.journal-card h3,
.blog-feature-copy h3,
.blog-article-body h3,
.blog-list-copy h3,
.blog-sidebar-card h3,
.blog-topic-card h3,
.about-value-copy h3,
.about-member-copy h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

.apartment-body p,
.reason-card p,
.location-card p,
.journal-card p,
.blog-feature-copy p,
.blog-article-body p,
.blog-list-copy p,
.blog-sidebar-card p,
.blog-topic-card p,
.contact-info-card p,
.about-mission-copy p,
.about-values-heading p,
.about-value-copy p,
.about-member-copy p {
  font-size: 17px;
  line-height: 1.65;
}

.apartment-tile-content p {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.4;
}

.apartment-tile-button,
.contact-modern-form button,
.faq-item summary,
.review-quote-block blockquote {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.35;
}

.contact-showcase,
.amenities-showcase,
.site-footer {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.contact-hero-section {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
}

.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
  background: #111820;
  color: var(--white);
}

.contact-modern-form button,
.contact-showcase-button,
.amenities-cta,
.blog-cta-button {
  background: var(--yellow);
  color: var(--text);
}

.contact-info-card,
.amenity-pill {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.apartment-tile {
  background: transparent;
}

.apartment-badge,
.hero-badge,
.reason-heading .eyebrow {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--border);
  color: var(--text);
}

.reason-card,
.blog-hero-shell,
.blog-cta-shell {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: var(--border);
  box-shadow: 0 18px 44px rgba(14, 36, 58, 0.08);
}

.location-shell {
  background: var(--surface-muted);
  border-color: var(--border);
}

.location-mark,
.location-card-icon,
.about-value-index {
  background: var(--yellow);
  color: var(--text);
}

.location-map {
  background: #dcecff;
}

.gallery-shot {
  background: var(--surface-muted);
}

.journal-card,
.reviews-score-card,
.about-mission-card,
.about-values-shell,
.about-stat-card,
.about-member-card,
.about-history-section {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: 0 18px 40px rgba(14, 36, 58, 0.07);
}

.reviews-star,
.review-stars,
.review-avatar {
  color: var(--accent);
}

.review-avatar {
  background: var(--blue);
}

.reviews-bar {
  background: var(--surface-muted);
}

.faq-item summary::before {
  color: var(--orange);
}

.about-valamar-page {
  background: var(--bg);
  color: var(--text);
}

.about-valamar-copy h2,
.about-history-heading h2,
.about-history-detail h3,
.about-vision-row h3,
.about-core-panel h3,
.about-core-grid h4,
.about-core-grid strong,
.about-core-grid p,
.about-vision-row p,
.about-valamar-copy p {
  color: var(--text);
}

.about-valamar-panel {
  background: var(--surface-muted);
}

.about-stat-card-dark {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.about-history-heading::after,
.about-history-detail::before,
.about-history-detail::after,
.about-history-track::after,
.about-history-line article.is-active .about-history-dot::after {
  background: var(--accent);
}

.about-history-track::before {
  background: var(--border);
}

.about-history-dot {
  border-color: var(--border);
  background: var(--surface);
}

.about-history-line article.is-active .about-history-dot,
.about-history-line article:hover .about-history-dot,
.about-history-line article:focus-visible .about-history-dot,
.about-history-arrow {
  border-color: var(--accent);
}

.about-history-arrow {
  color: var(--text);
  background: var(--yellow);
}

.about-history-arrow:hover,
.about-history-arrow:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.muted {
  color: var(--text-muted);
}

.cookie-consent {
  position: fixed;
  inset: auto 18px 22px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent[hidden],
.cookie-reopen[hidden],
.cookie-settings[hidden],
.cookie-actions [hidden] {
  display: none;
}

.cookie-consent-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(980px, 100%);
  padding: 24px 34px 26px;
  background: #ffffff;
  border: 1px solid rgba(216, 226, 236, 0.82);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(28, 90, 145, 0.16);
  pointer-events: auto;
}

.cookie-consent-copy {
  max-width: 820px;
  padding-right: 54px;
}

.cookie-consent-copy h2 {
  color: #080b0d;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
}

.cookie-consent-copy p {
  margin-top: 12px;
  color: #080b0d;
  font-size: 15px;
  line-height: 1.45;
}

.cookie-consent-copy a {
  color: #080b0d;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-close {
  position: absolute;
  top: 20px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #080b0d;
  background: transparent;
  border: 0;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.cookie-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
  padding: 13px 14px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.cookie-option small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}

.cookie-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch {
  position: relative;
  width: 46px;
  height: 26px;
  background: #c8d4e0;
  border-radius: var(--radius-pill);
  transition: background 0.18s ease;
}

.cookie-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(8, 43, 95, 0.2);
  transition: transform 0.18s ease;
}

.cookie-option input:checked + .cookie-switch {
  background: #082b5f;
}

.cookie-option input:checked + .cookie-switch::after {
  transform: translateX(20px);
}

.cookie-option input:focus-visible + .cookie-switch {
  outline: 3px solid rgba(23, 111, 196, 0.3);
  outline-offset: 3px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-actions .button,
.cookie-actions .button-secondary {
  min-height: 40px;
  padding: 0 17px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(8, 11, 13, 0.42);
  color: #080b0d;
  background: #ffffff;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
}

.cookie-actions .button {
  min-width: 116px;
  border-color: #242424;
  color: #ffffff;
  background: #242424;
  font-weight: 700;
}

.cookie-customize-button {
  gap: 8px;
}

.cookie-customize-button span {
  font-size: 18px;
  line-height: 1;
}

.cookie-reopen {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  min-height: 40px;
  padding: 0 16px;
  color: var(--white);
  background: #082b5f;
  border: 0;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 34px rgba(8, 43, 95, 0.22);
  cursor: pointer;
}

.cookie-reopen:focus-visible,
.cookie-actions button:focus-visible,
.cookie-close:focus-visible {
  outline: 3px solid rgba(23, 111, 196, 0.34);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .cookie-consent {
    inset: auto 12px 12px;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .cookie-consent-copy {
    padding-right: 48px;
  }

  .cookie-consent-copy h2 {
    font-size: 24px;
  }

  .cookie-consent-copy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .cookie-close {
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    font-size: 36px;
  }

  .cookie-settings {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cookie-actions {
    justify-content: stretch;
    gap: 10px;
  }

  .cookie-actions .button,
  .cookie-actions .button-secondary {
    flex: 1 1 150px;
    min-height: 46px;
    font-size: 16px;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }

  .site-header.header-expanded .nav-wrap {
    width: 100%;
  }

  .site-header.header-expanded .brand,
  .site-header.header-expanded .nav-panel,
  .site-header.header-expanded .nav-actions {
    position: static;
    transform: none;
  }

  .nav-panel {
    display: none;
    width: 100%;
  }

  .nav-panel.open {
    display: block;
  }

  .nav-links {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
  }

  .nav-actions {
    width: 100%;
    align-items: stretch;
  }

  .nav-actions .locale-settings-button {
    color: var(--text);
  }

  .locale-settings-button,
  .currency-switcher {
    flex: 1 1 150px;
    justify-content: center;
  }

  .currency-switcher button {
    flex: 1;
  }

  .nav-cta {
    flex: 1 1 150px;
    width: 100%;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .apartment-grid,
  .reason-grid,
  .split,
  .feature-list,
  .stat-list,
  .form-grid,
  .detail-header,
  .detail-layout,
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-showcase {
    padding: 92px 0;
  }

  .contact-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-hero-section {
    padding: 328px 0 84px;
  }

  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-modern-form {
    margin-top: -16px;
  }

  .contact-quick-list {
    margin-top: 44px;
  }

  .contact-info-card {
    min-height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .container {
    padding: 0 24px;
  }

  .footer-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-links {
    margin-top: 20px;
    padding-top: 20px;
  }

  .amenities-showcase {
    padding: 92px 0;
  }

  .location-section {
    padding-top: 88px;
  }

  .gallery-section {
    padding-top: 88px;
  }

  .gallery-heading {
    margin-bottom: 22px;
  }

  .gallery-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .journal-section,
  .reviews-section,
  .faq-section {
    padding-top: 88px;
  }

  .location-shell {
    padding: 16px;
    border-radius: 30px;
  }

  .location-address {
    min-height: auto;
    padding: 20px;
    flex-wrap: wrap;
    font-size: 17px;
  }

  .location-map iframe {
    height: 360px;
  }

  .location-card {
    min-height: auto;
    padding: 24px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gallery-mosaic-side {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-shot {
    border-radius: 22px;
  }

  .apartments-heading {
    margin-bottom: 34px;
  }

  .apartments-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .apartment-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .apartment-card-featured .apartment-media {
    aspect-ratio: 4 / 3.15;
    height: auto;
  }

  .apartment-body {
    padding-top: 16px;
  }

  .apartment-body h3 {
    font-size: 24px;
  }

  .journal-grid,
  .reviews-layout,
  .blog-topic-row,
  .blog-card-grid,
  .blog-read-more-grid,
  .blog-columns-layout,
  .blog-feature-card,
  .blog-section-head,
  .blog-cta-shell,
  .apartment-catalog-grid,
  .about-mission-card,
  .about-stats-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-valamar-hero {
    width: 100%;
    min-height: 620px;
  }

  .about-valamar-content {
    width: min(100% - 48px, 900px);
    padding-top: 84px;
  }

  .about-valamar-row,
  .about-valamar-row-flipped,
  .about-vision-row,
  .about-core-grid,
  .about-team-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-valamar-row,
  .about-valamar-row-flipped {
    gap: 36px;
    margin-bottom: 72px;
  }

  .about-valamar-row-flipped .about-valamar-copy {
    order: -1;
  }

  .about-vision-row {
    gap: 14px;
  }

  .about-history-section {
    margin-bottom: 56px;
    padding: 50px 28px 56px;
  }

  .about-history-heading {
    margin-bottom: 44px;
  }

  .about-history-track {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 14px;
  }

  .about-history-arrow {
    width: 52px;
    height: 52px;
    margin-top: -13px;
    font-size: 34px;
  }

  .about-history-dot {
    width: 25px;
    height: 25px;
  }

  .about-history-line article.is-active .about-history-dot::after {
    inset: 5px;
  }

  .about-history-line time {
    font-size: 12px;
  }

  .about-history-detail {
    margin-top: 38px;
  }

  .about-core-grid {
    gap: 28px;
  }

  .apartment-tile {
    min-height: 420px;
  }

  .apartment-tile-featured {
    grid-column: auto;
    aspect-ratio: 1.04 / 1;
  }

  .apartment-tile-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .about-hero {
    padding-top: 0;
  }

  .about-hero-frame {
    min-height: 520px;
    width: min(calc(100% - 24px), 1960px);
    border-radius: 24px;
  }

  .about-hero-shell h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .about-hero-shell {
    padding: 120px 24px 24px;
  }

  .about-mission-copy,
  .about-mission-media {
    min-height: 260px;
  }

  .about-stat-card {
    min-height: 150px;
  }

  .about-values-list {
    padding: 8px;
  }

  .about-value-item {
    grid-template-columns: 1fr;
  }

  .about-value-index {
    width: 48px;
  }

  .blog-hero-section {
    padding-top: 120px;
    padding-bottom: 24px;
  }

  .blog-intro {
    margin-bottom: 28px;
  }

  .blog-intro h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .blog-hero-shell {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 30px;
  }

  .blog-hero-copy {
    padding: 8px 4px 0;
  }

  .blog-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(46px, 15vw, 72px);
  }

  .blog-hero-note,
  .blog-topic-card,
  .blog-list-item,
  .blog-sidebar-card,
  .blog-cta-shell,
  .blog-feature-card {
    padding: 22px;
  }

  .blog-feature-image,
  .blog-hero-image {
    min-height: 260px;
  }

  .blog-feature-card-wide {
    margin-bottom: 22px;
  }

  .blog-feature-card-compact {
    max-width: 100%;
    padding: 18px;
  }

  .blog-feature-card-compact .blog-feature-image {
    height: 260px;
    min-height: 0;
  }

  .blog-feature-copy {
    padding: 0;
  }

  .blog-feature-copy h3,
  .blog-article-body h3,
  .blog-list-copy h3,
  .blog-sidebar-card h3,
  .blog-topic-card h3 {
    font-size: 24px;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
  }

  .blog-list-tag {
    width: fit-content;
  }

  .blog-cta-button {
    width: 100%;
  }

  .blog-post {
    padding-top: 104px;
  }

  .blog-post-hero {
    width: min(calc(100% - 24px), 1360px);
    min-height: 320px;
    aspect-ratio: 1.05 / 1;
    border-radius: 22px;
  }

  .blog-post-shell {
    width: min(calc(100% - 40px), 760px);
    gap: 18px;
    margin-top: 44px;
  }

  .blog-post-shell h1 {
    max-width: 100%;
    font-size: 42px;
  }

  .blog-post-figure {
    margin-top: 20px;
    aspect-ratio: 1.25 / 1;
  }

  .blog-read-more-section {
    padding: 82px 0 88px;
  }

  .blog-read-more-inner h2 {
    margin-bottom: 26px;
    text-align: left;
  }

  .reviews-score-card {
    padding: 28px 24px;
  }

  .reviews-score-top strong {
    font-size: 44px;
  }

  .reviews-bar-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-item summary {
    min-height: 96px;
    padding: 0 22px 0 74px;
    font-size: 20px;
  }

  .faq-item summary::before {
    left: 26px;
    font-size: 46px;
  }

  .faq-item .faq-content {
    padding: 0 22px 24px 74px;
    font-size: 17px;
  }

  .amenities-pill-grid {
    max-width: 100%;
    gap: 14px;
    margin-top: 34px;
  }

  .amenity-pill {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }

  .amenities-showcase-cta {
    margin-top: 38px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-modern-form button {
    min-height: 62px;
    font-size: 19px;
  }

  .hero {
    min-height: auto;
    padding: 0 0 40px;
  }

  .hero-media,
  .hero-frame,
  .detail-gallery-grid .primary {
    min-height: 420px;
  }

  .hero-copy {
    gap: 0;
    padding-top: 212px;
  }

  .about-valamar-hero-copy {
    padding-top: 212px;
  }

  .hero-copy .lead {
    font-size: 18px;
  }

  .apartment-tile {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .apartment-tile-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .season-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    position: relative;
    margin-top: 18px;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(23, 111, 196, 0.26);
  }

  .season-toggle button {
    min-height: 48px;
    color: var(--text-muted);
  }

  .season-toggle button.is-active {
    background: rgba(23, 111, 196, 0.12);
    color: var(--blue);
  }

  .summary-season-toggle {
    margin: -4px 0 2px;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  }

  .summary-season-toggle button {
    color: rgba(255, 255, 255, 0.72);
  }

  .summary-season-toggle button.is-active {
    background: var(--white);
    color: var(--text);
  }

  .apartments-list-section {
    padding-top: calc(var(--mobile-header-height, 104px) + 72px);
  }

  .apartment-tile-button {
    justify-self: end;
    min-width: 112px;
    min-height: 54px;
    font-size: 20px;
  }

  .about-valamar-hero {
    width: 100%;
    min-height: 520px;
  }

  .about-back-button {
    display: none;
  }

  .about-valamar-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .about-valamar-copy h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .about-valamar-copy p {
    font-size: 17px;
  }

  .about-valamar-image {
    height: clamp(320px, 110vw, 480px);
    min-height: 0;
  }

  .about-vision-panel,
  .about-history-section,
  .about-core-panel {
    padding: 28px 24px;
  }

  .about-team-feature {
    gap: 36px;
  }

  .about-team-feature-heading p {
    font-size: 15px;
  }

  .about-team-person-card {
    min-height: 0;
  }

  .about-team-person-copy {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  .about-history-heading h2 {
    font-size: 32px;
  }

  .about-history-heading p {
    font-size: 15px;
  }

  .about-history-track {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }

  .about-history-arrow {
    width: 42px;
    height: 42px;
    margin-top: -8px;
    font-size: 28px;
  }

  .about-history-line time {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .about-history-detail h3 {
    font-size: 34px;
  }

  .about-history-detail p {
    font-size: 16px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  h2 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.14;
    letter-spacing: 0;
  }

  h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-copy h1,
  .apartments-heading h2,
  .contact-hero-copy h1,
  .blog-intro h1,
  .blog-hero-copy h1,
  .about-hero-shell h1,
  .about-valamar-hero h1,
  .about-valamar-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .gallery-heading h2,
  .blog-feature-copy h2,
  .blog-section-head h2,
  .about-history-heading h2,
  .about-history-detail h3 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.14;
  }

  .apartment-body h3,
  .apartment-tile-content h3,
  .reason-card h3,
  .location-card-head h3,
  .journal-card h3,
  .blog-feature-copy h3,
  .blog-article-body h3,
  .blog-list-copy h3,
  .blog-sidebar-card h3,
  .blog-topic-card h3,
  .about-value-copy h3,
  .about-member-copy h3 {
    font-size: 22px;
    line-height: 1.22;
  }

  .hero-copy .lead,
  .detail-summary,
  .contact-hero-copy p,
  .blog-intro .lead,
  .blog-hero-copy .lead,
  .about-hero-shell .lead,
  .about-valamar-copy p,
  .about-history-detail p,
  .apartment-body p,
  .reason-card p,
  .location-card p,
  .journal-card p,
  .blog-feature-copy p,
  .blog-article-body p,
  .blog-list-copy p,
  .blog-sidebar-card p,
  .blog-topic-card p,
  .contact-info-card p {
    font-size: 16px;
    line-height: 1.6;
  }
}

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

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Final unified typography layer. */
:root {
  --type-xs: 12px;
  --type-sm: 14px;
  --type-base: 16px;
  --type-md: 18px;
  --type-lg: 22px;
  --type-xl: clamp(28px, 3vw, 40px);
  --type-2xl: clamp(36px, 5vw, 56px);
  --type-hero: clamp(42px, 6vw, 72px);
}

body {
  font-size: var(--type-base);
  line-height: 1.65;
}

h1 {
  font-size: var(--type-hero);
  line-height: 1.08;
}

h2 {
  font-size: var(--type-xl);
  line-height: 1.14;
}

h3,
h4 {
  font-size: var(--type-lg);
  line-height: 1.24;
}

p,
li,
.lead,
.narrow-copy,
.detail-summary,
.footer-note,
.faq-content,
.blog-feature-copy p,
.blog-article-body p,
.blog-list-copy p,
.blog-sidebar-card p,
.blog-topic-card p,
.about-valamar-copy p,
.about-history-detail p,
.about-vision-row p,
.about-core-grid p,
.apartment-body p,
.apartment-tile-content p,
.reason-card p,
.location-card p,
.contact-info-card p,
.journal-card p,
.review-author p,
.about-mission-copy p,
.about-values-heading p,
.about-value-copy p,
.about-member-copy p,
.about-stat-card p {
  font-size: var(--type-base);
  line-height: 1.65;
}

.hero-copy h1,
.contact-hero-copy h1,
.blog-intro h1,
.blog-hero-copy h1,
.about-hero-shell h1,
.about-valamar-hero h1 {
  font-size: var(--type-hero);
  line-height: 1.08;
}

.apartments-heading h2,
.section-heading h2,
.reason-heading h2,
.amenities-showcase-heading h2,
.location-heading h2,
.gallery-heading h2,
.contact-showcase-heading h2,
.journal-heading h2,
.reviews-heading h2,
.faq-heading h2,
.blog-feature-copy h2,
.blog-cta-shell h2,
.about-valamar-copy h2,
.about-history-heading h2,
.about-history-detail h3 {
  font-size: var(--type-xl);
  line-height: 1.14;
}

.apartment-body h3,
.apartment-tile-content h3,
.reason-card h3,
.location-card-head h3,
.contact-info-card h3,
.journal-card h3,
.blog-feature-copy h3,
.blog-article-body h3,
.blog-list-copy h3,
.blog-sidebar-card h3,
.blog-topic-card h3,
.about-value-copy h3,
.about-member-copy h3,
.about-vision-row h3,
.about-core-panel h3 {
  font-size: var(--type-lg);
  line-height: 1.24;
}

.hero-copy .lead,
.contact-hero-copy p,
.blog-intro .lead,
.blog-hero-copy .lead,
.about-hero-shell .lead {
  font-size: var(--type-md);
  line-height: 1.6;
}

.button,
.button-secondary,
.nav-cta,
.apartment-tile-button,
.contact-showcase-button,
.amenities-cta,
.blog-cta-button,
.location-card-link,
.contact-modern-form button {
  font-size: var(--type-base);
  line-height: 1.2;
}

.nav-wrap .locale-settings-button,
.nav-wrap .locale-settings-button:hover,
.nav-wrap .locale-settings-button:focus-visible {
  background: transparent;
  color: var(--text-muted);
  box-shadow: none;
  transform: none;
}

.brand,
.location-address,
.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea,
.review-author strong {
  font-size: var(--type-base);
}

.brand-name {
  color: var(--text);
}

.brand-wave {
  color: var(--blue);
}

.nav-links a,
.apartment-badge,
.apartment-place,
.apartment-meta,
.blog-date,
.blog-list-tag,
.meta-pill,
.pill,
.about-stat-card p,
.about-core-grid strong,
.about-history-line time {
  font-size: var(--type-sm);
  line-height: 1.35;
}

.eyebrow,
.footer-title,
.amenity-icon,
.location-mark,
.location-card-icon {
  font-size: var(--type-xs);
  line-height: 1.2;
}

.amenity-pill span:last-child,
.review-quote-block blockquote,
.faq-item summary {
  font-size: var(--type-md);
  line-height: 1.45;
}

.reviews-star,
.reviews-score-top strong,
.review-stars,
.faq-item summary::before,
.about-history-arrow {
  font-size: var(--type-xl);
  line-height: 1;
}

.about-stat-card strong {
  font-size: var(--type-2xl);
  line-height: 1;
}

@media (max-width: 980px) {
  :root {
    --type-base: 16px;
    --type-md: 17px;
    --type-lg: 21px;
    --type-xl: clamp(26px, 7vw, 36px);
    --type-2xl: clamp(32px, 9vw, 46px);
    --type-hero: clamp(34px, 10vw, 50px);
  }

  body,
  p,
  li,
  .lead,
  .narrow-copy,
  .detail-summary,
  .footer-note,
  .faq-content {
    font-size: var(--type-base);
    line-height: 1.6;
  }

  h1,
  .hero-copy h1,
  .contact-hero-copy h1,
  .blog-intro h1,
  .blog-hero-copy h1,
  .about-hero-shell h1,
  .about-valamar-hero h1 {
    font-size: var(--type-hero);
    line-height: 1.1;
  }

  h2,
  .apartments-heading h2,
  .section-heading h2,
  .reason-heading h2,
  .amenities-showcase-heading h2,
  .location-heading h2,
  .gallery-heading h2,
  .contact-showcase-heading h2,
  .journal-heading h2,
  .reviews-heading h2,
  .faq-heading h2,
  .blog-feature-copy h2,
  .blog-cta-shell h2,
  .about-valamar-copy h2,
  .about-history-heading h2,
  .about-history-detail h3 {
    font-size: var(--type-xl);
    line-height: 1.15;
  }
}

/* Unified site typography using a fast local system font. */
:root {
  --type-base: 18px;
  --type-md: 22px;
  --type-lg: 24px;
  --type-xl: clamp(34px, 3.2vw, 42px);
  --type-2xl: clamp(38px, 4vw, 48px);
  --type-hero: clamp(40px, 5vw, 56px);
}

body {
  font-family: var(--font-body);
  font-size: var(--type-base);
}

h1,
h2,
h3,
h4,
.hero-copy h1,
.contact-hero-copy h1,
.blog-intro h1,
.blog-hero-copy h1,
.about-hero-shell h1,
.about-valamar-hero h1,
.apartments-heading h2,
.section-heading h2,
.reason-heading h2,
.amenities-showcase-heading h2,
.location-heading h2,
.gallery-heading h2,
.contact-showcase-heading h2,
.journal-heading h2,
.reviews-heading h2,
.faq-heading h2,
.blog-feature-copy h2,
.blog-cta-shell h2,
.about-valamar-copy h2,
.about-history-heading h2,
.about-history-detail h3 {
  font-family: var(--font-legal-heading);
  line-height: 1.14;
}

h1,
.hero-copy h1,
.contact-hero-copy h1,
.blog-intro h1,
.blog-hero-copy h1,
.about-hero-shell h1,
.about-valamar-hero h1 {
  font-size: var(--type-hero);
}

h2,
.apartments-heading h2,
.section-heading h2,
.reason-heading h2,
.amenities-showcase-heading h2,
.location-heading h2,
.gallery-heading h2,
.contact-showcase-heading h2,
.journal-heading h2,
.reviews-heading h2,
.faq-heading h2,
.blog-feature-copy h2,
.blog-cta-shell h2,
.about-valamar-copy h2,
.about-history-heading h2,
.about-history-detail h3 {
  font-size: var(--type-xl);
}

h3,
h4 {
  font-size: var(--type-lg);
}

.apartment-body h3,
.apartment-tile-content h3,
.reason-card h3,
.location-card-head h3,
.contact-info-card h3,
.journal-card h3,
.blog-feature-copy h3,
.blog-article-body h3,
.blog-list-copy h3,
.blog-sidebar-card h3,
.blog-topic-card h3,
.about-value-copy h3,
.about-member-copy h3,
.about-vision-row h3,
.about-core-panel h3,
.about-core-grid h4 {
  font-family: var(--font-legal-heading);
  font-size: var(--type-lg);
}

p,
li,
.lead,
.narrow-copy,
.detail-summary,
.footer-note,
.faq-content,
.blog-feature-copy p,
.blog-article-body p,
.blog-list-copy p,
.blog-sidebar-card p,
.blog-topic-card p,
.about-valamar-copy p,
.about-history-detail p,
.about-vision-row p,
.about-core-grid p,
.apartment-body p,
.apartment-tile-content p,
.reason-card p,
.location-card p,
.contact-info-card p,
.journal-card p,
.review-author p,
.about-mission-copy p,
.about-values-heading p,
.about-value-copy p,
.about-member-copy p,
.about-stat-card p,
.amenity-pill span:last-child,
.review-quote-block blockquote,
.faq-item summary {
  font-family: var(--font-body);
  font-size: var(--type-base);
  line-height: 1.55;
}

.hero-copy .lead,
.contact-hero-copy p,
.blog-intro .lead,
.blog-hero-copy .lead,
.about-hero-shell .lead,
.about-valamar-hero p,
.apartments-heading p,
.journal-heading p,
.gallery-heading p {
  font-size: var(--type-md);
  line-height: 1.5;
}

.button,
.button-secondary,
.nav-cta,
.apartment-tile-button,
.contact-showcase-button,
.amenities-cta,
.blog-cta-button,
.location-card-link,
.contact-modern-form button,
.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
  font-family: var(--font-body);
  font-size: var(--type-base);
}

.brand {
  font-family: var(--font-body);
  font-size: 22px;
}

.nav-links a,
.nav-wrap .locale-settings-button,
.eyebrow,
.footer-title,
.pill,
.meta-pill {
  font-family: var(--font-body);
}

/* Blog pages have older high-specificity rules, so keep their headings aligned here. */
.blog-intro h1,
.blog-hero-copy h1,
.blog-post-shell h1,
.blog-hero-note h2,
.blog-section-head h2,
.blog-feature-copy h2,
.blog-feature-card-compact .blog-feature-copy h2,
.blog-cta-shell h2,
.blog-read-more-inner h2,
.blog-post-section h2,
.blog-post-shell > h2,
.blog-feature-copy h3,
.blog-article-body h3,
.blog-list-copy h3,
.blog-sidebar-card h3,
.blog-topic-card h3,
.blog-read-more-card strong {
  font-family: var(--font-legal-heading);
}

.blog-intro h1,
.blog-hero-copy h1,
.blog-post-shell h1 {
  font-size: 32px;
  line-height: 1.18;
}

.blog-hero-note h2,
.blog-section-head h2,
.blog-feature-copy h2,
.blog-feature-card-compact .blog-feature-copy h2,
.blog-cta-shell h2,
.blog-read-more-inner h2,
.blog-post-section h2,
.blog-post-shell > h2 {
  font-size: 24px;
  line-height: 1.24;
}

.blog-feature-copy h3,
.blog-article-body h3,
.blog-list-copy h3,
.blog-sidebar-card h3,
.blog-topic-card h3,
.blog-read-more-card strong {
  font-size: 24px;
  line-height: 1.22;
}

.blog-post-section h3 {
  font-size: 20px;
  line-height: 1.28;
}

/* Legal pages need their own contrast layer because shared section styles can be dark-theme. */
.legal-page,
.legal-page .page-shell,
.legal-page .mini-hero,
.legal-page .legal-layout,
.legal-page .legal-document,
.legal-page .legal-section,
.legal-page .legal-content,
.legal-page .legal-content p,
.legal-page .legal-content li,
.legal-page .legal-table,
.legal-page .legal-table td {
  color: #26313d;
}

.legal-page .mini-hero h1,
.legal-page .legal-heading h2,
.legal-page .legal-content h3,
.legal-page .legal-table th,
.legal-page .legal-list li::before,
.legal-page .legal-bullets li::before {
  color: #062b5f;
}

.legal-page .mini-hero p,
.legal-page .legal-heading p {
  color: #5e6875;
}

.legal-page .legal-nav,
.legal-page .legal-nav a,
.legal-page .legal-nav span {
  color: #123b63;
}

.legal-page .legal-number {
  color: var(--white);
}

.legal-page .reveal-on-scroll {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --type-base: 17px;
    --type-md: 19px;
    --type-lg: 22px;
    --type-xl: clamp(30px, 8vw, 36px);
    --type-2xl: clamp(34px, 9vw, 42px);
    --type-hero: clamp(36px, 10vw, 46px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-media,
  .hero-frame {
    min-height: max(640px, 100svh);
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 220px 20px 52px;
  }

  .about-valamar-hero-copy {
    justify-content: flex-end;
    padding: 220px 24px 52px;
  }

  .hero-copy h1,
  .about-valamar-hero h1 {
    max-width: 12ch;
    font-size: clamp(34px, 9vw, 46px);
  }

  .hero-copy .lead,
  .about-valamar-hero p {
    max-width: 34rem;
    font-size: clamp(16px, 4.2vw, 19px);
    line-height: 1.42;
  }

  .hero-copy .button {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .hero-media,
  .hero-frame,
  .about-valamar-hero {
    min-height: max(660px, 100svh);
  }

  .hero-copy {
    padding: 230px 18px 44px;
  }

  .about-valamar-hero-copy {
    padding: 230px 20px 44px;
  }

  .hero-copy h1,
  .about-valamar-hero h1 {
    max-width: 11ch;
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .hero-copy .lead,
  .about-valamar-hero p {
    font-size: clamp(15px, 4.2vw, 18px);
  }
}

@media (max-width: 980px) {
  body.nav-menu-open {
    overflow: hidden;
  }

  .site-header,
  .site-header.header-expanded {
    padding: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .site-header .container {
    padding: 0;
  }

  .nav-wrap,
  .site-header.header-expanded .nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 104px;
    padding: 0 24px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
  }

  .brand,
  .site-header.header-expanded .brand {
    position: static;
    gap: 12px;
    font-size: 30px;
    font-weight: 700;
    transform: none;
  }

  .brand img,
  .site-header.header-expanded .brand img {
    width: 120px;
    height: 40px;
  }

  .mobile-toggle {
    position: relative;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    color: var(--text);
    cursor: pointer;
  }

  .mobile-toggle span {
    grid-area: 1 / 1;
    width: 22px;
    height: 2px;
    margin: 0;
    background: currentColor;
    transform-origin: center;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .mobile-toggle span:nth-child(1) {
    transform: translateY(-4px);
  }

  .mobile-toggle span:nth-child(2) {
    display: none;
  }

  .mobile-toggle span:nth-child(3) {
    transform: translateY(4px);
  }

  .mobile-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .mobile-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav-panel,
  .site-header.header-expanded .nav-panel,
  .nav-actions,
  .site-header.header-expanded .nav-actions {
    position: static;
    display: none;
    transform: none;
  }

  .nav-wrap.is-open,
  .site-header.header-expanded .nav-wrap.is-open {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100svh;
    padding: 34px 22px;
    background: #fff;
  }

  .nav-wrap.is-open .brand {
    align-self: flex-start;
  }

  .nav-wrap.is-open .mobile-toggle {
    position: absolute;
    top: 34px;
    right: 24px;
    color: #717171;
  }

  .nav-wrap.is-open .nav-panel.open {
    display: block;
    width: 100%;
    margin-top: 74px;
  }

  .nav-wrap.is-open .nav-links {
    display: grid;
    gap: 26px;
    justify-items: start;
    margin: 0;
  }

  .nav-wrap.is-open .nav-links a,
  .site-header.header-expanded .nav-wrap.is-open .nav-links a {
    padding: 0;
    background: transparent;
    color: #202124;
    border-radius: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.35;
  }

  .nav-wrap.is-open .nav-links a.active,
  .nav-wrap.is-open .nav-links a:hover {
    background: transparent;
    color: #202124;
  }

  .nav-wrap.is-open .nav-actions {
    display: flex;
    width: 100%;
    margin-top: 60px;
    align-items: flex-start;
  }

  .nav-wrap.is-open .locale-settings-button {
    display: none;
  }

  .nav-wrap.is-open .nav-cta,
  .site-header.header-expanded .nav-wrap.is-open .nav-cta {
    flex: 0 0 auto;
    width: auto;
    min-height: 64px;
    padding: 0 28px;
    background: #1f2022;
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 23px;
    font-weight: 700;
    box-shadow: none;
  }
}

@media (max-width: 420px) {
  .nav-wrap,
  .site-header.header-expanded .nav-wrap {
    min-height: 88px;
    padding: 0 20px;
  }

  .brand,
  .site-header.header-expanded .brand {
    font-size: 24px;
  }

  .brand img,
  .site-header.header-expanded .brand img {
    width: 108px;
    height: 36px;
  }

  .nav-wrap.is-open,
  .site-header.header-expanded .nav-wrap.is-open {
    padding: 28px 22px;
  }

  .nav-wrap.is-open .mobile-toggle {
    top: 28px;
    right: 22px;
  }

  .nav-wrap.is-open .nav-links a,
  .site-header.header-expanded .nav-wrap.is-open .nav-links a {
    font-size: 26px;
  }
}

@media (max-width: 980px) {
  :root {
    --mobile-header-height: 104px;
  }

  .hero-fullbleed {
    padding-top: var(--mobile-header-height);
  }

  .hero-media,
  .hero-frame {
    min-height: max(560px, calc(100svh - var(--mobile-header-height)));
  }

  .about-valamar-hero {
    margin-top: var(--mobile-header-height);
    min-height: max(560px, calc(100svh - var(--mobile-header-height)));
  }

  .hero-media img {
    transform: scale(1.12);
    object-position: center 42%;
  }

  .about-valamar-hero img {
    transform: none;
    object-position: center;
  }

  .hero-copy {
    justify-content: center;
    padding: 72px 20px 52px;
  }

  .about-valamar-hero-copy {
    justify-content: center;
    padding: 72px 24px 52px;
  }

  .mobile-locale-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-left: auto;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
  }

  .mobile-locale-button + .mobile-toggle {
    margin-left: 4px;
  }

  .nav-wrap.is-open .mobile-locale-button {
    display: none;
  }

  .nav-wrap.is-open .locale-settings-button {
    display: inline-flex;
    justify-content: center;
    min-height: 52px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-muted);
  }

  .apartment-spec-list .apartment-price {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  :root {
    --mobile-header-height: 88px;
  }

  .hero-media,
  .hero-frame,
  .about-valamar-hero {
    min-height: max(560px, calc(100svh - var(--mobile-header-height)));
  }

  .hero-copy {
    padding: 56px 18px 40px;
  }

  .about-valamar-hero-copy {
    padding: 56px 20px 40px;
  }
}

.hero-media > img,
.hero-media > video,
.about-valamar-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background-video {
  display: block;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero-background-video.is-ready {
  opacity: 1;
}
+

.sitemap-page .mini-hero {
  text-align: left;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.sitemap-group {
  padding: 28px;
  border: 1px solid rgba(23, 52, 45, 0.14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(23, 52, 45, 0.07);
}

.sitemap-group-wide {
  grid-column: 1 / -1;
}

.sitemap-group h2 {
  margin: 0 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.sitemap-group ul {
  margin: 0;
  padding-left: 20px;
}

.sitemap-group li + li {
  margin-top: 10px;
}

.sitemap-group a {
  color: var(--color-primary, #17342d);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.sitemap-group a:hover,
.sitemap-group a:focus-visible {
  color: var(--color-accent, #a96f44);
}

.sitemap-columns {
  columns: 2;
  column-gap: 48px;
}

.sitemap-columns li {
  break-inside: avoid;
}

@media (max-width: 720px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-group-wide {
    grid-column: auto;
  }

  .sitemap-columns {
    columns: 1;
  }
}

/* Keep blog card media and copy in separate rows on narrow screens. */
@media (max-width: 640px) {
  .blog-feature-card,
  .blog-feature-card-wide,
  .blog-feature-card-compact,
  .blog-article-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    height: auto;
  }

  .blog-feature-image,
  .blog-feature-card-compact .blog-feature-image,
  .blog-article-media {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 22px 22px 0 0;
  }

  .blog-feature-image img,
  .blog-article-media img {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .blog-feature-copy,
  .blog-feature-card-compact .blog-feature-copy,
  .blog-article-body,
  .blog-card-grid .blog-article-body {
    position: static;
    z-index: 1;
    display: grid;
    width: 100%;
    margin: 0;
    padding: 20px;
    background: var(--surface, #fff);
    color: var(--text, #1f2022);
    border-radius: 0 0 22px 22px;
  }

  .blog-feature-card-compact .blog-feature-copy h2,
  .blog-article-body h3 {
    margin: 0;
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.18;
  }

  .blog-feature-copy p,
  .blog-article-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  /* Compact read-more cards: image first, high-contrast title below. */
  .blog-read-more-card {
    display: grid;
    grid-template-rows: auto auto;
    gap: 0;
    overflow: hidden;
    padding: 0;
    background: #fff;
    color: #000;
  }

  .blog-read-more-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    object-fit: cover;
  }

  .blog-read-more-card strong {
    display: block;
    padding: 18px 20px 20px;
    color: #000;
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.22;
  }

  .blog-read-more-card p {
    display: none;
  }
}
