@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  color-scheme: light;
  --ink: #07131f;
  --ink-soft: #142535;
  --paper: #f7f3ea;
  --paper-2: #eee8dd;
  --white: #fffdf8;
  --stone: #d8d0c2;
  --gold: #c49a46;
  --gold-dark: #8b6528;
  --text: #07131f;
  --muted: #62666a;
  --line: rgba(7, 19, 31, .16);
  --surface: #fffdf8;
  --header: rgba(247, 243, 234, .94);
  --shadow: 0 24px 70px rgba(7, 19, 31, .09);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --page: min(1760px, calc(100vw - 96px));
  --content: min(1420px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, .61, .36, 1);
}

html[data-theme='dark'] {
  color-scheme: dark;
  --paper: #07131f;
  --paper-2: #0d1d2c;
  --white: #102334;
  --text: #f7f3ea;
  --muted: #a9a69f;
  --line: rgba(247, 243, 234, .16);
  --surface: #0d1d2c;
  --header: rgba(7, 19, 31, .94);
  --shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  --custom-label: #8b6528;
  --custom-main-light: #f0e3c7;
  --custom-main: #c49a46;
  --custom-background: #f7f3ea;
  --custom-text: #07131f;
  --custom-main-dark: #78551d;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--text);
  font: 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p, blockquote { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { font-size: clamp(4.2rem, 7.2vw, 7.6rem); line-height: .84; }
h2 { font-size: clamp(3rem, 5.1vw, 5.8rem); line-height: .92; }
h3 { font-size: clamp(2rem, 2.5vw, 3rem); line-height: 1; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 1000; top: -80px; left: 16px; padding: 10px 16px; background: var(--gold); color: var(--ink); }
.skip-link:focus { top: 12px; }
.kicker { color: var(--gold-dark); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
html[data-theme='dark'] .kicker { color: #d0aa62; }
.text-link, .card-link { display: inline-flex; align-items: center; gap: 12px; color: var(--gold-dark); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link svg, .card-link svg, .primary-button svg, .header-book svg, .mobile-book svg { transition: transform .25s ease; }
.text-link:hover svg, .card-link:hover svg, .primary-button:hover svg, .header-book:hover svg, .mobile-book:hover svg { transform: translateX(4px); }
.primary-button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border: 1px solid var(--gold); background: var(--gold); color: #07131f; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: background .25s ease, transform .25s ease; }
.primary-button:hover { background: #c99b45; transform: translateY(-2px); }
.primary-button.secondary { background: transparent; color: var(--text); }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 84px; padding: 0 48px; border-bottom: 1px solid var(--line); background: var(--header); backdrop-filter: blur(18px); }
.brand { grid-column: 2; width: 190px; }
.brand img { height: 45px; object-fit: contain; filter: none; }
html[data-theme='dark'] .brand img, html[data-theme='dark'] .footer-brand img { filter: brightness(0) invert(1); }
.main-nav { grid-column: 1; grid-row: 1; display: flex; align-items: center; gap: clamp(18px, 2.1vw, 38px); }
.main-nav > a:not(.mobile-book) { position: relative; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.main-nav > a:not(.mobile-book)::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 1px; background: var(--gold); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav > a:hover::after { transform: scaleX(1); }
.header-actions { grid-column: 3; grid-row: 1; display: flex; justify-self: end; align-items: center; gap: 12px; }
.theme-toggle { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.theme-toggle .dark-icon, html[data-theme='dark'] .theme-toggle .light-icon { display: none; }
html[data-theme='dark'] .theme-toggle .dark-icon { display: block; }
.header-book { display: inline-flex; min-height: 48px; align-items: center; gap: 14px; padding: 0 20px; background: var(--gold); color: #07131f; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.menu-toggle, .mobile-book { display: none; }

/* Home hero */
.home-hero { display: grid; width: var(--page); min-height: min(810px, calc(100vh - 84px)); margin: 0 auto; grid-template-columns: minmax(0, 1.6fr) minmax(440px, .9fr); }
.home-hero-photo { position: relative; min-height: 690px; overflow: hidden; }
.home-hero-photo picture, .home-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,19,31,.03), rgba(7,19,31,.28)); content: ''; }
.home-hero-photo > span { position: absolute; z-index: 1; right: 28px; bottom: 24px; color: #fff; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.home-hero-copy { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: clamp(52px, 6vw, 112px); background: var(--surface); }
.home-hero-copy h1 { margin: 28px 0 30px; }
.home-hero-copy h1 { font-size: clamp(4rem, 5vw, 6rem); }
.home-hero-copy h1 em { color: var(--gold); font-weight: inherit; }
.home-hero-copy > p:not(.kicker) { max-width: 470px; margin-bottom: 34px; color: var(--muted); font-size: 1.02rem; }

/* Shared sections */
.booking-section, .collection-section, .standard-section, .reviews-section, .faq-section, .contact-section, .detail-booking, .gallery-section, .apartment-story, .stay-section, .location-section, .related-section { width: var(--content); margin: 0 auto; padding: clamp(82px, 8vw, 140px) 0; }
.section-intro { display: grid; margin-bottom: 52px; grid-template-columns: 1fr 1.4fr; column-gap: 56px; align-items: end; }
.section-intro .kicker { grid-column: 1; align-self: start; }
.section-intro h2 { grid-column: 1; margin-top: 22px; }
.section-intro > p:last-child { grid-column: 2; grid-row: 1 / span 2; max-width: 530px; align-self: end; color: var(--muted); }

/* Booking */
.booking-section { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.65fr); gap: 72px; }
.booking-heading h2 { margin: 22px 0 24px; }
.booking-heading > p:last-child { max-width: 430px; color: var(--muted); }
.booking-shell { min-width: 0; position: relative; }
.booking-section > .booking-shell[data-widget-mode='search'] { align-self: center; }
.booking-section > .booking-shell[data-widget-mode='list'] { grid-column: 1 / -1; margin-top: -30px; }
.booking-form { display: grid; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); grid-template-columns: repeat(3, minmax(0, 1fr)) auto; }
.booking-form label { display: grid; min-width: 0; padding: 15px 18px 13px; border-right: 1px solid var(--line); gap: 5px; }
.booking-form label span { color: var(--muted); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.booking-form input, .booking-form select { width: 100%; min-width: 0; min-height: 30px; padding: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font: 600 1rem/1.2 var(--sans); color-scheme: light; }
.booking-form input:focus-visible, .booking-form select:focus-visible { box-shadow: 0 2px 0 var(--gold); }
.booking-form button { min-width: 170px; min-height: 72px; padding: 0 24px; border: 0; background: var(--gold); color: #07131f; cursor: pointer; font: 600 .74rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.booking-form button:hover { background: var(--gold-strong); }
.booking-form button:disabled { cursor: wait; opacity: .65; }
.booking-feedback { display: flex; min-height: 54px; align-items: center; justify-content: space-between; padding: 14px 2px 0; gap: 20px; }
.booking-feedback p { color: var(--muted); font-size: .86rem; }
.booking-shell[data-booking-state='ready'] .booking-feedback p { color: var(--ink); }
.booking-shell[data-booking-state='error'] .booking-feedback p { color: #8e2f25; }
.booking-continue { display: inline-flex; min-height: 44px; flex: 0 0 auto; align-items: center; color: var(--gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.booking-continue svg { width: 18px; margin-left: 8px; }
.booking-continue[hidden] { display: none; }

/* Collection */
.collection-section { border-top: 1px solid var(--line); }
.apartment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 62px 28px; }
.apartment-card { min-width: 0; }
.card-photo { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-2); }
.card-photo picture, .card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-photo img { transition: transform .7s var(--ease); }
.apartment-card:hover .card-photo img { transform: scale(1.025); }
.card-photo > span { position: absolute; right: 0; bottom: 0; min-width: 56px; padding: 12px; background: var(--paper); color: var(--muted); text-align: center; font-size: .72rem; }
.card-content { padding: 26px 2px 0; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.card-heading p { margin-bottom: 8px; color: var(--gold-dark); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.card-heading strong { flex: 0 0 auto; padding-top: 8px; font-size: 1rem; font-weight: 600; }
.card-address { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--muted); font-size: .86rem; }
.card-facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px; font-size: .8rem; font-weight: 600; text-transform: uppercase; }
.card-description { max-width: 640px; margin: 18px 0 22px; color: var(--muted); font-size: .92rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.related-grid .card-description { display: none; }
.related-grid .card-heading { display: block; }
.related-grid [data-live-price] { display: block; padding-top: 10px; }

/* Standard */
.standard-section { display: grid; grid-template-columns: 1.15fr .85fr; padding-top: 30px; gap: clamp(48px, 7vw, 120px); align-items: center; }
.standard-photo { min-height: 700px; }
.standard-photo picture, .standard-photo img { width: 100%; height: 100%; object-fit: cover; }
.standard-copy h2 { margin: 22px 0 30px; }
.standard-copy > p:not(.kicker) { color: var(--muted); }
.standard-copy ul { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.standard-copy li { padding: 15px 0; border-bottom: 1px solid var(--line); }

/* Reviews, FAQ, contacts */
.reviews-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; border-top: 1px solid var(--line); }
.review-lead h2 { margin: 22px 0 30px; }
.review-stack { border-top: 1px solid var(--line); }
.review-stack blockquote { padding: 30px 0; border-bottom: 1px solid var(--line); }
.review-stack blockquote p { font: 500 clamp(1.6rem, 2.3vw, 2.6rem)/1.14 var(--serif); }
.review-stack footer { margin-top: 18px; color: var(--muted); font-size: .82rem; }
.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; border-top: 1px solid var(--line); }
.faq-section .section-intro { display: block; margin: 0; }
.faq-section .section-intro h2 { margin-top: 22px; }
.faq-section .section-intro > p:last-child { display: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 500; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 700px; padding: 0 64px 28px 0; color: var(--muted); }
.contact-section { display: grid; width: 100%; grid-template-columns: 1.2fr .8fr; padding-top: clamp(60px, 5vw, 90px); padding-bottom: clamp(50px, 4vw, 70px); padding-right: max(48px, calc((100vw - 1420px)/2)); padding-left: max(48px, calc((100vw - 1420px)/2)); background: #07131f; color: #f7f3ea; gap: 80px; }
.contact-section .kicker { color: #d0aa62; }
.contact-section h2 { margin-top: 22px; }
.contact-card { align-self: end; padding: 34px; border: 1px solid rgba(247,243,234,.2); }
.contact-card p { max-width: 460px; color: rgba(247,243,234,.65); }
.phone-link { display: block; margin: 28px 0 18px; font: 500 clamp(2rem, 3.2vw, 3.4rem)/1 var(--serif); }
.contact-card .text-link { color: #d0aa62; }
.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding: 52px 48px 44px;
  background: #07131f;
  color: #f7f3ea;
  border-top: 1px solid rgba(247,243,234,.14);
}
.footer-col { display: flex; flex-direction: column; }
.footer-logo { width: 180px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-tagline { color: rgba(247,243,234,.55); font-size: .82rem; line-height: 1.5; margin-bottom: 20px; }
.footer-copy { color: rgba(247,243,234,.35); font-size: .74rem; margin-top: auto; padding-top: 20px; }
.footer-heading {
  color: rgba(247,243,234,.4);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer nav a, .site-footer nav button {
  color: rgba(247,243,234,.7);
  font-size: .84rem;
  letter-spacing: .01em;
  transition: color .2s ease;
  text-align: left;
}
.site-footer nav a:hover, .site-footer nav button:hover {
  color: #f7f3ea;
}
.site-footer nav button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
}

/* Detail page */
.detail-hero { display: grid; width: var(--page); min-height: min(800px, calc(100vh - 84px)); margin: 0 auto; grid-template-columns: minmax(460px, .76fr) minmax(0, 1.24fr); }
.detail-hero-copy { display: flex; justify-content: center; flex-direction: column; padding: clamp(50px, 6vw, 100px); background: var(--surface); }
.back-link { align-self: flex-start; margin-bottom: 60px; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.detail-hero h1 { margin: 22px 0 18px; color: var(--gold); }
.detail-address { display: flex; align-items: center; gap: 10px; }
.detail-lead { max-width: 580px; margin-top: 26px; color: var(--muted); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 30px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.detail-hero .primary-button { align-self: flex-start; }
.detail-hero-photo { position: relative; overflow: hidden; min-height: 650px; }
.detail-hero-photo picture, .detail-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-photo button { position: absolute; right: 24px; bottom: 24px; padding: 12px 16px; border: 0; background: rgba(247,243,234,.9); color: #07131f; cursor: pointer; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.detail-booking { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.detail-booking-widgets { min-width: 0; }
.detail-booking-widgets > * + * { margin-top: 28px; }
.detail-booking .booking-heading h2 { font-size: clamp(2.8rem, 4.2vw, 5rem); }
.gallery-section { border-top: 1px solid var(--line); }
.gallery-filters { display: flex; overflow-x: auto; margin: -12px 0 28px; padding: 12px 0; gap: 8px; scrollbar-width: none; }
.gallery-filters::-webkit-scrollbar { display: none; }
.gallery-filters button { min-height: 42px; flex: 0 0 auto; padding: 0 16px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.gallery-filters button.is-active { border-color: var(--gold); background: var(--gold); color: #07131f; }
.gallery-grid { display: grid; grid-auto-rows: 260px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.gallery-item { overflow: hidden; padding: 0; border: 0; background: var(--paper-2); cursor: zoom-in; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(9n+6) { grid-column: span 2; }
.gallery-item[hidden] { display: none !important; }
.gallery-item picture, .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item img { transition: transform .55s var(--ease); }
.gallery-item:hover img { transform: scale(1.025); }
.apartment-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; border-top: 1px solid var(--line); }
.apartment-story h2 { margin-top: 22px; }
.story-text { max-width: 750px; color: var(--muted); font-size: 1.06rem; }
.feature-list { display: grid; margin: 42px 0 0; padding: 0; border-top: 1px solid var(--line); grid-template-columns: repeat(2, 1fr); list-style: none; }
.feature-list li { padding: 16px 12px 16px 0; border-bottom: 1px solid var(--line); }
.stay-section { border-top: 1px solid var(--line); }
.stay-columns { display: grid; border-top: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.stay-columns > div { padding: 30px 32px 0 0; }
.stay-columns > div + div { padding-left: 32px; border-left: 1px solid var(--line); }
.stay-columns h3 { margin-bottom: 24px; font-size: 2rem; }
.stay-columns ul { margin: 0; padding: 0; list-style: none; }
.stay-columns li { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.location-section { display: flex; align-items: end; justify-content: space-between; gap: 50px; background: var(--paper-2); padding-right: 42px; padding-left: 42px; }
.location-section h2 { margin: 22px 0; font-size: clamp(2.5rem, 4vw, 4.7rem); }
.location-section p:last-child { max-width: 720px; color: var(--muted); }
.related-section { border-top: 1px solid var(--line); }
.lightbox { width: min(1200px, calc(100vw - 40px)); max-width: none; height: min(850px, calc(100vh - 40px)); max-height: none; padding: 0; border: 0; background: #07131f; color: #fff; }
.lightbox::backdrop { background: rgba(3,10,17,.9); }
.lightbox img { width: 100%; height: calc(100% - 48px); object-fit: contain; }
.lightbox > button { position: absolute; z-index: 1; top: 14px; right: 14px; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.4); background: rgba(7,19,31,.7); color: #fff; cursor: pointer; }
.lightbox > .lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox > .lightbox-prev { right: auto; left: 14px; }
.lightbox > .lightbox-prev svg { transform: rotate(180deg); }
.lightbox > p { height: 48px; padding: 12px 20px; color: rgba(255,255,255,.7); font-size: .78rem; }
.not-found { display: grid; min-height: 100vh; place-content: center; justify-items: start; padding: 40px; }
.not-found h1 { max-width: 780px; margin: 24px 0 40px; }

@media (max-width: 1280px) {
  :root { --page: calc(100vw - 48px); --content: calc(100vw - 72px); }
  .site-header { padding: 0 24px; }
  .main-nav { gap: 18px; }
  .main-nav a:nth-child(3), .main-nav a:nth-child(4) { display: none; }
  .home-hero { grid-template-columns: 1.35fr .85fr; }
  .home-hero-copy { padding: 54px; }
  .detail-hero { grid-template-columns: .8fr 1.2fr; }
  .detail-hero-copy { padding: 50px; }
  .gallery-grid { grid-auto-rows: 230px; }
}

@media (max-width: 900px) {
  :root { --page: 100vw; --content: calc(100vw - 48px); }
  body { font-size: 16px; }
  .site-header { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand { grid-column: 1; width: 165px; justify-self: start; }
  .header-actions { grid-column: 2; padding-right: 56px; }
  .header-book { display: none; }
  .menu-toggle { position: absolute; right: 20px; display: flex; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; border: 0; background: transparent; }
  .menu-toggle span { width: 24px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 72px 0 auto; display: none; align-items: stretch; flex-direction: column; padding: 28px 24px 34px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .main-nav.is-open { display: flex; }
  .main-nav a:nth-child(n) { display: flex !important; min-height: 42px; align-items: center; }
  .mobile-book { justify-content: center; margin-top: 10px; padding: 12px 18px; background: var(--gold); color: #07131f; font-size: .75rem; font-weight: 600; text-transform: uppercase; }
  .home-hero, .detail-hero { display: flex; min-height: auto; flex-direction: column; }
  .home-hero-copy, .detail-hero-copy { order: 1; padding: 62px 24px; }
  .home-hero-photo, .detail-hero-photo { min-height: 58vw; max-height: 620px; order: 2; }
  .detail-hero-photo { min-height: 68vw; }
  .back-link { margin-bottom: 42px; }
  .booking-section, .detail-booking, .reviews-section, .faq-section, .apartment-story { grid-template-columns: 1fr; gap: 44px; }
  .booking-section > .booking-shell[data-widget-mode='list'] { margin-top: 0; }
  .section-intro { display: block; }
  .section-intro h2 { margin: 22px 0; }
  .section-intro > p:last-child { max-width: 620px; }
  .apartment-grid { gap: 52px 18px; }
  .standard-section { grid-template-columns: 1fr; padding-top: 60px; }
  .standard-photo { min-height: 64vw; }
  .standard-copy { padding: 0 24px; }
  .contact-section { grid-template-columns: 1fr; padding-right: 24px; padding-left: 24px; gap: 44px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 40px 24px 36px; gap: 32px 24px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-logo { width: 160px; }
  .footer-heading { margin-bottom: 14px; }
  .site-footer nav { gap: 10px; }
  .booking-form { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-form button { grid-column: 1 / -1; min-height: 58px; }
  .gallery-grid { grid-auto-rows: 240px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item:nth-child(9n+6) { grid-column: auto; }
  .stay-columns { grid-template-columns: 1fr; }
  .stay-columns > div { padding: 26px 0; }
  .stay-columns > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .location-section { align-items: flex-start; flex-direction: column; padding-right: 24px; padding-left: 24px; }
}

@media (max-width: 680px) {
  :root { --content: calc(100vw - 32px); }
  h1 { font-size: clamp(4rem, 19vw, 5.5rem); }
  h2 { font-size: clamp(2.8rem, 14vw, 4rem); }
  .site-header { padding: 0 16px; }
  .brand { width: 154px; }
  .header-actions { padding-right: 48px; }
  .theme-toggle { width: 40px; height: 40px; }
  .menu-toggle { right: 10px; }
  .home-hero-copy, .detail-hero-copy { padding: 50px 18px 54px; }
  .home-hero-photo { min-height: 76vw; }
  .detail-hero-photo { min-height: 96vw; }
  .home-hero-copy h1 { margin-top: 24px; }
  .home-hero-copy h1 { font-size: clamp(3.45rem, 15.2vw, 4.3rem); }
  .booking-section, .collection-section, .standard-section, .reviews-section, .faq-section, .contact-section, .detail-booking, .gallery-section, .apartment-story, .stay-section, .location-section, .related-section { padding-top: 72px; padding-bottom: 72px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form label { border-right: 0; border-bottom: 1px solid var(--line); }
  .booking-form input, .booking-form select { font-size: 16px; }
  .booking-form button { width: 100%; min-width: 0; }
  .booking-feedback { align-items: flex-start; flex-direction: column; }
  .booking-continue { width: 100%; }
  .apartment-grid, .related-grid { grid-template-columns: 1fr; }
  .card-heading { display: block; }
  .card-heading strong { display: block; padding-top: 12px; }
  .card-photo { aspect-ratio: 4 / 3; }
  .standard-photo { min-height: 105vw; }
  .review-stack blockquote p { font-size: 1.75rem; }
  .faq-list summary { min-height: 76px; }
  .contact-card { padding: 26px 20px; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1; }
  .gallery-grid { display: flex; overflow-x: auto; margin-right: -16px; padding-right: 16px; scroll-snap-type: x mandatory; }
  .gallery-item { display: block !important; min-width: 84vw; height: 64vw; scroll-snap-align: start; }
  .gallery-item[hidden] { display: none !important; }
  .location-section { width: 100%; }
  .hero-facts { gap: 10px 16px; }
  .detail-hero .primary-button { align-self: stretch; }
}

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

/* ─── Cookie Banner (floating card) ─── */
.cookie-banner {
  position: fixed;
  z-index: 999;
  bottom: 28px;
  right: 28px;
  width: 480px;
  max-width: calc(100vw - 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(7, 19, 31, .14), 0 4px 16px rgba(7, 19, 31, .06);
  padding: 28px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cookie-banner[hidden] {
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  visibility: hidden;
}
.cookie-card-label {
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
html[data-theme='dark'] .cookie-card-label { color: #d0aa62; }
.cookie-banner p#cookie-desc {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-banner-actions button {
  flex: 1;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.cookie-banner-actions button[data-cookie-choice="all"] {
  background: var(--gold);
  color: #07131f;
  border-color: var(--gold);
}
.cookie-banner-actions button[data-cookie-choice="all"]:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}
.cookie-banner-actions button[data-cookie-choice="essential"]:hover {
  background: var(--gold);
  color: #07131f;
  transform: translateY(-1px);
}
.cookie-banner-actions button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cookie-learn-more {
  display: inline-block;
  color: var(--muted);
  font-size: .78rem;
  text-decoration: underline;
  text-decoration-color: rgba(98, 102, 106, .3);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.cookie-learn-more:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--gold);
}
html[data-theme='dark'] .cookie-learn-more { color: #a9a69f; }
html[data-theme='dark'] .cookie-learn-more:hover { color: #d0aa62; }

/* ─── Footer Legal Links (integrated into footer nav) ─── */

/* ─── Legal Pages ─── */
.legal-page {
  width: var(--content);
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(82px, 8vw, 140px) 0 clamp(60px, 6vw, 100px);
}
.legal-page h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  margin-bottom: 12px;
}
.legal-updated {
  color: var(--muted);
  font-size: .82rem;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin: 48px 0 16px;
}
.legal-page h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  margin: 32px 0 12px;
}
.legal-page p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-page ul, .legal-page ol {
  padding-left: 24px;
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-page li {
  margin-bottom: 10px;
  font-size: .94rem;
  line-height: 1.65;
}
.legal-page a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(196, 154, 70, .3);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s ease;
}
.legal-page a:hover { text-decoration-color: var(--gold); }
html[data-theme='dark'] .legal-page a { color: #d0aa62; }
.legal-todo {
  padding: 16px 20px;
  border: 1px dashed var(--gold);
  background: rgba(196, 154, 70, .06);
  color: var(--text);
  font-size: .86rem;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: .88rem;
}
.legal-table th, .legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.legal-table th {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.legal-table td { color: var(--muted); }
.legal-table code {
  padding: 2px 6px;
  background: var(--paper-2);
  border-radius: 3px;
  font-size: .84rem;
}
button[data-cookie-settings-inline] {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(196, 154, 70, .3);
  text-underline-offset: 3px;
}
button[data-cookie-settings-inline]:hover { text-decoration-color: var(--gold); }

/* ─── Cookie Banner Mobile ─── */
@media (max-width: 900px) {
  .cookie-banner {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: auto;
  }
}
@media (max-width: 680px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 22px 20px;
    border-radius: 16px;
  }
  .cookie-banner p#cookie-desc {
    font-size: .84rem;
    margin-bottom: 18px;
  }
  .cookie-banner-actions {
    flex-direction: column;
  }
  .cookie-banner-actions button {
    width: 100%;
  }
  .cookie-learn-more {
    text-align: center;
  }
}
