:root {
  --ink: #17212b;
  --muted: #5c6873;
  --navy: #102a43;
  --blue: #0f4c75;
  --blue-2: #146c94;
  --mint: #8fd3c7;
  --sand: #f4f1eb;
  --soft: #f6f8fa;
  --line: #dbe3e9;
  --white: #fff;
  --shadow: 0 18px 45px rgba(16, 42, 67, .12);
  --radius: 20px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid #f5b642;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; scroll-margin-top: calc(var(--header-height) + 18px); }
.section-soft { background: var(--soft); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(219,227,233,.8);
  backdrop-filter: blur(14px);
}
.nav { min-height: var(--header-height); }
.nav-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--navy);
  letter-spacing: -.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--blue);
  border-radius: 11px;
  font-weight: 900;
}
.brand-dot { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  color: #344454;
}
.nav-links a:hover { color: var(--blue); }
.nav-book {
  padding: .75rem 1rem;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(15,76,117,.2);
}
.nav-book:hover { background: var(--blue-2); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  display: grid;
  align-items: center;
    background-image: linear-gradient(rgba(7,27,42,.55), rgba(7,27,42,.65)), linear-gradient(135deg,#0f4c75,#102a43);
  background-size: cover;
  background-position: center 48%;
  color: var(--white);
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,25,41,.88) 0%, rgba(11,38,59,.74) 46%, rgba(11,38,59,.28) 100%),
    linear-gradient(0deg, rgba(6,25,41,.52), transparent 45%);
}
.hero-content { position: relative; z-index: 1; padding-block: 80px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--blue); }
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.45rem);
  line-height: .99;
  letter-spacing: -.055em;
}
.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.button-primary:hover { background: var(--blue-2); }
.hero .button-primary { color: var(--navy); background: var(--white); }
.hero .button-primary:hover { background: #edf6f8; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.08); }
.button-ghost:hover { background: rgba(255,255,255,.16); }
.button-secondary { color: var(--white); background: var(--blue); }
.button-outline { color: var(--blue); background: var(--white); border-color: var(--blue); }
.button-outline:hover { background: #eef7fa; }

.hero-facts {
  display: flex;
  gap: 18px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}
.hero-facts li {
  min-width: 150px;
  padding: 15px 18px;
  background: rgba(8,32,51,.52);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.hero-facts strong { display: block; font-size: 1.5rem; line-height: 1; }
.hero-facts span { display: block; margin-top: 5px; color: rgba(255,255,255,.82); font-size: .86rem; }

.trust-strip { background: var(--navy); color: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-grid div {
  padding: 18px 22px;
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.trust-grid div:last-child { border-right: 0; }
.trust-grid span { margin-right: 7px; color: var(--mint); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}
.media-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card-collage {
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, #fbfaf7 0%, #f1ece3 100%);
  padding: 14px;
  border: 1px solid rgba(163, 132, 77, .28);
  border-radius: 30px;
  box-shadow:
    0 34px 80px rgba(16, 42, 67, .15),
    0 10px 25px rgba(16, 42, 67, .08),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.media-card-collage::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 24px;
  pointer-events: none;
}
.collage-signature {
  position: absolute;
  top: -18px;
  left: 32px;
  z-index: 5;
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  column-gap: 10px;
  min-width: 220px;
  padding: 12px 18px 11px;
  color: #f8f4ec;
  background: rgba(14, 31, 43, .94);
  border: 1px solid rgba(201, 171, 113, .48);
  border-radius: 5px 16px 16px 16px;
  box-shadow: 0 14px 30px rgba(9, 24, 34, .25);
  backdrop-filter: blur(12px);
}
.signature-rule {
  width: 32px;
  height: 1px;
  grid-row: 1 / span 2;
  background: #c9ab71;
}
.collage-signature > span:not(.signature-rule) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: .02em;
}
.collage-signature small {
  color: #c9ab71;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.1;
  text-transform: uppercase;
}
.photo-collage {
  display: grid;
  gap: 10px;
  min-height: 570px;
}
.photo-collage-premium {
  position: relative;
  grid-template-columns: minmax(0, 1.92fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
}
.collage-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8e2d8;
  border: 1px solid rgba(255,255,255,.75);
}
.collage-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  border-radius: 18px 5px 5px 18px;
}
.collage-kitchen {
  grid-column: 2;
  grid-row: 1;
  border-radius: 5px;
}
.collage-bedroom {
  grid-column: 3;
  grid-row: 1;
  border-radius: 5px 18px 5px 5px;
}
.collage-ensuite {
  grid-column: 2;
  grid-row: 2;
  border-radius: 5px;
}
.collage-courtyard {
  grid-column: 3;
  grid-row: 2;
  border-radius: 5px 5px 18px 5px;
}
.photo-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(.96) contrast(1.02);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}
.collage-item:hover img,
.collage-item:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}
.collage-main::after,
.collage-courtyard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.collage-main::after {
  background:
    linear-gradient(180deg, rgba(7, 20, 29, .06) 20%, rgba(7, 20, 29, .74) 100%),
    linear-gradient(90deg, rgba(7, 20, 29, .16), transparent 52%);
}
.collage-courtyard::after {
  background: linear-gradient(180deg, transparent 28%, rgba(7, 20, 29, .68) 100%);
}
.collage-main figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 25px;
  z-index: 2;
  color: #fff;
}
.collage-editorial-label {
  display: grid;
  gap: 5px;
  max-width: 360px;
}
.collage-kicker {
  color: #d8bd87;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.collage-editorial-label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.collage-courtyard figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
}
.collage-view-all {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  padding: 9px 12px;
  color: #132431;
  background: rgba(251, 248, 241, .94);
  border: 1px solid rgba(201, 171, 113, .55);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(9, 24, 34, .18);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.gallery-button-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #132431;
  border-radius: 50%;
  font-size: .86rem;
}
.collage-view-all:hover,
.collage-view-all:focus-visible {
  background: #fff;
  border-color: #b89658;
  transform: translateY(-2px);
}
#stay {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 18%, rgba(201,171,113,.10), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}
#stay .content-block h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
#stay .content-block strong {
  color: var(--navy);
}
.content-block h2,
.section-heading h2,
.booking-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.content-block p { color: var(--muted); font-size: 1.06rem; }
.content-block p:first-of-type { margin-top: 24px; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; }
.text-link { color: var(--blue); font-weight: 800; text-underline-offset: 4px; }
.light-link { color: #d8f0ef; }

.section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-heading p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 1.05rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16,42,67,.05);
}
.feature-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; background: #eaf5f6; border-radius: 13px; font-size: 1.35rem; }
.feature-card h3 { margin: 19px 0 8px; color: var(--navy); font-size: 1.16rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.audience-section { color: var(--white); background: linear-gradient(135deg, #0f4c75, #102a43); }
.light-heading h2 { color: var(--white); }
.light-heading p:last-child { color: rgba(255,255,255,.78); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.audience-grid div {
  padding: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
}
.audience-grid strong, .audience-grid span { display: block; }
.audience-grid strong { font-size: 1.06rem; }
.audience-grid span { margin-top: 8px; color: rgba(255,255,255,.75); font-size: .91rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #dfe7eb;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,20,32,.74)); }
.gallery-item span { position: absolute; z-index: 1; left: 15px; bottom: 12px; color: var(--white); font-size: .88rem; font-weight: 800; }
.gallery-wide { grid-column: span 2; grid-row: span 2; }
.more-gallery { margin-top: 24px; }
.more-gallery summary {
  width: fit-content;
  margin-inline: auto;
  padding: .76rem 1.15rem;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 11px;
  font-weight: 800;
  cursor: pointer;
}
.more-gallery[open] summary { margin-bottom: 24px; }
.gallery-more { grid-auto-rows: 220px; }

.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: stretch; }
.location-list { display: flex; flex-direction: column; gap: 16px; }
.location-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.location-icon { display: grid; place-items: center; width: 46px; height: 46px; background: #eaf5f6; border-radius: 12px; }
.location-list h3 { margin: 0; color: var(--navy); font-size: 1.04rem; }
.location-list p { margin: 4px 0 0; color: var(--muted); font-size: .92rem; }
.location-list > .button { margin-top: 4px; align-self: flex-start; }
.map-card {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-card > img { width: 100%; height: 360px; object-fit: cover; }
.map-card-content { display: flex; flex-direction: column; gap: 13px; align-items: flex-start; padding: 26px; }
.map-card-content p { margin: 0; }
.map-card-content small, .external-panel small, .booking-placeholder small { color: var(--muted); font-size: .78rem; }
.map-frame { width: 100%; min-height: 590px; border: 0; }

.review-themes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-themes article { padding: 28px; text-align: center; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; }
.review-themes span { font-size: 1.5rem; }
.review-themes h3 { margin: 10px 0 5px; color: var(--navy); }
.review-themes p { margin: 0; color: var(--muted); font-size: .92rem; }
.external-panel {
  margin-top: 28px;
  padding: 28px;
  text-align: center;
  background: var(--white);
  border: 1px dashed #a8bbc7;
  border-radius: 16px;
}
.external-panel > p { margin-top: 0; color: var(--muted); }
.external-panel small { display: block; margin-top: 10px; }
#reviewsWidget { margin-top: 24px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 28px); margin: 0; text-align: left; }
.faq-heading p:last-child { margin-left: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-list summary { position: relative; padding: 20px 54px 20px 22px; color: var(--navy); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 14px; font-size: 1.55rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.faq-group { display: grid; gap: 12px; }
.faq-group + .faq-group { margin-top: 28px; }
.faq-category {
  margin: 0 0 2px;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.faq-answer { padding: 0 22px 22px; color: var(--muted); }
.faq-answer p { margin: 0; padding: 0; }
.faq-answer p + p { margin-top: 12px; }
.faq-answer ul { margin: 12px 0 0; padding-left: 1.25rem; }
.faq-answer li + li { margin-top: 7px; }
.faq-answer strong { color: var(--ink); }
.faq-answer a { color: var(--blue); font-weight: 800; }
.faq-book-button { margin-top: 24px; }


.booking-section { color: var(--white); background: var(--navy); }
.booking-section .shell { display: grid; grid-template-columns: .78fr 1.22fr; gap: 52px; align-items: start; }
.booking-intro h2 { color: var(--white); }
.booking-intro > p:last-of-type { color: rgba(255,255,255,.75); }
.booking-contact { display: grid; gap: 10px; margin-top: 30px; }
.booking-contact a { width: fit-content; color: var(--white); font-weight: 800; text-decoration: none; }
.booking-widget { min-height: 330px; padding: 28px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 22px 50px rgba(0,0,0,.25); }
.booking-placeholder { min-height: 274px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; text-align: center; }
.booking-placeholder h3 { margin: 0; color: var(--navy); font-size: 1.45rem; }
.booking-placeholder p { max-width: 480px; margin: 0; color: var(--muted); }
.booking-placeholder .text-link { display: inline-block; }
.booking-placeholder small { max-width: 480px; }
#apartmentIframeAll iframe { width: 100% !important; min-height: 650px; border: 0; }

.footer { padding: 64px 0 24px; color: #dbe8ef; background: #071b2a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr; gap: 46px; }
.footer-brand { color: var(--white); }
.footer-grid p { max-width: 430px; color: #9eb2bf; }
.footer-grid h2 { margin: 0 0 15px; color: var(--white); font-size: 1rem; }
.footer-grid > div:nth-child(n+2) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a:not(.brand) { margin-bottom: 9px; color: #c5d7e1; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #8ea5b3; font-size: .87rem; }
.footer-bottom p { margin: 0; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 28px; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(4,13,20,.92); }
.lightbox-dialog { position: relative; z-index: 1; width: min(1100px, 95vw); display: grid; grid-template-columns: 54px 1fr 54px; align-items: center; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-width: 100%; max-height: 82vh; margin-inline: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox figcaption { margin-top: 10px; color: var(--white); font-weight: 700; }
.lightbox button { border: 0; color: var(--white); background: rgba(255,255,255,.12); cursor: pointer; }
.lightbox-close { position: absolute; top: -54px; right: 0; width: 44px; height: 44px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.lightbox-nav { width: 46px; height: 58px; border-radius: 10px; font-size: 2.4rem; }
.lightbox-prev { justify-self: start; }
.lightbox-next { justify-self: end; }

.mobile-book { display: none; }

.legal-main { padding: calc(var(--header-height) + 70px) 0 80px; background: var(--soft); }
.legal-card { max-width: 850px; padding: clamp(28px, 5vw, 60px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.legal-card h1 { margin-top: 0; color: var(--navy); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.04em; }
.legal-card h2 { margin-top: 34px; color: var(--navy); }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--blue); }

@media (max-width: 1000px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 11px 10px; }
  .nav-book { text-align: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .split, .location-layout, .faq-layout, .booking-section .shell { grid-template-columns: 1fr; }
  .media-card img { min-height: auto; }

  .media-card-collage { padding: 10px; border-radius: 24px; }
  .collage-signature {
    top: -14px;
    left: 20px;
    min-width: 205px;
    padding: 10px 14px;
  }
  .photo-collage-premium {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(310px, auto) repeat(2, minmax(145px, auto));
    min-height: auto;
    gap: 8px;
  }
  .collage-main {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 15px 15px 5px 5px;
  }
  .collage-kitchen { grid-column: 1; grid-row: 2; border-radius: 5px; }
  .collage-bedroom { grid-column: 2; grid-row: 2; border-radius: 5px; }
  .collage-ensuite { grid-column: 1; grid-row: 3; border-radius: 5px 5px 5px 15px; }
  .collage-courtyard { grid-column: 2; grid-row: 3; border-radius: 5px 5px 15px 5px; }
  .collage-main figcaption { left: 20px; right: 20px; bottom: 20px; }
  .collage-editorial-label strong { font-size: 1.55rem; }
  .collage-view-all { font-size: .75rem; padding-inline: 9px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-heading { position: static; text-align: center; }
  .faq-heading p:last-child { margin-left: auto; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
}

@media (max-width: 720px) {
  :root { --header-height: 68px; }
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .nav-inner { width: calc(100% - 24px); }
  .brand { font-size: 1.1rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero { min-height: 720px; background-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(6,25,41,.9), rgba(11,38,59,.68)); }
  .hero-content { padding-block: 72px 88px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 38px; }
  .hero-facts li { min-width: 0; padding: 12px 9px; text-align: center; }
  .hero-facts span { font-size: .72rem; line-height: 1.25; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-grid div:last-child { border-bottom: 0; }
  .feature-grid, .audience-grid, .review-themes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 9px; }
  .gallery-wide { grid-column: span 2; grid-row: span 1; }
  .gallery-more { grid-auto-rows: 180px; }
  .location-list > .button { align-self: stretch; }
  .map-card { min-height: 0; }
  .map-card > img { height: 260px; }
  .map-frame { min-height: 480px; }
  .footer { padding-bottom: 84px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .lightbox { padding: 14px; }
  .lightbox-dialog { width: 100%; grid-template-columns: 40px 1fr 40px; }
  .lightbox-nav { width: 36px; height: 50px; }
  .mobile-book {
    position: fixed;
    z-index: 900;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    color: var(--white);
    background: var(--blue);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 13px;
    box-shadow: 0 14px 34px rgba(8,32,51,.32);
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .mobile-book.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Property video tour */
.video-tour-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(143, 211, 199, .18), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #f5f1e9 100%);
}
.video-tour-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -170px;
  border: 1px solid rgba(164, 129, 72, .18);
  border-radius: 50%;
}
.video-tour-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.video-tour-copy h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.video-tour-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.video-tour-frame {
  padding: 12px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(164, 129, 72, .22);
  border-radius: 26px;
  box-shadow: 0 26px 65px rgba(16, 42, 67, .16);
  backdrop-filter: blur(10px);
}
.video-tour-ratio {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #0d1b26;
}
.video-tour-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 820px) {
  .video-tour-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .video-tour-copy h2 {
    max-width: 12ch;
  }
}
@media (max-width: 560px) {
  .video-tour-frame {
    padding: 7px;
    border-radius: 18px;
  }
  .video-tour-ratio {
    border-radius: 13px;
  }
}


/* Message us contact popup */
.nav-message {
  padding: .68rem .85rem;
  color: var(--blue) !important;
  border: 1px solid #bfd0dc;
  border-radius: 10px;
}
.nav-message:hover { background: #eef7fa; border-color: #9eb8c9; }
.contact-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.contact-modal[hidden] { display: none; }
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 18px;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 29, .78);
  backdrop-filter: blur(7px);
}
.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(4,18,29,.34);
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.contact-modal-close:hover { background: var(--soft); }
.contact-modal-heading { padding-right: 46px; }
.contact-modal-heading .eyebrow { margin-bottom: 10px; }
.contact-modal-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.contact-modal-heading p:not(.eyebrow) { margin: 0 0 24px; color: var(--muted); }
.contact-form { margin: 0; }
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-field { min-width: 0; }
.contact-field-full { grid-column: 1 / -1; }
.contact-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
}
.contact-required { margin-left: 2px; color: #c4362d; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd7df;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-field textarea { min-height: 104px; resize: vertical; }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: 0;
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(20,108,148,.12);
}
.contact-phone-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
}
.contact-phone-prefix {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: var(--navy);
  background: #eef4f7;
  border: 1px solid #cbd7df;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  font-weight: 900;
}
.contact-phone-row input { border-radius: 0 10px 10px 0; }
.contact-form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}
.contact-form-note a { color: var(--blue); font-weight: 800; }
.contact-submit { width: 100%; margin-top: 18px; }
.contact-error {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  color: #9b241d;
  background: #fff2f1;
  border: 1px solid #f4c7c3;
  border-radius: 9px;
  font-size: .88rem;
}
.contact-error.show { display: block; }
.contact-toast {
  position: fixed;
  z-index: 13000;
  top: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(430px, calc(100% - 28px));
  padding: 15px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 18px 50px rgba(4,18,29,.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -18px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.contact-toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.contact-toast-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: #12633b;
  background: #dcf7e8;
  border-radius: 50%;
  font-weight: 900;
}
.contact-toast-message { font-size: .9rem; line-height: 1.4; }
body.contact-modal-open { overflow: hidden; }
@media (max-width: 720px) {
  .contact-modal { padding: 10px; align-items: end; }
  .contact-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 26px 18px 22px;
    border-radius: 20px 20px 14px 14px;
  }
  .contact-form-grid { grid-template-columns: 1fr; gap: 13px; }
  .contact-field-full { grid-column: auto; }
  .contact-modal-heading { padding-right: 38px; }
}



/* Visible contact and Nottingham Guide additions */
.nav-guide { color: var(--navy); }
.nav-guide::after { content: " ↗"; font-size: .8em; }
.guide-section {
  padding: clamp(54px, 8vw, 92px) 0;
  background: linear-gradient(135deg, #eff7fa 0%, #ffffff 48%, #f5f1e8 100%);
}
.guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.guide-copy { max-width: 720px; }
.guide-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.guide-copy p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 1.05rem; }
.guide-button { flex: 0 0 auto; white-space: nowrap; }
.floating-message {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 880;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #fff;
  background: #0f4c75;
  box-shadow: 0 14px 36px rgba(8,32,51,.32);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.floating-message:hover,
.floating-message:focus-visible {
  transform: translateY(-2px);
  background: #0b3c5d;
  box-shadow: 0 18px 42px rgba(8,32,51,.38);
}
.floating-message-icon { font-size: 1.05rem; }
body.contact-modal-open .floating-message { visibility: hidden; }
@media (max-width: 1000px) {
  .nav-guide::after { content: " ↗"; }
}
@media (max-width: 720px) {
  .guide-card { align-items: flex-start; flex-direction: column; gap: 24px; }
  .guide-button { width: 100%; justify-content: center; }
  .floating-message {
    right: 14px;
    bottom: 78px;
    min-height: 48px;
    padding: 0 16px;
    font-size: .92rem;
  }
}




/* =====================================================================
   BLOG ADD-ON STYLES  (AirHotels.UK guide + posts)
   ===================================================================== */
.blog-body { padding-top: var(--header-height); }

/* --- Blog index hero --- */
.blog-index-hero {
  padding: 72px 0 40px;
  background: linear-gradient(135deg, #0f4c75, #102a43);
  color: #eaf3f8;
}
.blog-index-hero .eyebrow { color: #9fd0e6; }
.blog-index-hero h1 { margin: .2rem 0 .6rem; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; letter-spacing: -.02em; }
.blog-index-hero p { max-width: 640px; color: #cfe1ec; font-size: 1.05rem; }

/* --- Blog grid + cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,42,67,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-media { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--soft); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { margin: 0 0 6px; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.blog-card-title { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.3; }
.blog-card-title a { color: var(--navy); text-decoration: none; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { margin: 0 0 16px; color: var(--muted); }
.blog-card-link { margin-top: auto; font-weight: 700; color: var(--blue); text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }
.blog-empty { color: var(--muted); font-size: 1.05rem; }

/* --- Single post --- */
.post-hero { padding: 56px 0 28px; background: var(--soft); border-bottom: 1px solid var(--line); }
.post-hero .eyebrow { margin: 0 0 .4rem; }
.post-hero .eyebrow a { color: var(--blue); text-decoration: none; font-weight: 700; }
.post-hero h1 { margin: 0 0 .5rem; font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.2; color: var(--navy); letter-spacing: -.02em; }
.post-meta { margin: 0; color: var(--muted); font-size: .92rem; }
.post-hero-media { margin: 0; }
.post-hero-media img { width: 100%; max-height: 460px; object-fit: cover; }

.post-body { max-width: 760px; padding: 46px 0 80px; font-size: 1.075rem; color: #23303b; }
.post-body h2 { margin: 2.2rem 0 .8rem; font-size: 1.6rem; color: var(--navy); letter-spacing: -.01em; }
.post-body h3 { margin: 1.8rem 0 .6rem; font-size: 1.25rem; color: var(--navy); }
.post-body p { margin: 0 0 1.2rem; }
.post-body ul, .post-body ol { margin: 0 0 1.3rem; padding-left: 1.4rem; }
.post-body li { margin-bottom: .5rem; }
.post-body a { color: var(--blue); text-underline-offset: 3px; }
.post-body img { border-radius: 12px; margin: 1.5rem 0; }
.post-body blockquote {
  margin: 1.6rem 0; padding: 14px 22px; border-left: 4px solid var(--blue);
  background: var(--soft); border-radius: 0 10px 10px 0; color: var(--navy); font-style: italic;
}
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.post-body th { background: var(--soft); }

/* --- Post call-to-action --- */
.post-cta {
  margin-top: 48px; padding: 34px 34px 38px;
  background: linear-gradient(135deg, #0f4c75, #102a43);
  color: #eaf3f8; border-radius: var(--radius);
}
.post-cta h2 { margin: 0 0 .5rem; color: #fff; font-size: 1.5rem; }
.post-cta p { margin: 0 0 20px; color: #cfe1ec; }
.post-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.post-cta .button-primary { color: var(--navy); background: #fff; }
.post-cta .button-primary:hover { background: #edf6f8; }
.post-cta .button-outline { color: #fff; border-color: rgba(255,255,255,.6); background: transparent; }
.post-cta .button-outline:hover { background: rgba(255,255,255,.12); }

@media (max-width: 640px) {
  .post-cta { padding: 26px 22px 30px; }
  .blog-index-hero { padding: 56px 0 34px; }
}
