:root {
  --bg: #f6f3ee;
  --paper: #ffffff;
  --ink: #1f2528;
  --muted: #5f676b;
  --line: #ddd6cc;
  --brand: #0282c8;
  --brand-dark: #026fa9;
  --brand-soft: #eaf6fd;
  --accent: #c2462f;
  --gold: #b78a45;
  --shadow: 0 18px 50px rgba(31, 37, 40, .16);
  --page-pad: clamp(18px, 3vw, 56px);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: .95rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .98rem;
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a.btn {
  background: var(--brand);
  color: #fff;
}

.nav-links a.btn:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(2, 130, 200, .35);
}

.btn.secondary:hover {
  background: var(--brand-soft);
}

.hero {
  background: #fff;
  color: var(--ink);
}

.subhero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.subhero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 42px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

.subhero h1 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
}

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

.subhero img {
  width: 100%;
  height: clamp(320px, 34vw, 520px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #e4ddd2;
}

.hero-image img {
  width: 100%;
  height: calc(100vh - 116px);
  min-height: 700px;
  max-height: 1080px;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  width: 100%;
  margin: 0 auto;
  padding: 38px var(--page-pad) 50px;
}

.hero-content {
  width: min(1050px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-inner > *,
.section-inner > *,
.split > *,
.grid-3 > *,
.footer-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .88rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.fact {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9f7f3;
}

.fact strong {
  display: block;
  color: var(--brand-dark);
}

.fact span {
  color: var(--muted);
  font-size: .92rem;
}

.booking-strip {
  padding: 24px 0;
  background: var(--brand-dark);
  color: #fff;
}

.booking-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.booking-strip-inner div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.booking-strip-inner strong,
.booking-strip-inner span {
  display: block;
}

.booking-strip-inner strong {
  margin-bottom: 5px;
  color: #fff;
}

.booking-strip-inner span {
  color: rgba(255, 255, 255, .78);
  font-size: .94rem;
}

section {
  padding: 78px 0;
}

.section-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

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

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

.media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ddd;
}

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

.checkin-split {
  align-items: center;
}

.checkin-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  min-height: auto;
  padding: clamp(10px, 1.2vw, 18px);
}

.checkin-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(520px, 68vh);
  object-fit: contain;
  object-position: center;
}

.stack {
  display: grid;
  gap: 16px;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff;
}

.content-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.text-panel h2,
.text-panel h3 {
  margin-bottom: 12px;
}

.text-panel p:last-child,
.text-panel ul:last-child,
.text-panel ol:last-child {
  margin-bottom: 0;
}

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

.link-grid a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.link-grid a:hover {
  border-color: rgba(2, 130, 200, .5);
  background: var(--brand-soft);
}

.legal-frame {
  width: 100%;
  min-height: 900px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

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

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

.comfort {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(31, 37, 40, .08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  width: 100%;
  height: clamp(260px, 19vw, 360px);
  object-fit: cover;
  object-position: center;
  flex: 0 0 clamp(260px, 19vw, 360px);
}

.card-body {
  padding: 20px;
  flex: 1;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.card p,
.checklist li {
  color: var(--muted);
}

.mini-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.mini-list li + li {
  margin-top: 6px;
}

.checklist {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.booking-info {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.booking-info h3 {
  margin-bottom: 10px;
}

.booking {
  background: var(--brand-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 10px 28px rgba(31, 37, 40, .06);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
}

.booking-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  align-self: start;
}

#apartmentIframeAll {
  min-height: 760px;
  max-width: 100%;
  overflow: visible;
}

#apartmentIframeAll iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.map-wrap iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
}

.faq-contact {
  background: #f0e7dc;
  border-top: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31, 37, 40, .06);
}

.contact-action strong,
.contact-action span {
  display: block;
}

.contact-action strong {
  color: var(--brand-dark);
}

.contact-action span {
  color: var(--muted);
  text-align: right;
}

.contact-action.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.contact-action.primary strong,
.contact-action.primary span {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 700;
}

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

.footer {
  background: #172326;
  color: #fff;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer a {
  color: #fff;
}

.footer small,
.footer p {
  color: rgba(255, 255, 255, .75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .topbar-inner,
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px var(--page-pad);
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .facts,
  .booking-strip-inner,
  .grid-3,
  .grid-4,
  .subhero .section-inner,
  .link-grid,
  .split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .card img {
    height: 280px;
    flex-basis: 280px;
  }

  .media img {
    height: 280px;
  }

  .subhero .section-inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .subhero img {
    height: 300px;
  }

  .checkin-media {
    min-height: auto;
  }

  .checkin-media img {
    width: auto;
    max-height: 560px;
    height: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 22px;
  }

  .topbar-inner,
  .section-inner,
  .nav-inner,
  .hero-inner {
    width: 100%;
  }

  .topbar {
    font-size: .82rem;
  }

  .nav-links {
    width: 100%;
    gap: 8px 10px;
    font-size: .82rem;
  }

  .brand img {
    width: 150px;
  }

  h1 {
    font-size: 1.75rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-content,
  .section-head,
  .card,
  .notice,
  .booking-box,
  .stack {
    max-width: calc(100vw - (var(--page-pad) * 2));
  }

  .section-head h2 {
    font-size: 1.62rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero p,
  .section-head p,
  .card p,
  .notice p,
  .contact-action,
  .checklist li {
    font-size: .9rem;
  }

  .contact-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-action span {
    text-align: left;
  }

  .booking-box {
    padding: 8px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  #apartmentIframeAll {
    width: 100%;
    max-width: 100%;
    min-height: 680px;
    overflow: visible;
  }

  #apartmentIframeAll > *,
  #apartmentIframeAll iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-inner {
    padding: 34px var(--page-pad) 30px;
  }

  .hero-image img,
  .card img,
  .media img {
    height: 220px;
    flex-basis: 220px;
  }

  .hero-image img {
    height: 62vh;
    min-height: 320px;
    max-height: 520px;
  }

  .checkin-media img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    flex-basis: auto;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 410px) {
  h1 {
    font-size: 1.48rem;
    line-height: 1.12;
  }

  .section-head h2 {
    font-size: 1.42rem;
  }

  .nav-links {
    font-size: .76rem;
  }

  .topbar-inner,
  .section-inner,
  .nav-inner,
  .hero-inner {
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
  }
}
